How to avoid Matlab keeping old labels on my axis when redrawing
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
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 Kommentare
Supreeth Subbaraya
am 8 Aug. 2014
Can you provide a piece of your code and data with which we can reproduce the problem?
Antworten (2)
Image Analyst
am 8 Aug. 2014
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 Kommentare
Siehe auch
Kategorien
Mehr zu Specifying Target for Graphics Output finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!