How Assign a Plot to a Specific Axes?
133 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Rightia Rollmann
el 21 de Feb. de 2017
I have drawn two Axes in GUIDE.
How can I assign each of my plots to one of them?
when I now run it, MATLAB just put both plots on one another.
0 comentarios
Respuesta aceptada
Jan
el 21 de Feb. de 2017
Use the handles of the axes objects:
plot(1:10, rand(1, 10), 'Parent', handles.axes1)
plot(1:10, -rand(1, 10), 'Parent', handles.axes2)
This assumes, that your axes have the names "axes1" and "axes2" (I don't know if this is the standard in GUIDE) and that they are stored in the handles struct, which should be available in your callback.
Más respuestas (0)
Ver también
Categorías
Más información sobre Specifying Target for Graphics Output 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!