How can i take specific values from a matrix and put them into another matrix?

1 回表示 (過去 30 日間)
Samy Ben Thabet
Samy Ben Thabet 2018 年 11 月 29 日
編集済み: Matt J 2018 年 11 月 29 日
I have a 2170x2 matrix: the first column is filled with my values and the second one goes from 1 to 12 over and over again (1 to 12 representing each month of the year).
I need to regroup the values corresponding to each month together ( all the values from the first column that have the same number in the second column) but I can't figure it out.

採用された回答

Matt J
Matt J 2018 年 11 月 29 日
編集済み: Matt J 2018 年 11 月 29 日
Let's say your matrix is A,
Matrices=splitapply(@(z){z},A,A(:,2))

その他の回答 (1 件)

Matt J
Matt J 2018 年 11 月 29 日
編集済み: Matt J 2018 年 11 月 29 日
sortrows(yourMatrix,2)
  1 件のコメント
Samy Ben Thabet
Samy Ben Thabet 2018 年 11 月 29 日
That worked to separate everything but they are all still in one matrix. Is there a way to separate them all into different ones? (all the ones in one matrix, the twos in another matrix...)

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

カテゴリ

Help Center および File ExchangeCreating and Concatenating Matrices についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by