ADD data to a GUI table from text file
Ältere Kommentare anzeigen
sir
i need to add data from text file to GUI table.how can i do this...Please help me out
Antworten (1)
Walter Roberson
am 6 Jun. 2012
h = uitable('Position', ....);
TheData = importdata('TheFileName.txt');
set(h, 'Data', num2cell(TheData) );
Kategorien
Mehr zu Workspace Variables and MAT Files finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!