get a matrix of only zero
조회 수: 1 (최근 30일)
이전 댓글 표시
How can I get a mattrix made of only zeros?
For example I have this matrix
[2 4 0 5 6 0]
I would get a matrix made of only zeros
댓글 수: 0
답변 (4개)
Walter Roberson
2012년 11월 10일
편집: Walter Roberson
2012년 11월 10일
NewMatrix = 0 .* OldMatrix;
(Mind you, this has a problem if any of the entries were infinite or NaN)
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Logical에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!