how to make a Mx1xN matrix to MxN

Réponses (2)

Fangjun Jiang
Fangjun Jiang le 29 Août 2011

2 votes

a=rand(3,1,2);
b=reshape(a,3,2);
or
c=squeeze(a);
Florin Neacsu
Florin Neacsu le 29 Août 2011

2 votes

Hi,
You can also try squeeze.
Regards, Florin

Catégories

Question posée :

le 29 Août 2011

Community Treasure Hunt

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

Start Hunting!

Translated by