代码搜索:Realization
找到约 607 项符合「Realization」的源代码
代码结果 607
www.eeworm.com/read/167781/9952819
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/167781/9952886
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;
www.eeworm.com/read/165851/10049053
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/165851/10049156
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;
www.eeworm.com/read/163777/10145818
m program_8_3.m
% Program 8_3
% Illustration of Cascade Realization of IIR Filters
% and Structure Verification
%
format long
x =3D [1 zeros(1,6)];
b1 =3D 0.0662272*[1 1];
a1 =3D [1 -0.2593284];
y1 =3D filter
www.eeworm.com/read/163777/10145827
m program_8_4.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;
www.eeworm.com/read/357506/10208385
m program_11_4.m
% Program 11_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;
www.eeworm.com/read/357506/10208386
m program_11_3.m
% Program 11_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,
www.eeworm.com/read/356914/10219138
c ccan2.c
/* ccan2.c - circular buffer implementation of canonical realization */
void wrap2(); /* defined in Section \ref{hardware.sec} */
double ccan2(M, a, b, w, q, x)
double *a, *b,
www.eeworm.com/read/356914/10219159
c ccas.c
/* ccas.c - circular buffer implementation of cascade realization */
double csos(); /* circular-buffer version of single SOS */
double ccas(K, A, B, W, P, x)
int K;
double *