How to split the last 4 elements in a column into a new column?
1 view (last 30 days)
Show older comments
If I have a column, say
5
7
2
3
6
4
9
and I want to split the first 3 elements and the last 4 elements into 2 column, like this,
5 3
7 6
2 4
9
Could anyone please tell me how I can do this? I thought about using reshape, but since my first column and second column do not have the same number of elements, reshape seems not applicable.
0 Comments
Accepted Answer
Voss
on 7 Feb 2023
M = [5; 7; 2; 3; 6; 4; 9]
You can't use a matrix, like you said, because the lengths of the two new column vectors is not the same.
You could use a cell array:
C = {M(1:3) M(4:end)}
C{:} % show the contents of C
Or you can make two new variables, where each is a column vector:
M1 = M(1:3)
M2 = M(4:end)
More Answers (2)
Les Beckham
on 7 Feb 2023
Edited: Les Beckham
on 7 Feb 2023
I'm not sure why you want to do this, or what you intend to do with the results, but here is one possible way using a cell array.
A = [ ...
5
7
2
3
6
4
9];
B = {A(1:3), A(4:end)}
B{1}
B{2}
0 Comments
Constantino Carlos Reyes-Aldasoro
on 7 Feb 2023
In Matlab is better to think of matrices than to think of columns (like you would do in Excel for instance), so think of your first column as a matrix
a= [5 7 2 3 6 4 9]'
Then, if you want to "move" elements of that matrix (before you decide where) you need to use the address of those elements, e.g.
a(end-3:end)
That took the last four elements of the matrix. Now, where to move them, you can paste them into the second column of a, but the dimensions would not match directly, and also, you would need to remove those elements, which you only have selected, so better try a new matrix, and do one step at a time:
b(1:3,1) = a(1:3)
b(1:4,2) = a(end-3:end)
Notice that a zero was appended at the end of the first column. It would be same if you start adding elements beyond the existing ones, Matlab will complete the matrix, e.g.
b(6,4) = 11
So, this would be a way to to split the last 4 elements in a column into a new column.
0 Comments
See Also
Categories
Find more on Logical 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!