How to check a number is in a array or not?
2 483 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
a=[8 9 6 5 3], I want to know 5 is there or not.
0 commentaires
Réponse acceptée
Guillaume
le 29 Août 2017
ismember(5, a)
2 commentaires
Putri Basenda Tarigan
le 16 Nov 2020
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
le 17 Fév 2023
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.
Voir également
Catégories
En savoir plus sur Matrices and Arrays dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!