I would like to select the values from my 2nd column which have the less than 5 value in the 1st column. So my matrix looks maybe like this:

1 回表示 (過去 30 日間)
1. column: [ 3 5 8 2 6 4 10 6 1 9 2 6 ]
2. column: [ 11 32 24 47 15 33 39 3 43 8 55 15 ]
  2 件のコメント
Sunil Oulkar
Sunil Oulkar 2016 年 2 月 16 日
Like: 1. column: [ 3 2 4 1 2 ] 2. column: [ 11 47 15 43 55 ]
Sunil Oulkar
Sunil Oulkar 2016 年 2 月 16 日
greater than 5 and less than 10 values in the 1st column

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

採用された回答

Stephen23
Stephen23 2016 年 2 月 16 日
編集済み: Stephen23 2016 年 2 月 16 日
>> M = [ 3 5 8 2 6 4 10 6 1 9 2 6; 11 32 24 47 15 33 39 3 43 8 55 15 ].';
>> M(M(:,1)<5,:)
ans =
3 11
2 47
4 33
1 43
2 55
Basic MATLAB usage like this is covered in the introductory tutorials:

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeGet Started with MATLAB についてさらに検索

タグ

タグが未入力です。

Community Treasure Hunt

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

Start Hunting!

Translated by