how to superimpose three matrix

1 回表示 (過去 30 日間)
Hana
Hana 2014 年 8 月 8 日
回答済み: Iain 2014 年 8 月 8 日
A = [ nan 2 1; nan nan 4; 8 nan 7] B = [9 nan nan;nan 4 nan;nan nan nan] C = [nan nan nan;3 nan nan; nan 5 nan] result =[ 9 2 1 ;3 4 4;8 5 7)

採用された回答

Azzi Abdelmalek
Azzi Abdelmalek 2014 年 8 月 8 日
out=max(A,B)
out=max(out,C)

その他の回答 (1 件)

Iain
Iain 2014 年 8 月 8 日
One method:
ActualMatrix(:,:,1) = A;
ActualMatrix(:,:,2) = B;
ActualMatrix(:,:,3) = C;
AcutalMatrix(isnan(ActualMatrix)) = 0;
answer = sum(ActualMatrix,3);

カテゴリ

Help Center および File ExchangeNaNs についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by