代码搜索:Realization
找到约 607 项符合「Realization」的源代码
代码结果 607
www.eeworm.com/read/393394/8290331
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/268260/11147004
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/268260/11147047
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/268260/11147051
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/334931/12561406
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/334931/12561769
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/248284/12585603
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/342635/12007990
pdf design_and_realization_of_virtual_scene_ramble_system_based_on_opengl_and_3dsmax.pdf
www.eeworm.com/read/180485/9305463
m program_08_03.m
% Program 8_3
% Illustration of Cascade Realization of IIR Filters
% and Structure Verification
%
format long
x = [1 zeros(1,6)];
b1 = 0.0662272*[1 1];
a1 = [1 -0.2593284];
y1 = filter(b1,a1,x
www.eeworm.com/read/180485/9305532
m program_08_04.m
% Program 8_4
% Illustration of Lowpass Filtering
% Using the Cascade Realization
%
k = 1:51;
w1 = 0.8*pi;w2 = 0.1*pi;
A = 1.5;B = 2.0;
x1 = A*cos(w1*(k-1)); x2 = B*cos(w2*(k-1));
x = x1+x2;