Why do I receive "Cell contents reference from a non-cell array object." error?
조회 수: 1 (최근 30일)
이전 댓글 표시
Why do I receive "Cell contents reference from a non-cell array object." error when I execute this code?
handles.num=1;
handles.den=2;
handles.num{:}
Cell contents reference from a non-cell array object.
댓글 수: 0
채택된 답변
Jorrit
2011년 6월 25일
Try round brackets instead handles.num(:). These ones {} are used for cells.
댓글 수: 0
추가 답변 (0개)
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!