Home > Libraries > Optimizers > fminplot.m

iFit/fminplot

PURPOSE ^

stop=fminplot(pars, optimValues, state) default plotting function showing the

SYNOPSIS ^

function stop = fminplot(pars, optimValues, state)

DESCRIPTION ^

 stop=fminplot(pars, optimValues, state) default plotting function showing the 
 criteria evolution as well as main parameters and status.
 A STOP button allows premature abortion of the optimization.
 
 To use this optimization monitoring tool, use:
   options.OutputFcn='fminplot'
 prior to the optimization/fit.

 To plot this monitoring window after the optimization/fit completion, use:
   [pars,fval,exitflag,output]=fmin(@objective, [], 'OutputFcn=fminplot')
   fminplot(output);

 To retrieve the optimisation history from the fminplot window, use:
   h = fminplot;

 Other defined function to be used as OutputFcn and PlotFcns:
   @fminstop           displays a stop button (very fast, allow clean abort of fit)
   @optimplotx         plots the current point
   @optimplotfval      plots the function value
   @optimplotfunccount plots the function count

 example: 
   fmin(@objective, [], 'OutputFcn=fminplot')

CROSS-REFERENCE INFORMATION ^

This function calls: This function is called by:
Generated on Tue 22-Aug-2017 11:03:30 by m2html © 2005. iFit (c) E.Farhi/ILL EUPL 1.1