ADD data to a GUI table from text file

조회 수: 1 (최근 30일)
Sajanaji
Sajanaji 2012년 6월 6일
sir
i need to add data from text file to GUI table.how can i do this...Please help me out

답변 (1개)

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

카테고리

Help CenterFile Exchange에서 MATLAB Report Generator에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by