Package minimise :: Module grid
[hide private]
[frames] | no frames]

Module grid

source code

Functions [hide private]
 
grid(func=None, grid_ops=None, args=(), A=None, b=None, l=None, u=None, c=None, print_flag=0, print_prefix='')
Grid search function.
source code

Imports: Float64, ones, zeros, Constraint_linear


Function Details [hide private]

grid(func=None, grid_ops=None, args=(), A=None, b=None, l=None, u=None, c=None, print_flag=0, print_prefix='')

source code 
Grid search function.

Keyword Arguments
~~~~~~~~~~~~~~~~~

func:  The function to minimise.

grid_ops:  Matrix of options for the grid search.

args:  The tuple of arguments to supply to the function func.


Grid options
~~~~~~~~~~~~

The first dimension of grid_ops corresponds to the parameters of the function func, and the
second dimension corresponds to:
    0 - The number of increments.
    1 - Lower limit.
    2 - Upper limit.