rearrangement rows of matrices

조회 수: 2 (최근 30일)
parham kianian
parham kianian 2020년 11월 17일
댓글: Rik 2022년 2월 2일
Suppose:
A = repmat((1:15)',1,5);
Now I want to rearrange A such that it becomes matrix of size 5 by 15 in following form:
B = [A(1:5,:), A(6:10,:), A(11:15,:)];
The problem is that size of matrix A in my work is too big and its size may change in each iteration. So I can't use a fix command like above to evaluate B. On the other hand, using a for loop is too much time consuming. I tried function "reshape". But, it does not work well.
Is there any function to do this? or how should I call function reshape to get what I want?

채택된 답변

Bruno Luong
Bruno Luong 2020년 11월 17일
A = reshape(A,[5 3 5]);
A = permute(A,[1 3 2]);
A = reshape(A,[5 15]);

추가 답변 (3개)

Rik
Rik 2020년 11월 17일
The easiest way is probably to use a cell as an intermediary step:
A = repmat((1:15)',1,5);
B = [A(1:5,:), A(6:10,:), A(11:15,:)];
d=5;%or is this size(A,2)?
C=mat2cell(A,...
d*ones(1,size(A,1)/d),...
size(A,2));
C=C.';
C=cell2mat(C);
isequal(B,C)
ans = logical
1
This would all be much simpler if your example array is actually this repetitive, as you could use repelem.

KSSV
KSSV 2020년 11월 17일
A = repmat((1:15)',1,5);
B = [A(1:5,:), A(6:10,:), A(11:15,:)];
[r,c] = size(A) ;
n = 3 ;
C = permute(reshape(A',[c,r/n,n]),[2,1,3]);
D = reshape(C,5,[]) ;

Andrei Bobrov
Andrei Bobrov 2020년 11월 17일
A = reshape(1:75,15,[]);
a = 5;
m = size(A,1);
B = reshape(permute(reshape(A,a,m/a,[]),[1,3,2]),a,[]);
  댓글 수: 2
Antonio Carvalho
Antonio Carvalho 2022년 2월 2일
@Andrei Bobrov how are you. Can i reshape two long vectors? one has a lenght completely different to another and from a spefic point (time) compare them using a plot figure?
Rik
Rik 2022년 2월 2일
You can't. If you don't have as many x-values as you have y-values it is not possible to match them up and create a plot. You need to make sure you can make pairs of your x-y-values.

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

카테고리

Help CenterFile Exchange에서 Sparse Matrices에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by