代码搜索:coefficient
找到约 3,200 项符合「coefficient」的源代码
代码结果 3,200
www.eeworm.com/read/438317/7732819
asv demo2.asv
% This Matlab file demomstrates the level set method in Li et al's paper
% "Level Set Evolution Without Re-initialization: A New Variational Formulation"
% in Proceedings of CVPR'05, vol. 1, p
www.eeworm.com/read/438073/7737201
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/436837/7761963
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/299923/7820432
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/299923/7820510
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/199778/7822989
m program_09_3.m
% Program 9_3
% Coefficient Quantization Effects on the
% Frequency Response of a Direct Form FIR Filter
%
fpts = [0 0.5 0.55 1]; mag = [1 1 0 0];
b = remez(39,fpts,mag);
[h,w] = freqz(b,1,512);
www.eeworm.com/read/199777/7823069
m program_09_3.m
% Program 9_3
% Coefficient Quantization Effects on the
% Frequency Response of a Direct Form FIR Filter
%
fpts = [0 0.5 0.55 1]; mag = [1 1 0 0];
b = remez(39,fpts,mag);
[h,w] = freqz(b,1,512);
www.eeworm.com/read/199774/7823214
m program_09_3.m
% Program 9_3
% Coefficient Quantization Effects on the
% Frequency Response of a Direct Form FIR Filter
%
fpts = [0 0.5 0.55 1]; mag = [1 1 0 0];
b = remez(39,fpts,mag);
[h,w] = freqz(b,1,512);
www.eeworm.com/read/199774/7823265
m program_09_7.m
% Program 9_7
% Granular Limit Cycles in First-Order IIR Filter
%
clf;
alpha = input('Type in the filter coefficient = ');
yi = input('Type in the initial condition = ');
x = input('Type in the
www.eeworm.com/read/199774/7823367
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,