Saving part of a cell array
4 ビュー (過去 30 日間)
古いコメントを表示
Is there a way to save a part of a cell array like test{1,1}, test{1,2}...etc to separate variables in a .mat file?
1 件のコメント
Sara
2014 年 7 月 1 日
Why do you want to do that? What name do you want to assign to each part of the cell array, e.g., a = test{1,1}; b = test{1,2}, or something else?
採用された回答
Azzi Abdelmalek
2014 年 7 月 1 日
You can do it, but it's really a bad idea, you can access any part of your cell by
test{1,n}
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Workspace Variables and MAT Files についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!