How can I get the first matrix of this equation?
1 回表示 (過去 30 日間)
古いコメントを表示
I am trying to get F values. How can l do that?
2 件のコメント
Adam Danz
2021 年 11 月 9 日
It looks like it's straightforward multiplication between a 4x4 matrix and 4x1 vector, unless the curley brackets have some other meaning.
Sargondjani
2021 年 11 月 9 日
To multiply two matrices:
F=A*B
To define a matrix:
A = [200 0 -200 0; 0 600 0 -600]
et cetera. (use ; to start new row, use comma or space to separate columns)
回答 (1 件)
Gargi Patil
2021 年 11 月 12 日
Hi,
As mentioned in the comments, 2 matrices can be multipled using the * operator. The following code describes the same:
A = [200 0 -200 0; 0 600 0 -600; -200 0 600 -400; 0 -600 -400 1000];
B = [0; 0; 250/11; 375/11];
F=A*B
F1x = F(1)
F2x = F(2)
%similarly for F3x and F4x
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Additional Math and Discrete についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!