How can I delete an entire row in a matrix and shift the rest of the matrix below the deleted row up each time I delete??
조회 수: 6 (최근 30일)
이전 댓글 표시
I want to delete an entire row and shift the remaining matrix below the deleted row up by one, each time I delete a row.
댓글 수: 0
채택된 답변
Image Analyst
2014년 7월 22일
rowToDelete = 42; % or whatever....
yourMatrix(rowToDelete, :) = [];
댓글 수: 5
Triveni
2016년 3월 9일
rowToDelete = [42 5 6 7]; % or whatever....
yourMatrix(rowToDelete, :) = [];
should also work...
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Matrix Indexing에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!