フィルターのクリア

Error using < Matrix dimensions must agree.

2 ビュー (過去 30 日間)
Leela Sai Krishna
Leela Sai Krishna 2019 年 3 月 19 日
回答済み: Star Strider 2019 年 3 月 19 日
a=randi(100,1,10);
b=randi(100,1,10);
c=randi(100,1,10);
A=[a;b;c]
A_max=max(A);
A(A<0.15*A_max)=nan
it gives following error
Error using <
Matrix dimensions must agree.
How to rectify it...

採用された回答

Star Strider
Star Strider 2019 年 3 月 19 日
You apparently have R2016a or earlier, so you do not have ‘automatic implicit expansion’ that was part of R2016b and later versions.
Try this:
idx = bsxfun(@lt, A, 0.15*A_max);
A(idx) = NaN;
You can combine them in one line if you like. This code illustrates the approach.

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeResizing and Reshaping Matrices についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by