Number of non-zero element
2 ビュー (過去 30 日間)
古いコメントを表示
I have n-number of arrays, I want to find the total non-zero element at a location. For example there are three arrays as following:
A = [2 0 0 2;
0 1 1 1;
1 3 0 0;
0 1 0 1];
B = [0 2 1 0;
3 1 1 1;
2 0 0 2;
0 1 0 1];
C = [0 2 3 0;
3 1 2 2;
4 0 2 1;
2 0 0 1]
How can I find the total number of non-zero elements in A, B, C for each location, e.g (1,1): 1, (1,2): 2, (1,3): 2 ? To get array D = [1 2 2 1; 2 3 3 3; ... ].
0 件のコメント
採用された回答
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Array Geometries and Analysis についてさらに検索
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!