diff options
author | cookedm <cookedm@localhost> | 2005-12-21 16:43:04 +0000 |
---|---|---|
committer | cookedm <cookedm@localhost> | 2005-12-21 16:43:04 +0000 |
commit | 540ddd3f45f502456c118def50fac5a0fc9f259a (patch) | |
tree | e3466576d21b38cafb4c7021107077b37d4a429a /scipy/base/polynomial.py | |
parent | 27ee3d2af4f457dfd64ee803a1addecd6a9b191a (diff) | |
download | numpy-540ddd3f45f502456c118def50fac5a0fc9f259a.tar.gz |
small change in poly1d docstring
Diffstat (limited to 'scipy/base/polynomial.py')
-rw-r--r-- | scipy/base/polynomial.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/scipy/base/polynomial.py b/scipy/base/polynomial.py index f3be1adc9..272f20f80 100644 --- a/scipy/base/polynomial.py +++ b/scipy/base/polynomial.py @@ -367,8 +367,7 @@ class poly1d(object): be used in all functions that accept arrays. p = poly1d([1,2,3], variable='lambda') will use lambda in the - string representation of p. p.variable stores the string used for the - variable. + string representation of p. """ def __init__(self, c_or_r, r=0, variable=None): if isinstance(c_or_r, poly1d): |