diff options
author | Dongjoon Hyun <dongjoon@apache.org> | 2016-02-19 00:22:33 -0800 |
---|---|---|
committer | Dongjoon Hyun <dongjoon@apache.org> | 2016-02-19 00:28:09 -0800 |
commit | 707772433ca82df688ca8c7db8dfc5531a517edc (patch) | |
tree | 08130a989f2ed3dbf709543c84d4c09539a325ed /numpy/ma/README.txt | |
parent | 711b2a9ccfb54c09cdc483ee511035bda60f3f0b (diff) | |
download | numpy-707772433ca82df688ca8c7db8dfc5531a517edc.tar.gz |
MAINT: Fix typos in docs/comment of `ma` and `polynomial` modules.
Diffstat (limited to 'numpy/ma/README.txt')
-rw-r--r-- | numpy/ma/README.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/ma/README.txt b/numpy/ma/README.txt index a725b54c3..2e2a803d4 100644 --- a/numpy/ma/README.txt +++ b/numpy/ma/README.txt @@ -63,7 +63,7 @@ Main differences * *put*, *putmask* and *take* now mimic the ndarray methods, to avoid unpleasant surprises. Moreover, *put* and *putmask* both update the mask when needed. * if *a* is a masked array, *bool(a)* raises a *ValueError*, as it does with ndarrays. * in the same way, the comparison of two masked arrays is a masked array, not a boolean * *filled(a)* returns an array of the same subclass as *a._data*, and no test is performed on whether it is contiguous or not. - * the mask is always printed, even if it's *nomask*, which makes things easie (for me at least) to remember that a masked array is used. + * the mask is always printed, even if it's *nomask*, which makes things easy (for me at least) to remember that a masked array is used. * *cumsum* works as if the *_data* array was filled with 0. The mask is preserved, but not updated. * *cumprod* works as if the *_data* array was filled with 1. The mask is preserved, but not updated. @@ -115,7 +115,7 @@ Using maskedarray with matplotlib --------------------------------- Starting with matplotlib 0.91.2, the masked array importing will work with -the the maskedarray branch) as well as with earlier versions. +the maskedarray branch) as well as with earlier versions. By default matplotlib still uses numpy.ma, but there is an rcParams setting that you can use to select maskedarray instead. In the matplotlibrc file |