代码搜索:Chebyshev
找到约 1,095 项符合「Chebyshev」的源代码
代码结果 1,095
www.eeworm.com/read/387009/8712182
h chebyshev.h
struct Chebyshev {
Int n,m;
VecDoub c;
Doub a,b;
Chebyshev(Doub func(Doub), Doub aa, Doub bb, Int nn);
Chebyshev(VecDoub &cc, Doub aa, Doub bb)
: n(cc.size()), m(n), c(cc), a(aa), b(bb)
www.eeworm.com/read/386257/8759540
m chebyshev.m
function f = Chebyshev(y,k,x0)
syms t;
T(1:k+1) = t;
T(1) = 1;
T(2) = t;
c(1:k+1) = 0.0;
c(1)=int(subs(y,findsym(sym(y)),sym('t'))*T(1)/sqrt(1-t^2),t,-1,1)/pi;
c(2)=2*int(subs(y,findsym(sym(y
www.eeworm.com/read/179705/9344029
h chebyshev.h
/* specfunc/chebyshev.h
*
* Copyright (C) 1996, 1997, 1998, 1999, 2000 Gerard Jungman
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU Ge
www.eeworm.com/read/365698/9851037
m chebyshev.m
function f = Chebyshev(y,k,x0)
syms t;
T(1:k+1) = t;
T(1) = 1;
T(2) = t;
c(1:k+1) = 0.0;
c(1)=int(subs(y,findsym(sym(y)),sym('t'))*T(1)/sqrt(1-t^2),t,-1,1)/pi;
c(2)=2*int(subs(y,findsym(sym(y
www.eeworm.com/read/424281/10473764
h chebyshev.h
/* specfunc/chebyshev.h
*
* Copyright (C) 1996, 1997, 1998, 1999, 2000 Gerard Jungman
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU Ge
www.eeworm.com/read/373445/7085092
java chebyshev.java
////////////////////////////////////////////////////////////
// chebysheve outlier detection
// this function is used to detect the abnormal value among a set of data
// input:
// delta: a s
www.eeworm.com/read/452877/7431511
m chebyshev.m
function chebyshev ( mode , freq , alphap , alphas , fp , fs , fp2)
%用法:chebyshev ( mode , freq , alphap , alphas , fp , fs , fp2)
%mode用来选择滤波器模式,1为低通,2为高通,3为带通
%freq:采样频率 alphap:通带衰减 alphas:阻带衰减
www.eeworm.com/read/448419/7533725
m chebyshev.m
format short e;
disp('*****Input the parameters of Chebyshev filter expected*****');
f1 = input (' passband edge(Hz) : ');
f2 = input (' stopband edge(Hz) : ');
k1 = input (' passband gain(dB) : '
www.eeworm.com/read/445068/7599779
m chebyshev.m
function f = Chebyshev(y,k,x0)
syms t;
T(1:k+1) = t;
T(1) = 1;
T(2) = t;
c(1:k+1) = 0.0;
c(1)=int(subs(y,findsym(sym(y)),sym('t'))*T(1)/sqrt(1-t^2),t,-1,1)/pi;
c(2)=2*int(subs(y,findsym(sym(y