代码搜索:Approximation

找到约 1,542 项符合「Approximation」的源代码

代码结果 1,542
www.eeworm.com/read/393976/8252567

m vtb3.m

function vtb3 % VTB3 % % VTB3_1 Impulse response of a SDOF system. % VTB3_2 Step response of a SDOF system. % VTB3_3 Fourier Series approximation. % VTB3_4 Response spectrum for a SDOF system.
www.eeworm.com/read/393857/8259207

m a37.m

load leleccum; %装载信号 s=leleccum(1:3920); ls=length(s); [cA1,cD1]=dwt(s,'db1'); %采用db1基本小波来分解信号 A1=upcoef('a','cA1','db1',1,ls); %第三步中产生的系数cA1和cD1构造第一层的低频和高频(A1和D1)系数 D1=upcoef('d','cD1','db1',1,l
www.eeworm.com/read/172473/9706285

m fixpt.m

function [k,p,err,P] = fixpt(g,p0,tol,max1) % Input - g is the iteration function % - p0 is the initial guess for the fixed-point % - tol is the tolerance % - max1 is the maximum n
www.eeworm.com/read/172473/9706332

m seidel.m

function [P,iter]= seidel(G,P,delta, max1) %Input - G is the nonlinear system saved in the M-file G.m % - P is the initial guess at the solution % - delta is the error bound %
www.eeworm.com/read/270032/11050350

c dist_fast.c

/* * C code from the article * "Fast Linear Approximations of Euclidean Distance in Higher Dimensions" * by Yoshikazu Ohashi, yoshi@cognex.com * in "Graphics Gems IV", Academic Press, 1994 */ /
www.eeworm.com/read/415262/11078933

m durbin_ma.m

function ma=durbin_ma(x,p,q) % Syntax is: ma=durbin_ma(x,p,q) % This program finds moving average with Durbin's method % INPUTS: % x : Given time series % q : order of the moving average
www.eeworm.com/read/268841/11118162

cpp normalfunction.cpp

////////////////////////////////////////////////////////////////////////// ///////////////利用梯形法生成符合标准正态分布的累积函from Dain////////////////// ////////////////////////////////////////////////////////////
www.eeworm.com/read/411674/11233833

m contents.m

% Kernel feature extraction. % % gda - Generalized Discriminant Analysis. % greedyappx - Kernel greedy data approximation. % greedykpca - Greedy kernel PCA. % kpca - Kernel Principal
www.eeworm.com/read/236767/13999557

m two_point_upwind_uni_d1.m

function [D]=two_point_upwind_uni_D1(z0,zL,n,v) %... %... A. Vande Wouwer, P. Saucez and W.E. Schiesser (2002) %... %... function two_point_upwind_uni_D1 returns the differentiation matrix
www.eeworm.com/read/134087/14008887

c adc.c

/* adc.c - successive approximation A/D converter */ #include double dac(); int u(); void adc(x, b, B, R) double x, R; int *b, B; { int i; double y, xQ, Q; Q = R /