Replace non-zero elements in array with output of a calculation on them
7 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
dan berkowitz
am 16 Jan. 2019
Kommentiert: Pedapudi Bharath Raja Bhoopal
am 11 Okt. 2020
Hi,
I have an array, A = [2 3 0 7 0 0 9].
How can I replace the non-zero elements of A with thier original value minus one?
I want to generate B = [ 1 2 0 6 0 0 8]
Any help would be appreciated! Thanks,
DB
0 Kommentare
Akzeptierte Antwort
Walter Roberson
am 16 Jan. 2019
mask = A~=0;
A(mask) = A(mask) - 1;
You can code it as a single expression, but that risks evaluating the comparison twice:
A(A~=0) = A(A~=0) - 1;
2 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Language Fundamentals 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!