ADD data to a GUI table from text file
7 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
sir
i need to add data from text file to GUI table.how can i do this...Please help me out
0 commentaires
Réponses (1)
Walter Roberson
le 6 Juin 2012
h = uitable('Position', ....);
TheData = importdata('TheFileName.txt');
set(h, 'Data', num2cell(TheData) );
0 commentaires
Voir également
Catégories
En savoir plus sur Workspace Variables and MAT Files dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!