Saving part of a cell array
조회 수: 5 (최근 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!