summaryrefslogtreecommitdiff
path: root/numpy/core/defmatrix.py
diff options
context:
space:
mode:
authorpierregm <pierregm@localhost>2008-11-24 19:12:05 +0000
committerpierregm <pierregm@localhost>2008-11-24 19:12:05 +0000
commitd1cc65d824e701e47a48a35f26655ca6706307d8 (patch)
tree8e5e7aef3a2b170ff8cfbc8d383e386cc451dd89 /numpy/core/defmatrix.py
parentea7901786622f8c395ca76848e7b613fd80cfd67 (diff)
downloadnumpy-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.py2
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)