view main/optim/NEWS @ 9968:7cb2f7e7c6d8 octave-forge

fmin: deprecating in favour of fminbnd
author carandraug
date Thu, 05 Apr 2012 21:45:17 +0000
parents 22b40d903137
children 94883b9475ea
line wrap: on
line source

Summary of important user-visible changes for optim 1.1.0:
-------------------------------------------------------------------

 ** The following functions are new optim 1.1.0:

      powell

 ** The following functions have been deprecated since they have been
    implemented in Octave core:

      fminunc_compat  optimset_compat

 ** The function `fmin' has been deprecated in favour of using `fminbnd'
    directly. If one really wishes to use the short version, one can
    easily create an alias on an octaverc file (see `doc startup') with
    the following code

      function out=fmin(varargin) out=fminbnd(varargin{:}); endfunction

 ** The package Makefile has been adapted for compatibility with Octave 3.6.0.

 ** Bugfixes on the functions:

      deriv   linprog

 ** The function `line_min' has a configurable setpesize and max evals

 ** Package is no longer automatically loaded.