No BSD License  

Highlights from
Golden Section Search and Davidon Fletcher Powell

image thumbnail
menu.m
clc;
clear all;
disp('********************************************************************************************************************************')
disp('*******************************************         Algorithmes d''Optimisation     *******************************************************')
disp('*******************************************      MEKHMOUKH ABDENOUR /ELECTRONIQUE   *****************************************')
disp('********************************************************************************************************************************')
disp('                                                                                                                                                                                                                                ')
disp('                                                                                                                                                                                                                                ')
disp('')
disp('M E N U')
disp('')
disp('|                                                                                                                                                                                                                               |')
disp('|                                                                                                        Veuillez selectionner un Algorithme :                                                                    |')
disp('|                                                                     1- Section Dore pour une Fonction Unidimentionnelle                                                                             |');
disp('|                                                                     2- Davidon Fletcher Powell pour une Fonction Multidimentionnelle                                                            |');
disp('')
  choisir= input('  Votre Choix:');
  
  if  choisir==1
      sectiondoree;
  end
  if  choisir==2
      algodfp;
  end

Contact us at files@mathworks.com