이전 댓글 표시
HI, are there remove fun. to remove row from array ?
thanks
댓글 수: 1
Jan
2011년 8월 15일
Such basic functions are explained exhaustively in the Getting Started chapters of the documentation. It is very recommended to read the instructions for such a powerful tool as MATLAB.
답변 (2개)
Jan
2011년 8월 15일
M = rand(3, 3);
M(2, :) = []; % Remove 2nd row
Daniel Shub
2011년 8월 15일
irow = 3;
x = magic(5)
x(irow, :) = []
카테고리
도움말 센터 및 File Exchange에서 Software Development Tools에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!