フィルターのクリア

Extract Values from Matrix row

5 ビュー (過去 30 日間)
Denis Muhra
Denis Muhra 2021 年 4 月 12 日
コメント済み: Adam Danz 2021 年 4 月 12 日
Hi
I have a Dataset padded with -500 so the row length of the matrix stays the same. Now I want to extract an array from a row containing only the values that aren't -500.
e.g
A = [2,1,2,3,4,-500,-500,-500 ; 2,3,4,5,-500,-500,-500,-500]
i've tried this but it gives me only the boolean answer
A1 = A(1,:) > -500 -> A1 = [1,1,1,1,1,0,0,0]
what i want would be A1 = [2,1,2,3,4]
Can anybody help me?
Thanks in Advance

採用された回答

David Fletcher
David Fletcher 2021 年 4 月 12 日
You can use the logical vector to index the main array i.e
A(A1)
  1 件のコメント
Adam Danz
Adam Danz 2021 年 4 月 12 日
Better yet, combine them into 1 line,
A1 = A(1,A(1,:)~=-500)

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeMatrix Indexing についてさらに検索

製品


リリース

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by