代码搜索:SciPy

找到约 26 项符合「SciPy」的源代码

代码结果 26
www.eeworm.com/read/483607/6599521

py util.py

from numpy import * from scipy import fftpack, signal def GCC(x,y,filt="unfiltered",fftshift=1, b=None, a=None): """ Generalized Cross-Correlation of _real_ signals x and y with specified pre-whit
www.eeworm.com/read/483607/6599522

py test_adaptation.py

import sys from numpy.testing import * import numpy as N import random, scipy.signal # TODO: right module and path handling sys.path.append("../") from aureservoir import * class test_adaptation(Nu
www.eeworm.com/read/421143/10753580

py mixture.py

# Create mixture of Gaussians from numpy import * from scipy.stats.distributions import * import pylab as PL class Mix: def __init__(self,w,mu,sigma): self.mu=mu # mixture means self._dim=siz
www.eeworm.com/read/349580/3142608

py benchutil.py

#!/usr/bin/python # # Copyright (C) 2005-2006 Anders Logg. # Licensed under the GNU LGPL Version 2.1. # # Utilities for running benchmark from scipy.io.array_import import read_array from commands im
www.eeworm.com/read/407519/2262539

py benchutil.py

#!/usr/bin/python # # Copyright (C) 2005-2006 Anders Logg. # Licensed under the GNU LGPL Version 2.1. # # Utilities for running benchmark from scipy.io.array_import import read_array from commands im
www.eeworm.com/read/407519/2262702

py stabilityfactors.py

#!/usr/bin/env python from numpy import * from numpy.linalg import norm from scipy.linalg import expm def getUU(val, t, U) : dummy, u = min(zip(abs(t-val), U), key=lambda u:u[0]) return u def s