SciPy 0.6.0 API Documentation Generated by Endo, 2007-10-17
Get help information for a function, class, or module.
>>> from scipy import * >>> info(polyval) polyval(p, x)
Evaluate the polymnomial p at x.
- Description:
- If p is of length N, this function returns the value: p[0]*(x**N-1) + p[1]*(x**N-2) + ... + p[N-2]*x + p[N-1]
Write source for this object to output.
| Local name | Refers to |
|---|---|
| inspect | inspect |
| pydoc | pydoc |
| sys | sys |
| types | types |