1x1 cell array dimension mismatch
이전 댓글 표시
Dear All,
It seems to be an easy question but has wasted my time for a couple of days! I have a 1x1 cell structure array that I would like to put data_path of two different files in it. I have two string matrices each containing one of these two files. I seem to not to be able to tell MATLAB to put both files in the same cell array, and I keep getting "subscripted assignment dimension mismatch". here is the example:
% for k=1:35 % cell.array.one.by.one(k)={firstFilePath(k,1) secondFilePath(k,2)}; %end
subscripted assignment dimension mismatch
Thanks in advance for your inputs!
댓글 수: 3
Arman
2012년 3월 17일
Oleg Komarov
2012년 3월 17일
what class is firstFilePath?
type
whos firstFilePath(k,1)
Also don't call your sructure as cell... because it's already a builtin function.
Last thing, why are you nesting fieldnames like that?
cell.array.one.by.one(k)
this is a non scalar structure in a structure in a structure in a structure in a structure.
IN STRUCT PTION
Arman
2012년 3월 17일
채택된 답변
추가 답변 (0개)
카테고리
도움말 센터 및 File Exchange에서 Structures에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!