Community Tip - Stay updated on what is happening on the PTC Community by subscribing to PTC Community Announcements. X
Good Afternoon Community,
I'm trying to solve three equations with the solve block. The solve block is returning with error message. Could any one tell me what I'm doing wrong.
Regards
You are indexing row 1, columns 1 through 9 for alpha, but alpha is a column vector with only one column. You should have just alpha sub 1, alpha sub 2, etc.
Thanks Werner.
Regards
OLUBUKOLA ADEBOYEJO wrote:
Thanks Werner.
That post was from Richard, I was late. 😉
You mixed up the order of column- and row-index.
For column vectors you furthermore don't need to specify the column (second index)
Seee attached
Thanks to both of you.