transforming a matrix to an array without one values???

1 回表示 (過去 30 日間)
som
som 2011 年 12 月 31 日
Hi all
I have a matrix having some values equal to one. I want to transform this matrix to an array without the one values.
how can I do this? for example a=[13 1 4; 45 23 1; 1 56 78] changed to b=[13 45 23 56 4 78]
cheers,

採用された回答

Wayne King
Wayne King 2011 年 12 月 31 日
a=[13 1 4; 45 23 1; 1 56 78];
indices = find(a==1);
a(indices) = [];
  2 件のコメント
som
som 2011 年 12 月 31 日
thanks for your guidance.
Matt Tearle
Matt Tearle 2011 年 12 月 31 日
Even quicker and cleaner:
a(a==1) = [];

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeMatrices and Arrays についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by