About Install Documentation Problems Tree Forum Save your money
via IT outsourcing!

Ukrainian HI-TECH Initiative

DerApproximator

From OpenOpt

Jump to: navigation, search
DerApproximator

  • DerApproximator is a small yet important package for getting/checking derivatives (currently only 1st ones), extracted from OpenOpt framework to be standalone Python module. It is required by FuncDesigner (for obtaining derivatives of oofuns beyond standard set without routines to yield them directly) and some OpenOpt solvers (when there are some functions without user-supplied derivatives).
  • Requirements for the package (as well as for OpenOpt and FuncDesigner) are NumPy and python-setuptools; OS - any where Python and numpy work (Linux, Windows, Mac OS X etc).
  • If user provides start point of type Python list, it is automatically casted to NumPy array.
  • Functions:
    • get_d1 returns 1st derivatives of a func f : R^n -> R^m (example)
    • get_d2 returns 2nd derivatives of a func f : R^n -> R (example)
    • check_d1 checks user-provided routing for obtaining 1st derivatives of a function
  • Default diffInt is 1.5e-8 for get_d1, check_d1 and 1.5e-4 for get_d2. You can overwrite it by "diffInt" argument. Another one argument is stencil, default value 3 for DerApproximator, FuncDesigner and OpenOpt NSP is 3, for OpenOpt NLP it's 1:
    • stencil = 1: (f(x+diffInt) - f(x)) / diffInt
    • stencil = 2: (f(x+diffInt) - f(x-diffInt)) / (2*diffInt)
    • (since v 0.19) stencil = 3: (-f(x+2*diffInt) + 8*f(x+diffInt) - 8*f(x-diffInt) + f(x-2*diffInt)) / (12*diffInt)
  • If it turns out that f(x+diffInt) is NaN (not a number) or f(x-diffInt) is NaN, than only one side will be involved into calculations. BTW this is a typical situation for lots of numerical optimization problems, and currently functions approx_fprime and check_grad from scipy.optimize are even more primitive - they have only one stencil and no handling of NaNs.
Made by Dmitrey


See also:

Personal tools
Latest OOSuite 0.29