フィルターのクリア

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

1 回表示 (過去 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 Center および File ExchangeResizing and Reshaping Matrices についてさらに検索

製品


リリース

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by