Skip to main content
Best answer by Werner_E

You may use a simple numeric solve block to do the job.

BTW, the way you tried to set up your matrices by matrix multiplication was awfully wrong! [3x3]*[3*1]=[3*1] and not a square matrix. You have to multiply by a diagonal matrix (see attached sheet).

1.png

Or you may define the matrix beforehand but then you must make it a function in all unknown variables:

2.png

2 replies

Werner_E
Werner_E25-Diamond IAnswer
25-Diamond I
January 13, 2015

You may use a simple numeric solve block to do the job.

BTW, the way you tried to set up your matrices by matrix multiplication was awfully wrong! [3x3]*[3*1]=[3*1] and not a square matrix. You have to multiply by a diagonal matrix (see attached sheet).

1.png

Or you may define the matrix beforehand but then you must make it a function in all unknown variables:

2.png

SFares14-AlexandriteAuthor
14-Alexandrite
January 13, 2015

Thank you Werner for the detailed explanation and help!