HI, are there remove fun. to remove row from array ?
thanks

댓글 수: 1

Jan
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
Jan 2011년 8월 15일

0 개 추천

M = rand(3, 3);
M(2, :) = []; % Remove 2nd row
Daniel Shub
Daniel Shub 2011년 8월 15일

0 개 추천

irow = 3;
x = magic(5)
x(irow, :) = []

카테고리

도움말 센터File Exchange에서 Software Development Tools에 대해 자세히 알아보기

태그

질문:

2011년 8월 15일

Community Treasure Hunt

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

Start Hunting!

Translated by