how to make pushbutton work fast

조회 수: 2 (최근 30일)
Soni huu
Soni huu 2013년 1월 26일
my pushbutton will process data to produce 26 different graph.. but pushbutton need +21 sec to create a graph, couse pushbutton will repeat read all data when i click.. then how to make pushbutton process the data without read all data every i click (just read data at firs click)
RainData = ReadManySoniData( 'C:\matlab7\work\org\2011', '*.dat' );
% need 21 sec to read this data
[ day_number, daily_rain ] = DailyRain( RainData, yearsh, monthnum);
%yearsh get from popupmenu1
%monthnum get from popupmenu2
plot( day_number, daily_rain )
ylabel........................
..............................

채택된 답변

Azzi Abdelmalek
Azzi Abdelmalek 2013년 1월 26일
편집: Azzi Abdelmalek 2013년 1월 26일
In opening function read all your data then use guidata to save your data in handles
handles.data=data
guidata(hObject,handles)
To read your data in pushb function
Data=handles.data
  댓글 수: 4
Soni huu
Soni huu 2013년 1월 26일
handles.data=RainData
guidata(hObject,handles)
To read your data in pushb function
RainData=handles.data
????
Soni huu
Soni huu 2013년 1월 26일
ok... thanks..

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

추가 답변 (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