From f544e777b5124da236b2fb2afefcf310f025042f Mon Sep 17 00:00:00 2001 From: Travis Oliphant Date: Tue, 2 May 2006 23:19:56 +0000 Subject: Add math module to numpy namespace so numpy.math works same as Numeric.math. Change numpy.math to numpy.nmath --- numpy/lib/function_base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'numpy/lib/function_base.py') diff --git a/numpy/lib/function_base.py b/numpy/lib/function_base.py index bb48ae828..6f8df9b7b 100644 --- a/numpy/lib/function_base.py +++ b/numpy/lib/function_base.py @@ -662,7 +662,7 @@ def cov(m,y=None, rowvar=1, bias=0): is a variable and the observations are in the rows. """ - X = array(m,copy=False,ndmin=2) + X = array(m,ndmin=2) if X.shape[0] == 1: rowvar = 1 if rowvar: -- cgit v1.2.1