how can i multiply two matrices?
古いコメントを表示
I have a matrix 'a' with size 3x3 and 'b' with size 3x1.i want to multiply the inverse of 'a' with matrix 'b'.I tried the below code but got an error "Matrix dimensions must agree". please help to solve this
a=[1 0 -3; 2 -2 1; 0 -1 3];
inv_a=inv(a);
b=[0;2;121];
c=inv_a.*b;
2 件のコメント
Beder
2017 年 2 月 23 日
This code does not produce any error on my system. Maybe you have a variable called "inv" which overlays the function "inv"?
Walter Roberson
2017 年 2 月 23 日
Beder,
I suspect you are using R2016b, which introduced automatic vector expansion as if bsxfun() had been used.
採用された回答
その他の回答 (1 件)
Alicia Palmerin-Jimenez
2022 年 3 月 5 日
0 投票
no
カテゴリ
ヘルプ センター および File Exchange で Linear Algebra についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!