代码搜索:coefficient
找到约 3,200 项符合「coefficient」的源代码
代码结果 3,200
www.eeworm.com/read/357506/10208429
m program_8_1.m
% Program 8_1
% Factorization of a Rational FIR Transfer Function
%
format long
num = input('Filter coefficient vector = ');
Numfactors = factorize(num);
disp('Factors'),disp(Numfactors)
www.eeworm.com/read/357506/10208431
m program_8_4.m
% Program 8_4
% Cascaded Lattice Realization of an
% Allpass Transfer Function
%
format long
den = input('Denominator coefficient vector = ');
k = poly2rc(den);
knew = fliplr(k);
disp('The lat
www.eeworm.com/read/356723/10222036
m ref_coef.m
function [rh,rv,ph,pv] = ref_coef (epsp,epspp)
eps = epsp - i * epspp; %65.0-30.7i;
psi = 0:0.1:90;
psirad = psi.*(pi/180.);
arg1 = eps-(cos(psirad).^2);
arg2 = sqrt(arg1);
arg3 = sin(psirad);
www.eeworm.com/read/280929/10279342
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/280929/10279448
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/355063/10298060
res osr.res
******OPTIMAL SUBSET REGRESSION******
MEANS OF X AND Y
132.35 162.77 116.09 78.7711541.70 61.63
1ORDER REGRESSION SET
www.eeworm.com/read/425882/10311805
m dominantpass.m
function [D,X,sublist] = dominantpass(X,threshold,sublist)
% Dominant pass function
D=[];
global N;
[m,n]=size(X);
% X is the coefficients matrix
R=zeros(m); % matrix R is a reference
www.eeworm.com/read/425875/10312704
m checkancestors.m
function zerotree = checkancestors(j,R,zerotree)
% zerotree=1 means coefficient is descended from zerotree root
% initial set zerotree=0
global N;
i = floor((j+3)/4 );
while i>1,
if R(N(i,1),N(
www.eeworm.com/read/280576/10313026
m binomial.m
function b = binomial(n,k)
%BINOMIAL compute binomial coefficient
%
% Usage: b = binomial(n,k)
%
% Parameters: ( n )
% b = ( )
% ( k )
%
% Author: Steve Gunn (sr
www.eeworm.com/read/354915/10314733
m exa050904_latcfilt.m
% ------------------------------------------------------------------------------
% exa050904_latcfilt.m , for example 5.9.4
%to test latcfilt.m and to realize filtering with LATTICE coefficient.
%