Different number of elements error

1 回表示 (過去 30 日間)
Jonathan Moorman
Jonathan Moorman 2020 年 6 月 8 日
回答済み: KSSV 2020 年 6 月 8 日
I have a matrix where I want to replace all values greater than 0 with those from another matrix. Both are 1X100, but I am getting the error "Unable to perform assignment because the left and right sides have a different number of elements." This is the code I have. Is there a better way to go about this?
FactoredAmplitude(FactoredAmplitude > 0) = CrackSkewAngle;

採用された回答

KSSV
KSSV 2020 年 6 月 8 日
FactoredAmplitude(FactoredAmplitude > 0) = CrackSkewAngle(FactoredAmplitude > 0);

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeData Types についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by