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

1 visualización (últimos 30 días)
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

Respuesta aceptada

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

Más respuestas (0)

Productos


Versión

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by