diff options
author | pierregm <pierregm@localhost> | 2008-11-24 19:12:05 +0000 |
---|---|---|
committer | pierregm <pierregm@localhost> | 2008-11-24 19:12:05 +0000 |
commit | d1cc65d824e701e47a48a35f26655ca6706307d8 (patch) | |
tree | 8e5e7aef3a2b170ff8cfbc8d383e386cc451dd89 /numpy/core/defmatrix.py | |
parent | ea7901786622f8c395ca76848e7b613fd80cfd67 (diff) | |
download | numpy-d1cc65d824e701e47a48a35f26655ca6706307d8.tar.gz |
* added ddof to np.matrix.var (bug fix #861)
Diffstat (limited to 'numpy/core/defmatrix.py')
-rw-r--r-- | numpy/core/defmatrix.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/core/defmatrix.py b/numpy/core/defmatrix.py index a9f0615fc..1c500e886 100644 --- a/numpy/core/defmatrix.py +++ b/numpy/core/defmatrix.py @@ -480,7 +480,7 @@ class matrix(N.ndarray): is taken before squaring, so that the result is always real and nonnegative. """ - return N.ndarray.var(self, axis, dtype, out)._align(axis) + return N.ndarray.var(self, axis, dtype, out, ddof)._align(axis) def prod(self, axis=None, dtype=None, out=None): return N.ndarray.prod(self, axis, dtype, out)._align(axis) |