Filter löschen
Filter löschen

replacing components of a matrix

1 Ansicht (letzte 30 Tage)
Charlene
Charlene am 8 Mai 2013
how to generate a matrix that replaces all components of a previous matrix lying between 2.9 and 3.2, by -1?

Akzeptierte Antwort

Matt Kindig
Matt Kindig am 8 Mai 2013
%your matrix is M
isBetween = (M >= 2.9) & (M <= 3.2);
M(isBetween) = -1
  1 Kommentar
Charlene
Charlene am 8 Mai 2013
thx a lot however an other problem turned up; the other components that are not int between the interval became 0, while i need them to be equal as the previous matrix which is (A=random('norm',3,0.2,100,100))

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Matrix Indexing 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!

Translated by