Using mat2cell
2 ビュー (過去 30 日間)
古いコメントを表示
Sebastian Daneli
2022 年 1 月 9 日
コメント済み: Sebastian Daneli
2022 年 1 月 9 日
I'm sorry, but I can't seem to understand how to use this function.
I have a datamatrix of size 1000x512, and a want to store this as 10 cells, each containing a 100x512 matrix. How do I do this using mat2cell?
0 件のコメント
採用された回答
Walter Roberson
2022 年 1 月 9 日
datacell = mat2cell(datamatrix, size(datamatrix,1)/10*ones(1,10), size(datamatrix,2) )
This divides datamatrix into 10 cells vertically; the size of the cells is automatically calculated. (The code as written does require that the number of rows is exactly divisible by 10)
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Data Import and Management についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!