Community Tip - Did you get an answer that solved your problem? Please mark it as an Accepted Solution so others with the same problem can find the answer easily. 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.