MATLAB: Convert matrix in single column

matrix columnpredictive maintenance with matlab

Hi, I have to convert a matrix in one column vector composed of all the columns of the original matrix. How can I do this? Thanks

Best Answer

yourvector = yourmatrix(:);