Split array values into 2 elements

2 views (last 30 days)
A = [126126,138154,137146]
Output i want is A = [126,126,138,154,137,146]
  2 Comments
José-Luis
José-Luis on 5 Dec 2012
Praveen, please accept answers if they help you. I have looked at your question history and you never seem to do that.
sp
sp on 5 Dec 2012
Edited: sp on 5 Dec 2012
hey i do accept...whn i find right answers... thank you

Sign in to comment.

Accepted Answer

Jos (10584)
Jos (10584) on 5 Dec 2012
Edited: Jos (10584) on 5 Dec 2012
help rem
help floor
A = [126126, 138154,137146]
B = [floor(A/1000) ; rem(A,1000)]
B = B(:).' % for cosmetic purposes only

More Answers (2)

Azzi Abdelmalek
Azzi Abdelmalek on 5 Dec 2012
Edited: Azzi Abdelmalek on 5 Dec 2012
out=str2num(reshape(num2str(A')',3,[])')'

Steve
Steve on 5 Dec 2012
The function you want is reshape:
A = reshape(A, 1, [])
This gives you the output you want (A = [126,126,138,154,137,146])

Categories

Find more on Sparse Matrices in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!