フィルターのクリア

To group the matrix based on the number on their column (of non-zeros)

2 ビュー (過去 30 日間)
fyza affandi
fyza affandi 2018 年 11 月 28 日
コメント済み: Guillaume 2018 年 11 月 29 日
I have a matrix below;-
Matr =
0 0
0 0
1 0
0 0
2 0
0 1
1 1
0 1
How can I group them based on their number of cloumn? Starts from 1st row to 7th row
I want the result to be....
group1=[3 1 %they are in the 1st row
5 1
7 1]
group2= [6 2
7 2] %they are in the 2nd row

採用された回答

Guillaume
Guillaume 2018 年 11 月 28 日
[row, column] = find(Matr);
groups = splitapply(@(rows, columns) {[rows, columns]}, row, column, column)
  5 件のコメント
fyza affandi
fyza affandi 2018 年 11 月 29 日
I get this answer
groups =
[3x2 double]
[3x2 double]
Guillaume
Guillaume 2018 年 11 月 29 日
celldisp(groups)
To see the content of the cell array, which is exactly what you asked for.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

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

Community Treasure Hunt

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

Start Hunting!

Translated by