"All elements of matrix lower than x" translated into code?

2 views (last 30 days)
Hello,
As indicated by the title, I want to translate to code a condition that occurs if all values of a matrix are below a certain value x.
I am trying this approach, but I don't think it works. Is there an equally simple way of writing this? Thanks in advance!
A = [alpha beta];
x = 100;
if A<x
d=1;
end

Accepted Answer

Cris LaPierre
Cris LaPierre on 26 Oct 2021
Edited: Cris LaPierre on 26 Oct 2021
See Ch 12 of MATLAB Onramp (logical arrays). You may also be interested in the all function.
if all(A<x)
...
end

More Answers (0)

Products


Release

R2021a

Community Treasure Hunt

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

Start Hunting!