1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
| function gui2
% Création de l'objet Figure
figure('units','pixels',...
'position',[250 250 500 500],...
'color',[0.925 0.913 0.687],...
'numbertitle','off',...
'name','Exemple sans le GUIDE');
% Création de l'objet Axes
axes('units','normalized',...
'position',[0.25 0.25 0.5 0.5]);
% Création de l'objet Uicontrol Pushbutton
uicontrol('style','pushbutton',...
'units','normalized',...
'position',[0.1 0.1 0.1 0.05],...
'string','Couleur',...
'callback','set(gca,''color'',rand(1,3));'); |
Partager