how can i do this operation?
2 ビュー (過去 30 日間)
古いコメントを表示
Firas Al-Kharabsheh
2016 年 5 月 1 日
コメント済み: Firas Al-Kharabsheh
2016 年 5 月 1 日
if i have
M = [2 1
1 0
1 3
3 0
2 0 ]
AND
X = [ 2 0 0
1 1 1
4 0 0
1 0 0
2 1 0 ]
how can i calculate the F = | M - X | THEN F1 = sum(F)
0 件のコメント
採用された回答
CS Researcher
2016 年 5 月 1 日
As you can see M and X are of different sizes, you cannot perform a subtraction operation on them. Maybe you can do this:
M = [M zeros(size(M,1),1)];
F = abs(M-X);
F1 = sum(F);
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Startup and Shutdown についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!