bonsoire a tous ,voila j'ai un erreur dans le code et je peut pas le resoudre
조회 수: 1 (최근 30일)
이전 댓글 표시
Conversion to cell from double is not possible.
댓글 수: 0
채택된 답변
Walter Roberson
2018년 3월 18일
Somewhere in your code you have a line of the form
variable(index) = value;
where value is numeric. However, your variable is a cell array rather than a numeric array, and MATLAB cannot figure out how to convert the numeric value into a cell array to store it.
You probably instead want
variable{index} = value;
This is an outline of what is wrong; we would need to see your code to be sure.
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Convert Image Type에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!