data in axes is saved after clear GUI
    9 Ansichten (letzte 30 Tage)
  
       Ältere Kommentare anzeigen
    
    Alon
 am 18 Apr. 2014
  
    
    
    
    
    Beantwortet: Image Analyst
      
      
 am 18 Apr. 2014
            Hello, I have a GUI plot with radio_button group(2 buttons). I reset the gui with a pushbutton and after clearing all variables in GUI and using cla(axes1,'reset') to clear the plot I get a weird thing: If I click on the radio button that wasnt clicked the plot shows the previous data before the reset. What can I do?
0 Kommentare
Akzeptierte Antwort
  Image Analyst
      
      
 am 18 Apr. 2014
        Is it possible that the callback for the radio button is plotting the data all over again?
0 Kommentare
Weitere Antworten (1)
  Voulgarakis Georgios
 am 18 Apr. 2014
        Check the callbacks of the radiobuttons.
Also, how do you clear the variables in the gui?
Keep in mind that when you plot, the values that you plot are staying with the plot. If you delete the variable afterwards, doesn't mean that the plotted values disappear. To delete the plotted values, you'll have to use delete(h) where h is the handle of the plotted values.
axes_handle = axes()
plotted_values_handle = plot(x)
%delete the plotted values
delete(plotted_values_handle)
0 Kommentare
Siehe auch
Kategorien
				Mehr zu 2-D and 3-D Plots 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!


