Clear Filters
Clear Filters

How to convert the following 4D matrix to 2D matrix?

4 views (last 30 days)
I want to convert matrix (1,100,100,16384) to 2d matrix

Accepted Answer

Walter Roberson
Walter Roberson on 8 Oct 2017
reshape(YourMatrix, 100*100, [])
if you want 100*100 rows and 16384 columns as your output
  2 Comments
Walter Roberson
Walter Roberson on 18 Jun 2018
What size of matrix are you starting with, and what size do you want to end up with, and what order do you want the elements to end up in?

Sign in to comment.

More Answers (0)

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!