Effacer les filtres
Effacer les filtres

Cell contents assignment to a non-cell array object.

2 vues (au cours des 30 derniers jours)
Jonasz
Jonasz le 18 Août 2013
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?

Réponse acceptée

Walter Roberson
Walter Roberson le 18 Août 2013
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(:))))

Plus de réponses (2)

Azzi Abdelmalek
Azzi Abdelmalek le 18 Août 2013
Modifié(e) : Azzi Abdelmalek le 18 Août 2013
Maybe your cell array handles.myList was used as double before these lines of code
  1 commentaire
Jonasz
Jonasz le 18 Août 2013
It's the first time I put something into this handles.

Connectez-vous pour commenter.


Frank Ozioko
Frank Ozioko le 25 Juin 2018
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

Catégories

En savoir plus sur Migrate GUIDE Apps dans Help Center et File Exchange

Produits

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by