disable axes screen updating in gui
4 ビュー (過去 30 日間)
古いコメントを表示
I have an axes in a gui where i do the following
- Draw 3 time series in the axes using plotyy
- use datetick on the x axis.
- convert the numbers on the y axes from scientific notation to decimals.
- change the font size of the axes.
- change the line width.
The user can select which time series to plot from a popup. My issue is that when the user selects a time series, the chart doesn't update very quickly. You can actually see it doing steps 2, 3, 4, and 5 in sequence. Is there any way to disable the axes's screen updating until it's actually finished with steps 2 and 3?
0 件のコメント
回答 (3 件)
Arthur
2012 年 11 月 13 日
編集済み: Arthur
2012 年 11 月 13 日
How are you updating the plot? Are you calling plotyy every time? It is usually much faster to update XData and YData of an existing plot, instead of replotting it with plotyy.
Post the code here,that makes it easier to see what the problem might be.
0 件のコメント
Drew
2012 年 11 月 13 日
1 件のコメント
Arthur
2012 年 11 月 14 日
You can probably speed this up by updating existing objects instead of creating new objects every time. Especially recreating a legend can be very slow... Also, you're repeating the same lines repeatedly on the plot(datetick, linewidth etc), which is not neccesary. Try if this works:
structOut = handles.timeSeriesData;
if isfield(handles,{'y1','y2'}) && ishandle(handles.y1) && ishandle(handles.y2)
%update existing plot
set(handles.y1,'XData',[Y1 XDATA],'Ydata',[Y1 YDATA]) %update data of y1
set(handles.y2,'XData',[Y2 XDATA],'Ydata',[Y2 YDATA]) %update data of y2
%update existing legend:
if isfield(handles,'legend') && ishandle(handles.legend)
legend(handles.legend,'ScanVol', 'Modeled Value', strrep(tsName, '_', ' '))
end
else
%create new plot
[handles.axis, handles.y1, handles.y2] = plotyy(handles.ModelGraph, [datenum(structOut.WkStartDt), datenum(structOut.WkStartDt)], [structOut.Value, structOut.ModeledValue], ...
datenum(structOut.WkStartDt), structOut.(tsName));
datetick(handles.axis(1), 'x', 'mm/yy');
datetick(handles.axis(2), 'x', 'mm/yy');
set(handles.axis(1), 'FontSize', 8);
set(handles.axis(2), 'FontSize', 8);
set(handles.y1, 'LineWidth', 2);
set(handles.y2, 'LineWidth', 2);
set(handles.y2, 'LineStyle', ':');
%create legend:
handles.legend('ScanVol', 'Modeled Value', strrep(tsName, '_', ' '));
end
%Update Yticks:
n = get(gca,'Ytick');
set(gca,'yticklabel',sprintf('%d |',n'));
%update handles structure
guidata(gcbo,handles)
参考
カテゴリ
Help Center および File Exchange で Two y-axis についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!