GUI
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
I woluld like to plot a image on any push button or toggle button
can you pls guide me.
0 Kommentare
Akzeptierte Antwort
Gerd
am 7 Jul. 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 Kommentare
Paulo Silva
am 7 Jul. 2011
Murali Mohan you accepted the wrong answer but thanks for posting the solution you chosen.
Weitere Antworten (2)
Jan
am 7 Jul. 2011
Another approach:
pic = fullfile(tempdir, 'picture.png');
uicontrol('Style', 'pushbutton', ...
'String', '
<<file-----pic--.>>
');
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!