how to make pushbutton work fast
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
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........................
..............................
0 Kommentare
Akzeptierte Antwort
Azzi Abdelmalek
am 26 Jan. 2013
Bearbeitet: Azzi Abdelmalek
am 26 Jan. 2013
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 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Migrate GUIDE Apps finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!