代码搜索:Realization
找到约 607 项符合「Realization」的源代码
代码结果 607
www.eeworm.com/read/255577/12072265
m f_filtpar.m
function y = f_filtpar (B,A,R_0,x)
%F_FILTPAR: Compute output of parallel form filter realization
%
% Usage: y = f_filtpar (B,A,R_0,x)
%
% Inputs:
% B = N by 2 matrix containing num
www.eeworm.com/read/254742/12121274
m program_8_7.m
% Program 8_7
% FIR Cascaded Lattice Realization
%
format long
num = input('Transfer function coefficients = ');
k = tf2latc(num);
disp('Lattice coefficients are'); disp(fliplr(k'));
www.eeworm.com/read/252197/12293949
m ip_02_04.m
% MATLAB script for Illustrative Problem 2.4.
clear
echo on
N=1000;
M=50;
Rx_av=zeros(1,M+1);
Sx_av=zeros(1,M+1);
for j=1:10, % Take the ensemble average over ten realizations
X=rand
www.eeworm.com/read/231449/14233563
m program_06_6.m
% Program 6_6
% FIR Cascaded Lattice Realization
%
format long
num = input('Transfer function coefficients = ');
k = tf2latc(num);
disp('Lattice coefficients are'); disp(fliplr(k)');
www.eeworm.com/read/230384/14291097
m f_lattice.m
function [K,b_0] = f_lattice (b)
%F_LATTICE: Find lattice form FIR filter realization
%
% Usage: [K,b_0] = f_lattice (b)
%
% Inputs:
% b = vector of length m+1 containing coefficient
www.eeworm.com/read/230384/14291151
m f_filtpar.m
function y = f_filtpar (B,A,R_0,x)
%F_FILTPAR: Compute output of parallel form filter realization
%
% Usage: y = f_filtpar (B,A,R_0,x)
%
% Inputs:
% B = N by 2 matrix containing num
www.eeworm.com/read/216045/15028743
m ip_02_04.m
% MATLAB script for Illustrative Problem 2.4.
clear
echo on
N=1000;
M=50;
Rx_av=zeros(1,M+1);
Sx_av=zeros(1,M+1);
for j=1:10, % Take the ensemble average over ten realizations
X=rand
www.eeworm.com/read/215497/15059553
m program_8_7.m
% Program 8_7
% FIR Cascaded Lattice Realization
%
format long
num = input('Transfer function coefficients = ');
k = tf2latc(num);
disp('Lattice coefficients are'); disp(fliplr(k'));
www.eeworm.com/read/215497/15059775
m program_8_7.m
% Program 8_7
% FIR Cascaded Lattice Realization
%
format long
num = input('Transfer function coefficients = ');
k = tf2latc(num);
disp('Lattice coefficients are'); disp(fliplr(k'));
www.eeworm.com/read/213940/15121913
m ip_02_04.m
% MATLAB script for Illustrative Problem 2.4.
echo on
N=1000;
M=50;
Rx_av=zeros(1,M+1);
Sx_av=zeros(1,M+1);
for j=1:10, % Take the ensemble average over ten realizations
X=rand(1,N)-1