removing zeros from a matrix
조회 수: 3 (최근 30일)
이전 댓글 표시
Hey I have a matrix x=[1;2;0;0;0;3;4;5;0;6;0;4;0;6;3;2;1;1;0]; how do I remove the zeros from this matrix?
댓글 수: 0
채택된 답변
David Fletcher
2018년 4월 3일
x(x==0)=[]
댓글 수: 2
David Fletcher
2018년 4월 3일
편집: David Fletcher
2018년 4월 3일
No, just the value of 0. If you need to remove the zeros in everything, it might be easier to convert it to a string, remove the zero characters, and then convert it back to numbers
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Data Type Conversion에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!