Multiplication between 2 matrix
古いコメントを表示
Hi, I need to multiply one matrix, which only number has A = [1 0; 2 3] with a matrix(array) with variables, which are not define yet, but they are numbers, which are not yet defined B = [a b; c d]
I need to get one general solution in order to change a,b,c,d values
Thanks in advance
採用された回答
その他の回答 (1 件)
Jan
2017 年 11 月 6 日
Or perhaps:
C = [a, b; ...
2*a + 3*c, 2*b + 3*d];
カテゴリ
ヘルプ センター および File Exchange で Code Performance についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!