GUI
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
I woluld like to plot a image on any push button or toggle button
can you pls guide me.
0 comentarios
Respuesta aceptada
Gerd
el 7 de Jul. de 2011
Hi murali,
open GUIDE.
Place a button on the gui.
Go to the callback function
logo = imread('Logo.jpg','jpg');
image(logo);
Gerd
8 comentarios
Paulo Silva
el 7 de Jul. de 2011
Murali Mohan you accepted the wrong answer but thanks for posting the solution you chosen.
Más respuestas (2)
Jan
el 7 de Jul. de 2011
Another approach:
pic = fullfile(tempdir, 'picture.png');
uicontrol('Style', 'pushbutton', ...
'String', '
<<file-----pic--.>>
');
Ver también
Categorías
Más información sobre 2-D and 3-D Plots 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!