-
Notifications
You must be signed in to change notification settings - Fork 6
/
lancer_programme.m
38 lines (31 loc) · 1.12 KB
/
lancer_programme.m
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
function lancer_programme
% Merci de lancer ce script pour lancer le programme.
%% Ajout du répertoire Modèle au chemin de Matlab
chemin = fullfile(pwd,'Modele');
chemin_matlab = genpath(chemin);
addpath(chemin_matlab);
%% Ajout du répertoire Vue au chemin de Matlab
chemin = fullfile(pwd,'Vue');
chemin_matlab = genpath(chemin);
addpath(chemin_matlab);
%% Ajout du répertoire Controleur au chemin de Matlab
chemin = fullfile(pwd,'Controleur');
chemin_matlab = genpath(chemin);
addpath(chemin_matlab);
%% Ajout du répertoire Interface Homme Machine au chemin de Matlab
chemin = fullfile(pwd,'Interface Homme Machine');
chemin_matlab = genpath(chemin);
addpath(chemin_matlab);
%% Ajout du répertoire altmany-export_fig au chemin de Matlab
chemin = fullfile(pwd,'altmany-export_fig');
chemin_matlab = genpath(chemin);
addpath(chemin_matlab);
%% Ajout du répertoire Tests au chemin de Matlab
chemin = fullfile(pwd,'Tests');
chemin_matlab = genpath(chemin);
addpath(chemin_matlab);
%% Lancement du programme
% On instancie le modèle
modele = Modele;
% On instancie le contrôleur
controleur = Controleur(modele);