MATLAB: How convert 3d matrix to 2d matrix

MATLABmatrix

I wont to covert 1x100x100 matrix to 100×100.

Best Answer

An example:
A=rand(1,100,100)
reshape(A,100,100)