How can I draw a graph using a button?
    12 visualizaciones (últimos 30 días)
  
       Mostrar comentarios más antiguos
    
    studentmatlaber
 el 1 de Jun. de 2022
  
    
    
    
    
    Respondida: Voss
      
      
 el 1 de Jun. de 2022
            Hello everyone, I want to draw a graph when I press the button, but a new plot is created. I want to plot the axeste next to the button. How can I do it?

        % Button pushed function: Button
        function ButtonPushed(app, event)
            X=1:5;
            Y=1:5;
            plot(X,Y)
        end
    end
0 comentarios
Respuesta aceptada
  Voss
      
      
 el 1 de Jun. de 2022
        You need to tell the plot function to plot into your axes:
plot(app.UIAxes,X,Y)
If your axes is called something besides app.UIAxes, use that name instead.
0 comentarios
Más respuestas (0)
Ver también
Categorías
				Más información sobre Migrate GUIDE Apps en Help Center y File Exchange.
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

