代码搜索:coefficient
找到约 3,200 项符合「coefficient」的源代码
代码结果 3,200
www.eeworm.com/read/319478/13450958
res agreepv.res
OBSERVED VALUE OF DELTA = 3.5039063
EXPECTED VALUE OF DELTA = 4.2975098
VARIANCE OF DELTA = 0.93170749E-01
SKEWNESS OF DELTA = -0.13898623
STANDARDIZED VALUE O
www.eeworm.com/read/319074/13463402
m exa050904_latcfilt.m
% ------------------------------------------------------------------------------
% exa050904_latcfilt.m , for example 5.9.4
%to test latcfilt.m and to realize filtering with LATTICE coefficient.
%
www.eeworm.com/read/318888/13467697
m exam5_8.m
%
% exam5_8.m - M-file for Example 5-8
%
omegac = 0.4; % cutoff frequency
L = 61; % filter order L = 61
M = (L-1)/2; % M
l = 0:2*M; % coefficient index l
h = omegac/pi*sinc(omegac*
www.eeworm.com/read/318888/13467700
m exam5_7.m
%
% exam5_7.m - M-file for Example 5-7
%
omegac = 0.4; % cutoff frequency
L = 61; % filter order L = 61
M = (L-1)/2; % M
l = 0:2*M; % coefficient index l
h = omegac/pi*sinc(omegac*
www.eeworm.com/read/318888/13467827
asm iirform2.asm
;
; iirform2.asm IIR direct form II (biquads) IIR filter
;
; Prototype: void iirform2(int *, unsigned int, int *, int *, unsigned int, int *);
;
; Entry: arg
www.eeworm.com/read/318888/13467875
asm ex5p11.asm
*************************************************************************
* This program computes multiply and accumulate using direct addressing
* mode.
*
* y(n) = h(0)x(n) + h(1)x(n-1
www.eeworm.com/read/317833/13495899
m latcfilt.m
function [y] = latcfilt(K,x)
% LATTICE form realization of FIR filters
% ---------------------------------------
% y = latcfilt(K,x)
% y = output sequence
% K = LATTICE filter (reflection) co
www.eeworm.com/read/317833/13495922
m ladrfilt.m
function [y] = ladrfilt(K,C,x)
% LATTICE/LADDER form realization of IIR filters
% ----------------------------------------------
% [y] = ladrfilt(K,C,x)
% y = output sequence
% K = LATTICE (refle
www.eeworm.com/read/317053/13511181
m program_06_1.m
% Program 6_1
% Factorization of a Rational Transfer Function
%
format long
num = input('Numerator coefficient vector = ');
den = input('Denominator coefficient vector = ');
[z,p,k] = tf2zp(num,
www.eeworm.com/read/317053/13511193
m program_06_3.m
% Program 6_3
% Cascaded Lattice Realization of an
% Allpass Transfer Function
%
format long
den = input('Denominator coefficient vector = ');
k = poly2rc(den);
knew = fliplr(k);
disp('The lat