GUI table elements assigning
Afficher commentaires plus anciens
i have a table in my GUI, and i get the elements of that table in 'd' by using
function uitable1_CellEditCallback(hObject, eventdata, handles) d = get(hObject, 'data')
now i wish to assign the values in the d (8X2 matrix) into anothr matrix k(4X2X3)
how can i use the evalin command here if it all i should
Réponses (1)
Walter Roberson
le 2 Juin 2011
d has 16 elements, but you want to assign it in to a matrix with 24 elements. Where should the elements of d be positioned in that matrix?
You could use
assignin('base','k',NewK)
2 commentaires
sumeet
le 2 Juin 2011
Walter Roberson
le 2 Juin 2011
So d(2,1) is to be stored twice??
Catégories
En savoir plus sur Structures dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!