How can I change all numbers in matrix to 1? except for 0
조회 수: 35 (최근 30일)
이전 댓글 표시
How can I change all numbers in matrix to 1? except for 0
I want to make the matrix which has 1(all the numbers) or 0.
댓글 수: 0
채택된 답변
Voss
2022년 12월 3일
편집: Voss
2022년 12월 3일
One way:
M = randi(4,[5 5])-2 % a matrix with zero and non-zero elements
M(M ~= 0) = 1 % replace non-zero elements with ones
Another way:
M = randi(4,[5 5])-2 % a matrix with zero and non-zero elements
M(logical(M)) = 1 % replace non-zero elements with ones
댓글 수: 0
추가 답변 (2개)
Walter Roberson
2022년 12월 3일
logical(inputMatrix)
However this will fail if the input includes nan
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Resizing and Reshaping Matrices에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!