import data into matlab

조회 수: 1 (최근 30일)
Radoslav Vandzura
Radoslav Vandzura 2015년 10월 7일
댓글: Radoslav Vandzura 2015년 11월 8일
I have imported data into uitable in gui, but data are large and appear statement: Matlab is not responding.
Is uitable appropriate for importing large files?

채택된 답변

Walter Roberson
Walter Roberson 2015년 10월 7일
편집: Walter Roberson 2015년 10월 7일
uitable() does not import data. uitable is for creating table structures in graphics.
There is a table() data type which has various import routines including readtable: is that the routine you are using? What kind of file are you importing the data from?
  댓글 수: 18
Walter Roberson
Walter Roberson 2015년 11월 8일
You can get() the Data property from the uitable handle.
Radoslav Vandzura
Radoslav Vandzura 2015년 11월 8일
And what is code of this?
I wrote this:
function pushbutton4_Callback(hObject, eventdata, handles)
waitfor(gcf)
x=0.5;
waitbar(x+0.3,h,'Data are saving')
pause(3)
get(handles.edit3,'data')%edit3 is tag for uitable object in guide
x=0.8;
waitbar(x+0.2,h,'Data are succesfully saved')
pause(2)
close(h)
But it doesnt work.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Migrate GUIDE Apps에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by