fig5_24.m
来自「电子工业出版社出版的《射频电路设计》」· M 代码 · 共 25 行
M
25 行
%
% Computation of the attenuation profile for the lowpass
% 3dB Chebyshev filter prototype of 4th order
%
% Copyright (c) 1999 by P.Bretchko and R.Ludwig
% "RF Circuit Design: Theory and Practice"
%
close all; % close all opened graphs
clear all; % clear all variables
figure; % open new graph
% define normalized frequency range
w=-1.5:0.01:1.5;
% specify lowpass filter prototype
IL=10*log10(1+(1-8*w.^2+8*w.^4).^2);
plot(w,IL);
axis([-2 2 0 30]);
title('Attenuation profile of 4^{th} order 3dB Chebyshev lowpass filter prototype');
xlabel('Normalized frequency \Omega');
ylabel('Attenuation, dB');
%print -deps 'fig5_24.eps'
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?