Matrix Logical Indexing in If...else... construction
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Pavel M
le 15 Déc 2019
Réponse apportée : Thiago Henrique Gomes Lobato
le 15 Déc 2019
How i can do condition then if in my array varargin{j} at least one logical '1' is exist, condition works?
example
elseif varargin{j} == inf | varargin{j} == 0 | varargin{j} < 0
error(..)
0 commentaires
Réponse acceptée
Thiago Henrique Gomes Lobato
le 15 Déc 2019
If you wanna check that a condition happens at least one time in an array you can use "any"
elseif any(isinf(varargin{j})) || any(varargin{j} <= 0)
0 commentaires
Plus de réponses (0)
Voir également
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!