Different number of elements error
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Jonathan Moorman
am 8 Jun. 2020
Beantwortet: KSSV
am 8 Jun. 2020
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;
0 Kommentare
Akzeptierte Antwort
KSSV
am 8 Jun. 2020
FactoredAmplitude(FactoredAmplitude > 0) = CrackSkewAngle(FactoredAmplitude > 0);
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu NaNs finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!