代码搜索结果

找到约 10,000 项符合 Analog 的代码

ex080600.m

% Chapter 8: Example 8.6 % Chebyshev-1 Lowpass Analog filter design % Wp = 0.2*pi; Ws = 0.3*pi; Rp = 1; As = 16; Ripple = 10 ^ (-Rp/20); Attn = 10 ^ (-As/20); % Analog filter design:

ex080400.m

% Chapter 8: Example 8.4 % Butterworth Lowpass Analog filter design % Wp = 0.2*pi; Ws = 0.3*pi; Rp = 7; As = 16; Ripple = 10 ^ (-Rp/20); Attn = 10 ^ (-As/20); % Analog filter design:

ex080800.m

% Chapter 8: Example 8.8 % Elliptic Lowpass Analog filter design % Wp = 0.2*pi; Ws = 0.3*pi; Rp = 1; As = 16; Ripple = 10 ^ (-Rp/20); Attn = 10 ^ (-As/20); % Analog filter design: [

ex082200.m

% Chapter 8: Example 8.22 % Butterworth Lowpass Filter Design: % Use of the CHEBY1 function % % Digital Filter Specifications: wp = 0.2*pi; %digi

ex082400.m

% Chapter 8: Example 8.24 % Elliptic Lowpass Filter Design: % Use of the ELLIP function % % Digital Filter Specifications: wp = 0.2*pi; %digital

ex082100.m

% Chapter 8: Example 8.21 % Butterworth Lowpass Filter Design: % Use of the BUTTER function % % Digital Filter Specifications: wp = 0.2*pi; %digi

ex082300.m

% Chapter 8: Example 8.23 % Butterworth Lowpass Filter Design: % Use of the CHEBY2 function % % Digital Filter Specifications: wp = 0.2*pi; %digi

ex080700.m

% Chapter 8: Example 8.7 % Chebyshev-2 Lowpass Analog filter design % Wp = 0.2*pi; Ws = 0.3*pi; Rp = 1; As = 16; Ripple = 10 ^ (-Rp/20); Attn = 10 ^ (-As/20); % Analog filter design:

exa4_6.m

% exa4-6_lp2bp for example4-6 % chebshev I analog lowpass filter prototype to bandpass filter clear all; N=5; Rp=3; wl=200*pi; wh=1000*pi; % Chebyshev analog lowpass filter prototype [z,p,k

exa4_7.m

% exa4-7_lp2bs for example4-7 % chebshev I analog lowpass filter prototype to bandstop filter clear all; N=9; Rp=3; wl=200*pi; wh=1000*pi; % Chebyshev analog lowpass filter prototype [z,p,k