资源简介
我想很多学习电子和通信的朋友一定对于MATLAB很是熟悉,做课程设计的时候会需要一些经典的源程序来进行学习和修改,现在就提供一个基于双线性变换的切比雪夫II型高通滤波器设计源代码欢迎大家下载学习。
代码片段和文件信息
% Design of a Cheby2 Highpass Digital Filter by using bilinear method
clc;clear all
Rp = 1; % bandpass attenuation in dB
Rs = 40; % bandstop attenuation in dB
OmegaP1_1=500; % bandpass edge frequency
OmegaS1_1=400; % bandstop edge frequency
Fp=2000; % samling frequency
Wp1=2*pi*OmegaP1_1/Fp; % change analogy frequency to digital angular frequency
Ws1=2*pi*OmegaS1_1/Fp; % change analogy frequency to digital angular frequency
OmegaP1=2*Fp*tan(Wp1/2); % nonlinearlization
OmegaS1=2*Fp*tan(Ws1/2); % nonlinearlization
Eta_P=OmegaP1/OmegaP1; % Normalization
Eta_S=OmegaS1/OmegaP1; % Normalization
Lemta_P_EquivalentLowPass=1/Eta_P; % change to the equivalent Lowpass patameter
Lemta_S_EquivalentLowPass=1/Eta_S; %% change to the equivalent Lowpass patameter
% Estimate the Filter Order
[N Wn] = cheb2ord(Lemta_P_EquivalentLowPass Lemta_S_EquivalentLowPass Rp Rs‘s‘);
% Design the Filter
[num1den1] = cheby2(NRsWn‘s‘);
[num2den2]=lp2hp(num1den1OmegaP1);
[numden]=bilin
相关资源
- hmm的matlab源代码
- 《纠错编码原理及MATLAB实现》 刘爱莲
- 几何活动轮廓模型GAC的源代码
- F5隐写算法matab源代码
- camshift跟踪算法MATLAB源代码注释.txt
- matlab计算GTD-UTD绕射源代码.zip
- 复杂网络 图论 统计特征 Matlab 源代码
- 捷联惯导仿真程序-MATLAB源代码
- newman快速算法源代码
- 图像最佳缝合线拼接算法 Matlab源代码
- mimo ofdm无线通信技术及matlab实现 源代
- hough变换的matlab源代码
- 用于解决复杂网络社区划分的FastNew
- 盲信道估计源代码.rar
- 逻辑航迹起始算法代码
- 指纹图像细化 matlab程序源代码
- BTT导弹六自由度仿真实验-MATLAB源代码
- 基于空间分形特性差异的海杂波目标
- audio watermark 各种音频数字水印源代码
- 《gps基本原理及其matlab仿真》程序源
- Color transfer between images 非常经典的彩
- 受限玻尔兹曼机matlab源代码
- CA元胞自动机源代码
- G-S算法matlab程序源代码
- chan算法的源代码
- 极限学习机elm的神经网络模型的源代
- 切比雪夫(Chebyshev)多项式展开式的
- k-medoids聚类算法matlab源代码
- MATLAB信号处理 、频谱分析、汉宁窗函
- SOH的关于IMU算法的源代码和测试工程
评论
共有 条评论