Lets say, we have the following two-dimensional array in Matlab:
A=[0 451
0 446
0 543
.....]
etc. I want to create another, one-dimensional array, that will do this:
For example, lets call the 1-D array B
, B(1)
will "show" to [0 451]
. B(2) will "show" to [0 446]
, B(3) will "show" to [0 543]
and so on.I hope that my desired result is pretty clear to anyone who could give me a bit help.
Two ways:
Access
split_a1
assplit_a1(1,:),...,split_a1(5,:);
.Access
split_a2
assplit_a2{1},...,split_a2{5};
.