4-D array to 3-D array
조회 수: 1 (최근 30일)
이전 댓글 표시
I have a 4-D array saved in a mat file like
ice_conc_monthly(:,:, year-1978, month) = d;
its is 304*448*37*12, how can i make it 3-D with 304*448*(37*12) size
댓글 수: 0
채택된 답변
James Tursa
2016년 12월 1일
편집: James Tursa
2016년 12월 1일
E.g.,
x = your 304 * 448 * 37 * 12 array
y = reshape(x,304,448,37*12);
Another possibility if you want those last two dimensions arranged differently is to permute them first. E.g.,
x = your 304 * 448 * 37 * 12 array
z = permute(x,[1 2 4 3]);
y = reshape(z,304,448,37*12);
댓글 수: 0
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Matrices and Arrays에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!