How to Convert 3d matrix to row matrix???
조회 수: 7 (최근 30일)
이전 댓글 표시
I have a 3d matrix in the workspace variable named WT.dec{1,1}, I need it to be converted to single dimention row matrix. How can do this???
댓글 수: 0
채택된 답변
추가 답변 (1개)
Vladimir Sovkov
2020년 4월 8일
a=rand(2,2,2) % a sample 3D matrix a
b=a(:)' % is turned to the 1D row matrix b
참고 항목
카테고리
Help Center 및 File Exchange에서 Spreadsheets에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!