diff options
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) |