Convert double array into column vector

175 views (last 30 days)
egg
egg on 30 Jul 2019
Commented: egg on 30 Jul 2019
Hello!
How can I convert the data format below ( f or f(:) ) into the data format in the other image (columns) ?
Screen Shot 2019-07-30 at 1.38.10 PM.png
Screen Shot 2019-07-30 at 1.36.46 PM.png
  2 Comments
James Tursa
James Tursa on 30 Jul 2019
It is unclear to me what format you are starting with and what format you want to end up with.
egg
egg on 30 Jul 2019
I ended up figuring it out!
just had to do : [f(1,:) ]

Sign in to comment.

Accepted Answer

madhan ravi
madhan ravi on 30 Jul 2019
reshape(f,[],1) % column vector
reshape(f,1,1,[]) % 3D

More Answers (2)

the cyclist
the cyclist on 30 Jul 2019
I'm not clear on the same point that James mentioned, but I'm going to guess that the reshape command is what you need.

James Tursa
James Tursa on 30 Jul 2019
Maybe one of these?
reshape(f,1,[])
f(:).'

Categories

Find more on Matrices and Arrays 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!