how to plot or put the function ( wvtool ) in my gui axis1
4 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
MOHAMMED AL-DALLAL
el 5 de Sept. de 2015
Comentada: Walter Roberson
el 7 de Sept. de 2015
greetings for everybody
please i would like to know how to put that function ( wvtool ) in my GUI interface
as example i will put this code in any pushbottom and will show it in my GUI axis1 ??
L = 64;
wvtool(hamming(L))
thanks for reading
0 comentarios
Respuesta aceptada
Walter Roberson
el 6 de Sept. de 2015
No, you cannot do that. wvtool() is a GUI with a toolbar and multiple axes of plots. In MATLAB, it is not possible for a GUI to be contained within an axes. GUIs that do not have toolbars can be placed inside uipanel, but not inside an axes.
You could record the figure handle returned from wvtool() and locate the axes inside the figure and move them to a container object in your original figure. The container objects that can contain axes are uipanel, hggroup, or hgtransform. One axes cannot contain another.
4 comentarios
Walter Roberson
el 7 de Sept. de 2015
Before the code insert
axis1 = findobj(0,'tag','axis1');
Más respuestas (0)
Ver también
Categorías
Más información sobre Creating, Deleting, and Querying Graphics Objects en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!