How to clear this error?
이전 댓글 표시
Cell contents assignment to a non-cell array object.
Error in fincode (line 237)
D{i}=[U,zeros(1,vg)];
답변 (1개)
Walter Roberson
2018년 2월 14일
0 개 추천
You had previous initialized D to be something other than a cell array. If you are deliberately changing its use from numeric to cell array, then you should either "clear D" or else explicitly assign something like "D = cell(1,20);"
카테고리
도움말 센터 및 File Exchange에서 Cell Arrays에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!