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!