Minimize a function func using the L-BFGS-B algorithm.
Parameters : | func : callable f(x,*args)
x0 : ndarray
fprime : callable fprime(x,*args)
args : sequence
approx_grad : bool
bounds : list
m : int
factr : float
pgtol : float
epsilon : float
iprint : int
disp : int, optional
maxfun : int
|
---|---|
Returns : | x : array_like
f : float
d : dict
|
See also
Notes
License of L-BFGS-B (Fortran code):
The version included here (in fortran code) is 3.0 (released April 25, 2011). It was written by Ciyou Zhu, Richard Byrd, and Jorge Nocedal <nocedal@ece.nwu.edu>. It carries the following condition for use:
This software is freely available, but we expect that all publications describing work using this software, or all commercial products using it, quote at least one of the references given below. This software is released under the BSD License.
References