Module spline :: Class Spline
[hide private]
[frames] | no frames]

Class Spline

source code

func.FuncOps --+
               |
              Spline

Instance Methods [hide private]
 
__init__(self, x_array, y_array, low_slope=None, high_slope=None) source code
 
calc_ypp(self) source code
 
__call__(self, arg)
Simulate a ufunc; handle being called on an array.
source code
 
call(self, x)
Evaluate the spline, assuming x is a scalar.
source code

Inherited from func.FuncOps: __add__, __coerce__, __div__, __mul__, __neg__, __pow__, __sub__, compose, exp, log

Method Details [hide private]

__call__(self, arg)
(Call operator)

source code 
Simulate a ufunc; handle being called on an array.
Overrides: func.FuncOps.__call__