How to Convert 3d matrix to row matrix???
3 ビュー (過去 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!