Archived
7
0

Some functions have been moved from scipy to numpy. Updated import statements to reflect this.

This commit is contained in:
2011-10-21 22:04:11 +00:00
parent d0f307c135
commit 660f649670
4 changed files with 4 additions and 4 deletions

@@ -3,7 +3,7 @@ from scipy import apply_along_axis,newaxis,zeros,\
trace,zeros_like,sign,sort,real,argsort,rand,array,\
matrix,nan
from scipy.linalg import norm,svd,inv,eig
from scipy.stats import median
from numpy import median
def normalise(a, axis=0, return_scales=False):
s = apply_along_axis(norm, axis, a)