API Reference for Enthought Tool Suite 3.2.0
A placeholder for math functionality that is not implemented in SciPy.
Returns an inclusive version of arange().
The usual arange() gives:
>>> arange(1, 4, 1) array([1, 2, 3])
However brange() returns:
>>> brange(1, 4, 1) array([ 1., 2., 3., 4.])
Returns a standard deviation from binned data.
Does the array increase monotonically?
>>> is_monotonic(array((1, 2, 3, 4))) True >>> is_monotonic(array((1, 2, 3, 0, 5))) False
This may not be the desired response but:
>>> is_monotonic(array((1))) False
Returns a single random value from a normal distribution.
| Local name | Refers to |
|---|---|
| numpy | numpy |
© Copyright 2002-2009 Enthought, Inc.