Matrix Logical Indexing in If...else... construction
1 次查看(过去 30 天)
显示 更早的评论
Pavel M
2019-12-15
回答: Thiago Henrique Gomes Lobato
2019-12-15
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 个评论
采纳的回答
Thiago Henrique Gomes Lobato
2019-12-15
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 个评论
更多回答(0 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!