代码搜索:numpy

找到约 50 项符合「numpy」的源代码

代码结果 50
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/423552/10550231

py mfbox_xmlparse.py

from xml import sax from UserDict import DictMixin import numpy import string, re def checkchar(x): return not ((not ((ord(x)>47 and ord(x)96 and ord(x)64 and ord
www.eeworm.com/read/250200/12425107

py sublinearinterp.py

#C:\Python24\ #Filename: sublinearinterp.py from numpy import * def sublinearinterp(x,y,xi): n=len(x) m=len(xi) yi=zeros(m,float) for i in range(0,m): xt=xi[i]
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/483607/6599518

py testesns.py

import numpy as N from aureservoir import * import filtering, util import pylab as P from scipy import signal from scipy.linalg import pinv, inv import scipy.lib.lapack.clapack #from scipy.fftpack imp
www.eeworm.com/read/231181/14249157

ordplot

#!/usr/bin/env python # $Id: ordPlot 475 2007-04-11 16:44:04Z tconn $ # A routine to plot the output of the ord apps. # import sys, string, time, datetime, numpy, matplotlib, pylab def main(): f
www.eeworm.com/read/231181/14249198

ddplot

#!/usr/bin/env python # $Id: ddPlot 513 2007-05-03 21:41:15Z tconn $ # A routine to plot the output of ddGen. import sys, string, time, datetime, numpy, matplotlib, pylab def main(): from optp
www.eeworm.com/read/407519/2262706

py solution_dual.py

from numpy import fromfile t = fromfile("solution_dual_t.data", sep=" ") u = fromfile("solution_dual_u.data", sep=" ") k = fromfile("solution_dual_k.data", sep=" ") r = fromfile("solution_dual_r.data
www.eeworm.com/read/250200/12425111

py lagrange.py

#C:\Python24\ #Filename: lagrange.py from numpy import * def lagrange(x0,y0,x): n=len(x0) m=len(x) y=zeros(m,float) for i in range(0,m): z=x[i] s=0.0
www.eeworm.com/read/250200/12425114

py hermite.py

#C:\Python24\ #Filename: Hermite.py from numpy import * def hermite(x0,y0,y1,x): n=len(x0) m=len(x) y=zeros(m,float) for k in range(0,m): yy=0.0 for i in range