if at least one number >

3 ビュー (過去 30 日間)
Tomas
Tomas 2013 年 11 月 23 日
コメント済み: Tomas 2013 年 11 月 23 日
I have A=[ 11 12 17]
number=13; W={}; if (A>=number)
W{1}{1}=A;
else
A;
end
I want it so that if there was at least one number in A > as number,then A stored in cell W
Thanks

採用された回答

Azzi Abdelmalek
Azzi Abdelmalek 2013 年 11 月 23 日
A=[ 11 12 17]
number=13;
W={};
if any(A>number)
W{1}=A;
end
  1 件のコメント
Tomas
Tomas 2013 年 11 月 23 日
Thanks

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

その他の回答 (0 件)

カテゴリ

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

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by