How to avoid Matlab keeping old labels on my axis when redrawing
1 次查看(过去 30 天)
显示 更早的评论
Hi, I wish to thank you in advance for any help you can provide. I am having a serious headake trying to get a GUI with a couple of plots inside which correctly update as I change some parameters.
The think is the following, my GUI accepts some parameters plus a button and generates two plots and show them in their respective axes. After a while, I managed so that works in the way that I can change some parameters, press the button again and I wanted to update the plots.
The problem is that the new plots write the axis values over the old ones (they might change with the parameters) and that end up being a mess (you can see it in the picture, the Y axis is overwritten too, but only looks like "Bold" because the values are consistently the same, as that axis represents a probability).
function start_Callback(hObject, eventdata, handles)
myhandles = guihandles(bidding);
%Get the Plots Working
set(myhandles.axes1, 'NextPlot', 'new')
set(myhandles.axes2, 'NextPlot', 'new')
hist_prec=200;
%Get the variables declared by the user
load 'var.mat'
...
now_case=round(rand()*(ns*nbid));
%Plotting
min_interesting=max(-10*v+ob_value,min(min([mb;co])));
max_interesting=min(10*v+ob_value,max(max([mb;co])));
axes(myhandles.axes1)
cla(myhandles.axes1)
[x n]=hist(co(:),hist_prec);
xx=[];
for i=1:size(x,2)
xx=[xx;sum(x(1:i)/sum(x))];
end
[A B C]=plotyy(n,x,n,xx,'bar','plot');
set(C,'linestyle','-','linewidth',1.5, 'Color', 'red');
set(B,'FaceColor', 'blue');
save 'temp.mat'
axes(myhandles.axes2)
cla(myhandles.axes2)
[D E F]=plotyy(n,ep,n,xx,'bar','line');
set(handles.axes1,'XMinorTick','on')
set(F,'linestyle','-','linewidth',1.5, 'Color', 'red');
set(E,'FaceColor', 'blue');
hold on; tar=plot(n,target); hold off;
set(tar,'color','g');
linkaxes([myhandles.axes1 myhandles.axes2],'x');
guidata(hObject, handles);
That is the code related to the graphs inside the callback. Again I appreciate any help you can provide.
Cheers!
2 个评论
Supreeth Subbaraya
2014-8-8
Can you provide a piece of your code and data with which we can reproduce the problem?
回答(2 个)
Image Analyst
2014-8-8
Please attach a screenshot. It looks like you're calling cla('reset') so that should wipe out all old information and start fresh. However you're only calling it on axes2, not on axes1. Maybe you should also call it on axes1 also. And you have a linkaxes. Why did you call linkaxes()?
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Specifying Target for Graphics Output 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!