convert 3d matrix into 2d matrix

2 views (last 30 days)
Mushahid Shamim
Mushahid Shamim on 26 Apr 2018
Answered: Walter Roberson on 26 Apr 2018
How can I convert A(2*3*9) matrix into A(6*9) matrix.

Answers (1)

Walter Roberson
Walter Roberson on 26 Apr 2018
reshape(A, [], size(A,3))

Categories

Find more on Matrices and Arrays in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!