Cell contents assignment to a non-cell array object.
1 次查看(过去 30 天)
显示 更早的评论
I want to put many arguments into listbox in Matlab Guide.
Code :
for i=1:length(setX)
handles.myList{i}={num2str(setX(i))};
end
guidata(hObject, handles);
Where:
setX is a mat variable containing numbers.
What is wrong and how to fix it?
0 个评论
采纳的回答
Walter Roberson
2013-8-18
If handles.myList is the handle of a uicontrol('style','list') then the handle cannot be indexed.
Try (just)
set(handles.myList, 'String', cellstr(num2str(setX(:))))
更多回答(2 个)
Azzi Abdelmalek
2013-8-18
编辑:Azzi Abdelmalek
2013-8-18
Maybe your cell array handles.myList was used as double before these lines of code
Frank Ozioko
2018-6-25
I am new to MATLAB programming, who can help me identify and correct this error message: 'Cell contents assignment to a non-cell array object'
>> n=10; xmax=100; x=randi(xmax,n) for i=1:9; for j=2:10; x{i}=x([i,j;j,j]) end end
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Migrate GUIDE Apps 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!