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.

채택된 답변

Image Analyst
Image Analyst 2014년 7월 22일
rowToDelete = 42; % or whatever....
yourMatrix(rowToDelete, :) = [];
  댓글 수: 5
Allan N
Allan N 2014년 7월 24일
Many thanks to both Michael and Image Analyst. Yes, it definitely worked!
Triveni
Triveni 2016년 3월 9일
rowToDelete = [42 5 6 7]; % or whatever....
yourMatrix(rowToDelete, :) = [];
should also work...

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Matrix Indexing에 대해 자세히 알아보기

태그

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by