代码搜索:Realization
找到约 607 项符合「Realization」的源代码
代码结果 607
www.eeworm.com/read/388370/8612512
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/388370/8612544
m parfiltr.m
function y = parfiltr(C,B,A,x);
% PARALLEL form realization of IIR filters
% ----------------------------------------
% [y] = parfiltr(C,B,A,x);
% y = output sequence
% C = polynomial (FIR) pa
www.eeworm.com/read/388370/8612547
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/387887/8649486
m p9_3.m
% Program P9_3
% Coefficient Quantization Effects on Direct Form
% Realization of an FIR Transfer Function
clf;
f = [0 0.4 0.45 1]; m = [1 1 0 0];
b = remez(19, f, m);
[g,w] = gain(b,1);
bq =
www.eeworm.com/read/186987/8886149
m p9_3.m
% Program P9_3
% Coefficient Quantization Effects on Direct Form
% Realization of an FIR Transfer Function
clf;
f = [0 0.4 0.45 1]; m = [1 1 0 0];
b = remez(19, f, m);
[g,w] = gain(b,1);
bq = a2dT(b,
www.eeworm.com/read/284419/8933223
h global.h
/******************************************************/
/* Realization all global data member */
/******************************************************/
//Clear array
void ClearArray(ch
www.eeworm.com/read/180485/9305542
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
www.eeworm.com/read/167781/9952895
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
www.eeworm.com/read/165851/10049168
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
www.eeworm.com/read/164321/10118316
cpp dir_filter.cpp
/**********************************************
* Filename : Dir_filter.CPP *
* Function : realization of FIR filter with *
direct structure *
*Par