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일

0 개 추천

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

Radoslav Vandzura
Radoslav Vandzura 2015년 10월 7일
편집: Radoslav Vandzura 2015년 10월 7일
I import .xls or .xlsx file. I have file with about 180 000 rows. After pressing push button in gui, data shoult be displayed in uitable...After that I want to analyze data.
Part of my code is: global strFilename
[num,txt,raw] = xlsread(strFilename)
set(handles.edit3, 'data', raw); -edit3 is tag of uitable in gui
Walter Roberson
Walter Roberson 2015년 10월 7일
If you are using GUIDE then handles.edit3 would be the tag of a uicontrol('style','edit') rather than a uitable.
I just experimented with a uitable with 180000 rows and 1023 columns. Creating the uitable took only a fraction of a second; modifying it with new data was even faster, including the time to format the numbers into strings. It was faster than I could mentally measure.
The only notable delay I had in any of this, in the graphics part, was creating the initial figure. Creating the data with rand() was slower than any of the display.
Reading 180000 rows with xlsread() certainly could take time. You could put a tic/toc around the xlsread to get an idea of how long it takes.
Radoslav Vandzura
Radoslav Vandzura 2015년 10월 9일
And how can I set tag of uicontrol('style','edit')?....uitable I insert as an object uitable in guide....
table_h = findobj(ancestor(hObject, 'figure'), 'type', 'uitable');
set(table_h, 'data', raw);
Unless you have more than one uitable.
Radoslav Vandzura
Radoslav Vandzura 2015년 10월 9일
편집: Radoslav Vandzura 2015년 10월 9일
And If I load data only into 1 uitable? I dont know what you mean more than 1 uitable....
Walter Roberson
Walter Roberson 2015년 10월 9일
My suggested code is fine as long as you only have 1 uitable. The code would have problems if you had 2 or more uitable.
Radoslav Vandzura
Radoslav Vandzura 2015년 10월 9일
편집: Radoslav Vandzura 2015년 10월 9일
I already tried your suggested code but it doesnt work so good:( Somewhere is value NaN and there are not loaded all data of file. If I tried tic toc, result is t =168.4031....It takes very long time .....How can I do it faster? ....and when i want to use these data later..in data mining (data analyze)...how shoult I do it?....What do you think about datastore? ....Shout I try it?....Thank you very much for your answer....I appreciate your help...:)
Walter Roberson
Walter Roberson 2015년 10월 9일
Which part did you measure with tic/toc ?
Please show your code.
Radoslav Vandzura
Radoslav Vandzura 2015년 10월 10일
편집: Walter Roberson 2015년 10월 10일
My code is:
function pushbutton1_Callback(hObject, eventdata, handles)
set(handles.text2,'String','');
global strFilename
% ask user which file to import - road to file
FilterSet = {'*.xl??','Excel Files (*.xl?)';...
'*.csv','CSV Files (*.csv)';...
'*.*','All Files (.)'};
[FileName,PathName] = ...
uigetfile(FilterSet,'Select Excel file to import');
if ~isequal(FileName,0)
strFilename = fullfile(PathName,FileName);
set(handles.text2,'String',strFilename)
else
set(handles.text2,'String','Incorrect loading!!!')
end
function pushbutton2_Callback(hObject, eventdata, handles)
global strFilename
tic;
[num,txt,raw] = xlsread(strFilename)
t=toc
table_h = findobj(ancestor(hObject, 'figure'), 'type', 'uitable');
set(table_h, 'data', raw);
Walter Roberson
Walter Roberson 2015년 10월 10일
You are measuring the speed of the xlsread(), not the speed of sending the data to the uitable.
Radoslav Vandzura
Radoslav Vandzura 2015년 10월 11일
And if i want to get faster sending the data to the uitable, should i use the same way?
Walter Roberson
Walter Roberson 2015년 10월 11일
My tests indicate that once you have the data read in, then creating the uitable() is under 0.03 seconds.
The file exchange contribution linked to above is only for reading the data in possibly faster. It has nothing to do with uitable() . uitable is a graphics feature entirely unrelated to any particular method of getting data from a file.
Radoslav Vandzura
Radoslav Vandzura 2015년 10월 12일
편집: Radoslav Vandzura 2015년 10월 12일
According link above I don´t know to do it :( Is there any method how to use it, any steps? How I insert this file xlsread1.m into my code? Should I use all the code?...
Download the .zip file. Unzip it in to a new directory. Use pathtool to add the directory to your MATLAB path. Then in your code, where you currently have xlsread() put in
Excel = actxserver ('Excel.Application');
File = strFilename;
if ~exist(File, 'file')
Excel.Quit
Excel.delete
clear Excel
error('file does not exist: %s', File);
end
Excel.Workbooks.Open(File);
assignin('base', 'Excel', Excel);
[num, txt, raw] = xlsread1(strFilename);
Excel.ActiveWorkbook.Save;
Excel.Quit
Excel.delete
clear Excel
If you are reading multiple files then some of this does not need to be repeated each time.
Note: I seldom run MS Windows (it frustrates me immensely), so this is not tested.
Radoslav Vandzura
Radoslav Vandzura 2015년 10월 13일
It is going good, I am so thankful, thank you very much for your help....;-)
Radoslav Vandzura
Radoslav Vandzura 2015년 11월 7일
And how can I get these data for analyze? (access to data)
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개)

카테고리

도움말 센터File Exchange에서 App Building에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by