I need help in splitting an array

1 view (last 30 days)
Sikder Meaghi
Sikder Meaghi on 26 Jan 2021
Commented: Walter Roberson on 28 Jan 2021
The array I have-
A=[ 2 3 , 4 5 , 8 12 , 5 6 ]
The output I need-
C= [ 2 3 , 4 5 ]
D= [ 8 12 , 5 6 ]
  6 Comments
Sikder Meaghi
Sikder Meaghi on 28 Jan 2021
Thank you very much for the solution. I already found a different approach to it but i shall definately try this too
Walter Roberson
Walter Roberson on 28 Jan 2021
If only there were some way for people who post questions to be more specific about what they want to do...

Sign in to comment.

Answers (1)

Walter Roberson
Walter Roberson on 26 Jan 2021
The following code is only valid for A up to 96 entries, after which it will run out of single-character variable names to assign the rows of 4 values into.
A=[ 2 3 , 4 5 , 8 12 , 5 6 ]
A = 1×8
2 3 4 5 8 12 5 6
whos
Name Size Bytes Class Attributes A 1x8 64 double
q7ta90 = buffer(A,4);
for ilil1li = 1 : size(q7ta90, 2)
eval( char([66+ilil1li,61,mat2str(q7ta90(:,ilil1li)),46,39,59]) )
end
clear q7ta90 ilil1li
whos
Name Size Bytes Class Attributes A 1x8 64 double C 1x4 32 double D 1x4 32 double
C
C = 1×4
2 3 4 5
D
D = 1×4
8 12 5 6
Do you need the commas as part of the output? If so then the output cannot be numeric.
  1 Comment
Sikder Meaghi
Sikder Meaghi on 28 Jan 2021
Thank you very much for the solution. I already found a different approach to it but i shall definately try this too

Sign in to comment.

Categories

Find more on Resizing and Reshaping Matrices in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!