Split 2 lines of a matrix?

조회 수: 3 (최근 30일)
Emanuel
Emanuel 2019년 6월 1일
댓글: dpb 2019년 6월 6일
I have this 4x4 matrix.
I want to get lines 3 and 4 to put them up on the matrix, like:
0 1 1 1 1 1 1 1
1 1 1 1 to 0 1 1 1
1 1 1 1
I've made a 2x4 example to make things easier.
Thanks

채택된 답변

dpb
dpb 2019년 6월 1일
B=[A(3:4,:);A]; % create new array keeping old
A=[A(3:4,:);A]; % new array replaces/augments old
More generically,
N=2; % number rows at end to add to beginning
A=[A(end-N+1:end,:);A]; % add N last lines at beginning
  댓글 수: 2
Emanuel
Emanuel 2019년 6월 6일
sorry if i'm asking too much, but could you explain the logic behind
A=[A(end-N+1:end,:);A]; % add N last lines at beginning
?
dpb
dpb 2019년 6월 6일
Just a simple substitution of variables from the explicit case--with the generic ML function end for the last row and the expression for the row number from the end to pick up N rows.
For your specific case that picked up two rows and has size(A,1)==>4, plug in the values and see what you get...

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Multidimensional Arrays에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by