How to check a number is in a array or not?

2,558 ビュー (過去 30 日間)
Arnab Pal
Arnab Pal 2017 年 8 月 29 日
コメント済み: Matthew Coile 2023 年 2 月 17 日
a=[8 9 6 5 3], I want to know 5 is there or not.

採用された回答

Guillaume
Guillaume 2017 年 8 月 29 日
ismember(5, a)
  2 件のコメント
Putri Basenda Tarigan
Putri Basenda Tarigan 2020 年 11 月 16 日
Excuse me Sir,
For the same problem, if we don't know that the number is 5, how to code to get that the number is 5?
Matthew Coile
Matthew Coile 2023 年 2 月 17 日
Putri, you can just as easily use a variable. That is, ismember(x,a) would work as well, where the value of x is assigned earlier in the script.

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

その他の回答 (1 件)

José-Luis
José-Luis 2017 年 8 月 29 日
編集済み: José-Luis 2017 年 8 月 29 日
sum(a==5) > 0
any(a==5)

カテゴリ

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