extracting specific rows from a matrix

3 ビュー (過去 30 日間)
Don Brohaugh
Don Brohaugh 2015 年 4 月 23 日
コメント済み: Don Brohaugh 2015 年 4 月 23 日
If I have a 1080 x 4 matrix Y, arranged as:
value1 int int int
value2 int int int
value3 int int int
and so on for 1080 rows,
how do I extract all rows in the matrix with the integer in column 3, whose value is, say 11, and create a new 6 x 4 matrix Z of the six entries in Y with the integer 11 present in column 3?
Thank you,
Don

採用された回答

Guillaume
Guillaume 2015 年 4 月 23 日
編集済み: Guillaume 2015 年 4 月 23 日
This is basic matrix indexing:
Z = Y(Y(:, 3) == 11, :);
  1 件のコメント
Don Brohaugh
Don Brohaugh 2015 年 4 月 23 日
Thank you!
Don

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

その他の回答 (0 件)

カテゴリ

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