I need help in splitting an array
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
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 comentarios
Walter Roberson
el 28 de En. de 2021
If only there were some way for people who post questions to be more specific about what they want to do...
Respuestas (1)
Walter Roberson
el 26 de En. de 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 ]
whos
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
C
D
Do you need the commas as part of the output? If so then the output cannot be numeric.
Ver también
Categorías
Más información sobre Multidimensional Arrays en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!