How to convert all array values into negative ones?
58 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Lu Da Silva
am 31 Jan. 2022
Bearbeitet: John D'Errico
am 31 Jan. 2022
I have an array A:
A = [2; 3; 5; -8; 9; 1; -1]
how do I convert it into an array whose values are all negative? So as to obtain B:
A = [-2; -3; -5; -8; -9; -1; -1]
Thanks!
0 Kommentare
Akzeptierte Antwort
Weitere Antworten (3)
Burhan Burak AKMAN
am 31 Jan. 2022
You can do like.
A = [2; 3; 5; -8; 9; 1; -1];
A = -(A.*A).^0.5;
1 Kommentar
Walter Roberson
am 31 Jan. 2022
A = [2; 3; 5; -8; 9; 1; -1]
%way #1
A(A>0) = -A(A>0)
%way #2
A = [2; 3; 5; -8; 9; 1; -1]
A = -abs(A)
0 Kommentare
John D'Errico
am 31 Jan. 2022
Bearbeitet: John D'Errico
am 31 Jan. 2022
So many ways. Don't forget the simple solution:
A = [2; 3; 5; -8; 9; 1; -1]
B = -abs(A) % this makes all of the signs positive, then negates the entire lot
Or we could do this:
C = -sign(A).*A % this is similar to the use of abs
Those ways act on the entire array. In order to act only on those that have the wrong sign and do it effectively in place, the standard MATLAB solution would be this:
A(A > 0) = -A(A > 0)
0 Kommentare
Siehe auch
Kategorien
Mehr zu Operators and Elementary Operations 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!