Replace non-zero elements in array with output of a calculation on them
조회 수: 9 (최근 30일)
이전 댓글 표시
dan berkowitz
2019년 1월 16일
댓글: Pedapudi Bharath Raja Bhoopal
2020년 10월 11일
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
채택된 답변
Walter Roberson
2019년 1월 16일
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
추가 답변 (0개)
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!