how should i subtract two matrices

3 ビュー (過去 30 日間)
omar mahallawy
omar mahallawy 2019 年 3 月 14 日
回答済み: Alex Mcaulley 2019 年 3 月 14 日
i need to subtrabt the first row B with the first number A
A=[ 6 12 15]
B=[50 70 80 90
20 50 40 30 % please note that vector B is a result of a for loop
10 60 80 90]
answer [44 64 74 84
8 38 28 18
-5 45 65 75]

採用された回答

Alex Mcaulley
Alex Mcaulley 2019 年 3 月 14 日
A=[ 6 12 15];
B=[50 70 80 90;
20 50 40 30;
10 60 80 90];
C = B-repmat(A',1,4);

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeLoops and Conditional Statements についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by