필터 지우기
필터 지우기

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

조회 수: 2 (최근 30일)
ABCDEFG HIJKLMN
ABCDEFG HIJKLMN 2021년 10월 26일
편집: Cris LaPierre 2021년 10월 26일
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

채택된 답변

Cris LaPierre
Cris LaPierre 2021년 10월 26일
편집: Cris LaPierre 2021년 10월 26일
See Ch 12 of MATLAB Onramp (logical arrays). You may also be interested in the all function.
if all(A<x)
...
end

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Linear Algebra에 대해 자세히 알아보기

제품


릴리스

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by