フィルターのクリア

if i==any elements in M

2 ビュー (過去 30 日間)
Patrick
Patrick 2015 年 3 月 19 日
回答済み: Star Strider 2015 年 3 月 19 日
Say I have a nX1 matrix M, i want to use condition, "if i==any elements in M", what should I type in Matlab?

採用された回答

Star Strider
Star Strider 2015 年 3 月 19 日
You’re almost there!
Try this:
M = randi(100, 250, 1);
k = 42;
if any(M == k)
fprintf('\n\t\t\tEUREKA!\n')
end

その他の回答 (0 件)

カテゴリ

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

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by