代码搜索:Realization
找到约 607 项符合「Realization」的源代码
代码结果 607
www.eeworm.com/read/439446/7708715
m p9_2.m
% Program P9_2
% Coefficient Quantization Effects on Cascade
% Realization of an IIR Transfer Function
clf;
[z,p,k] = ellip(6,0.05,60,0.4);
[b,a] = zp2tf(z,p,k);
[g,w] = gain(b,a);
sos = zp2sos(z,p,k)
www.eeworm.com/read/439271/7713172
m qsimlbal.m
function [Gr,hsv,Tr,Tl]=qsimlbal(G,P,Q)
% QSIMLBAL Minimal PQ-balanced realization of G. (Utility Function)
% [GR,HSV,TR,TL] = qsimlbal(G,P,Q) finds the minimal PQ-balanced
% real
www.eeworm.com/read/131520/14142241
m filtdraw.m
% filtdraw.m Drawing digital filter realizations (main script)
%
% 8:55PM 9/16/99
%
% Drawing Digital Filter Realizations
%
% Authors: Miroslav D. Lutovac, Dejan V. Tosic, 1999.
www.eeworm.com/read/131520/14142550
m scalbum.m
% scalbum.m Album of SC filter realizations (main script)
% 20:33 24/2/99
%
% Authors: Dejan V. Tosic, Miroslav D. Lutovac, 1999.02.21
% tosic@telekom.etf.bg.ac.yu
%
www.eeworm.com/read/131520/14142647
m filtdraw.m
% filtdraw.m Drawing digital filter realizations (main script)
%
% 8:55PM 9/16/99
%
% Drawing Digital Filter Realizations
%
% Authors: Miroslav D. Lutovac, Dejan V. Tosic, 1999.
www.eeworm.com/read/248284/12585610
m p9_2.m
% Program P9_2
% Coefficient Quantization Effects on Cascade
% Realization of an IIR Transfer Function
clf;
[z,p,k] = ellip(6,0.05,60,0.4);
[b,a] = zp2tf(z,p,k);
[g,w] = gain(b,a);
sos = zp2sos
www.eeworm.com/read/287843/8665324
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/431603/8666121
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
www.eeworm.com/read/180485/9305433
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)');