1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
| %%%%%%%%%%%%%%%%%%%%%
%DEBUT DE LA FONCTION PRINCIPALE%
%%%%%%%%%%%%%%%%%%%%%
function courbes
clc;
% Création de l'objet Figure
h = figure('units','pixels',...
'position',[5 40 500 400],...
'numbertitle','off',...
'name','Courbes',...
'menubar','figure',...
'tag','interface');
global x1 x2 y1 y2
... %uicontrol de séléction des paramètres
ha1 = axes('Units','Pixels','Position',[100,35,300,150],'tag','axes1');
ha2 = axes('Units','Pixels','Position',[600,35,300,150],'tag','axes2');
data=guihandles(gcf);
guidata(gcf,data);
draw_Callback %permet de lancer l'affichage des courbes dans les axes
%%%%%%%%%%%%%%%%%%%
%FIN DE LA FONCTION PRINCIPALE%
%%%%%%%%%%%%%%%%%%%
... %sous-fonction de calcul des équations
%%%%%%%%%%%%%%%%%%%%%
%DEBUT DE LA SOUS-FONCTION DRAW%
%%%%%%%%%%%%%%%%%%%%%
function draw_Callback
handles=guidata(gcf);
global x1 y1 x2 y2
plot(handles.axes1,x1,y1);
grid on;
plot(handles.axes2,x2,y2)
grid on;
end
%%%%%%%%%%%%%%%%%%%
%FIN DE LA SOUS-FONCTION DRAW%
%%%%%%%%%%%%%%%%%%%
end |
Partager