remove row and column
이전 댓글 표시
i have 716*716 matrix and i want to remove first 1 to 17 rows and columns.
plz help me which command i have to use here.
댓글 수: 2
Chaudhary P Patel
2019년 10월 18일
이동: Rik
2022년 9월 27일
KALYAN ACHARJYA
2019년 10월 18일
이동: Rik
2022년 9월 27일
Please check my answer, you typed different one.
답변 (1개)
KALYAN ACHARJYA
2019년 10월 17일
편집: KALYAN ACHARJYA
2019년 10월 17일
original_mat(1:17,:)=[];
original_mat(:,1:17)=[];
In the following example I have deleted 1 to 2 rows and columns of 5x5 matrics
original_mat=randi(10,[5,5])
original_mat(1:2,:)=[];
original_mat(:,1:2)=[];
original_mat
Results:
original_mat =
9 7 10 5 8
7 6 6 4 9
3 2 1 8 4
4 2 1 4 7
2 5 9 6 10
original_mat =
1 8 4
1 4 7
9 6 10
카테고리
도움말 센터 및 File Exchange에서 Dynamic System Models에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
