MATLAB: How i reshape data matrix

matrixreshapesize;

Hello;
h have a matrix with size 66×100 how i change it's size to 1×6600
thanks

Best Answer

bla = rand(66,100);
bla = bla(:)';
Please read the documentation on reshape