Info

This question is closed. Reopen it to edit or answer.

how can i split a column and create a new one??

1 view (last 30 days)
wasima tammi
wasima tammi on 1 Mar 2015
Closed: MATLAB Answer Bot on 20 Aug 2021
suppose A is the column A= 1 2 3 4 4 4 4 3 3 3 2 2 1 and i want m= 1 1; n= 2 2 2; o= 3 3 3 3; p= 4 4 4 4 ;
can anyone tell me this???

Answers (1)

Azzi Abdelmalek
Azzi Abdelmalek on 1 Mar 2015
A=[ 1 2 3 4 4 4 4 3 3 3 2 2 1]
[B,ii,jj]=unique(A)
out=accumarray(jj,1:numel(jj),[],@(x) {A(x)})
celldisp(out)

Tags

Community Treasure Hunt

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

Start Hunting!