How to convert the following 4D matrix to 2D matrix?
조회 수: 5 (최근 30일)
이전 댓글 표시
I want to convert matrix (1,100,100,16384) to 2d matrix
댓글 수: 1
채택된 답변
Walter Roberson
2017년 10월 8일
reshape(YourMatrix, 100*100, [])
if you want 100*100 rows and 16384 columns as your output
댓글 수: 2
Walter Roberson
2018년 6월 18일
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?
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Numeric Types에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!