MATLAB: How to convert the following 4D matrix to 2D matrix

4d matrix

I want to convert matrix (1,100,100,16384) to 2d matrix

Best Answer

reshape(YourMatrix, 100*100, [])
if you want 100*100 rows and 16384 columns as your output
Related Question