Bases: object
A polynomial function of the form f(t) = t^n with an optionally fixed time range on which the function exists.
Paramters: |
|
---|
Bases: object
A little wrapper around scipy.interpolate call to force the interpolant to take a keywords argument ‘time=’.
Parameters: |
|
---|---|
Prerequisite: | len(x) == len(y) |
Bases: object
A square wave function of a specified start, duration and height. f(t) = height if (start <= t < start + duration), 0 otherwise
Parameters: |
|
---|
Convolve fn1 with fn2 – where fn1 may return a multidimensional output.
Parameters: |
|
---|---|
Returns: | TODO |