ADD data to a GUI table from text file

1 view (last 30 days)
Sajanaji
Sajanaji on 6 Jun 2012
sir
i need to add data from text file to GUI table.how can i do this...Please help me out

Answers (1)

Walter Roberson
Walter Roberson on 6 Jun 2012
h = uitable('Position', ....);
TheData = importdata('TheFileName.txt');
set(h, 'Data', num2cell(TheData) );

Categories

Find more on MATLAB Report Generator in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!