Info
Cette question est clôturée. Rouvrir pour modifier ou répondre.
i need to get data from list box as matrix like if i have list box and have values i need to order value as matix
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
4
5
5
7
8
5
4
3
i want get matrix
a=[4 5 5 7;8 5 4 3];
0 commentaires
Réponses (1)
Walter Roberson
le 9 Juin 2016
a = reshape( str2double(get(handles.listbox1, 'String')), [], 2);
1 commentaire
Walter Roberson
le 9 Juin 2016
If the data is in two text columns in the listbox, then
a = str2num(get(handles.listbox1, 'String'));
Cette question est clôturée.
Voir également
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!