无线通信FPGA设计源码程序 - matlab通信信号 - 谷速源码
下载频道> 资源分类> matlab源码> 通信信号> 无线通信FPGA设计源码程序

标题:无线通信FPGA设计源码程序
分享到:

所属分类: 通信信号 资源类型: 文件大小: 50.98 KB 上传时间: 2016-01-25 19:20:53 下载次数: 7 资源积分:1分 提 供 者: xiaopeng2 无线通信FPGA设计源码程序
内容:
无线通信FPGA设计源码程序,程序员在编程的过程中可以参考学习使用,希望对IT程序员有用,此源码程序简单易懂、方便阅读,有很好的学习价值!
%impinvar_bilinear.m
%chebyshev1模拟原型滤波器 
Omegap=0.2*pi;Rp=1;     %设计指标 
Omegas=0.3*pi;As=16; 
[n1,Wn1]=cheb1ord(Omegap,Omegas,Rp,As,'s');  %获得chebyshev1的阶次和截止频率 
[B1,A1]=cheby1(n1,0.5,Wn1,'s');       %获得chebyshev1模拟原型滤波器 
w1=[0:500]*0.5*pi/500;              %频率取样点从0到0.5pi 
h1=freqs(B1,A1,w1);                %计算在各取样点的傅立叶变换值 
subplot(3,1,1);plot(w1,abs(h1));        %绘制幅频特性 
axis([0,0.5*pi,0,1]); 
grid; 
ylabel('模拟原型滤波器'); 
 
%利用脉冲响应不变法设计数字滤波器
T=0.2; %取样周期 
[Bz,Az]=impinvar(B1,A1,1/T); 
w2=[0:500]*0.5*pi*T/500;           %频率取样点从0到0.5pi 
[H,W]=freqz(Bz,Az,w2);            %计算在各取样点的傅立叶变换值 
w=W/T;                          %将数字频率转换为模拟频率 
subplot(3,1,2); 
plot(w,abs(H));                    %绘制幅频特性 
axis([0,0.5*pi,0,1]); 
grid; 
ylabel('脉冲响应不变法'); 
 
%利用双线性变换法设计数字滤波器
wp=Omegap*T;                    %将模拟频率转换为数字频率 
ws=Omegas*T; 
Omegap1=(2/T)*tan(wp/2);           %对模拟频率进行预畸变 
Omegas1=(2/T)*tan(ws/2); 
[n,Wn]=cheb1ord(Omegap1,Omegas1,Rp,As,'s'); %获得chebyshev1的阶次和截止频率 
[B,A]=cheby1(n,0.5,Wn,'s');          %获得chebyshev1模拟原型滤波器 
[Bz,Az]=bilinear(B,A,1/T);           %利用双线性变换法设计数字滤波器 
w2=[0:500]*0.5*pi*T/500;           %频率取样点从0到0.5pi 
[H,W]=freqz(Bz,Az,w2);             %计算在各取样点的傅立叶变换值 
w=W/T;                           %将数字频率转换为模拟频率 
subplot(3,1,3); 
plot(w,abs(H));                     %绘制幅频特性 
axis([0,0.5*pi,0,1]); 
grid; 
ylabel('双线性变换法'); 
 

文件列表(点击上边下载按钮,如果是垃圾文件请在下面评价差评或者投诉):

无线通信FPGA设计源码程序/
无线通信FPGA设计源码程序/matlab代码/
无线通信FPGA设计源码程序/matlab代码/matlab/
无线通信FPGA设计源码程序/matlab代码/matlab/c10/
无线通信FPGA设计源码程序/matlab代码/matlab/c11/
无线通信FPGA设计源码程序/matlab代码/matlab/c12/
无线通信FPGA设计源码程序/matlab代码/matlab/c13/
无线通信FPGA设计源码程序/matlab代码/matlab/c6/
无线通信FPGA设计源码程序/matlab代码/matlab/c7/
无线通信FPGA设计源码程序/matlab代码/matlab/c8/
无线通信FPGA设计源码程序/matlab代码/matlab/c9/
无线通信FPGA设计源码程序/matlab代码/matlab/c10/PLLC.m
无线通信FPGA设计源码程序/matlab代码/matlab/c10/RRCrece.m
无线通信FPGA设计源码程序/matlab代码/matlab/c10/RRCsend.m
无线通信FPGA设计源码程序/matlab代码/matlab/c10/c.mat
无线通信FPGA设计源码程序/matlab代码/matlab/c10/costas.m
无线通信FPGA设计源码程序/matlab代码/matlab/c10/frame_syn.m
无线通信FPGA设计源码程序/matlab代码/matlab/c10/symbol_syn.m
无线通信FPGA设计源码程序/matlab代码/matlab/c11/FFTlms.m
无线通信FPGA设计源码程序/matlab代码/matlab/c11/RLS.m
无线通信FPGA设计源码程序/matlab代码/matlab/c11/WHT.m
无线通信FPGA设计源码程序/matlab代码/matlab/c11/WHTlms.m
无线通信FPGA设计源码程序/matlab代码/matlab/c11/adpeq.m
无线通信FPGA设计源码程序/matlab代码/matlab/c11/ante.m
无线通信FPGA设计源码程序/matlab代码/matlab/c11/lms.m
无线通信FPGA设计源码程序/matlab代码/matlab/c11/signlms.m
无线通信FPGA设计源码程序/matlab代码/matlab/c12/correce.m
无线通信FPGA设计源码程序/matlab代码/matlab/c12/matchfil.m
无线通信FPGA设计源码程序/matlab代码/matlab/c12/rake.m
无线通信FPGA设计源码程序/matlab代码/matlab/c13/cell_search_cpich.m
无线通信FPGA设计源码程序/matlab代码/matlab/c13/ovsf.m
无线通信FPGA设计源码程序/matlab代码/matlab/c13/scramble.m
无线通信FPGA设计源码程序/matlab代码/matlab/c13/wcdmasource.m
无线通信FPGA设计源码程序/matlab代码/matlab/c6/impinvar_bilinear.m
无线通信FPGA设计源码程序/matlab代码/matlab/c6/rcosflt_filter.m
无线通信FPGA设计源码程序/matlab代码/matlab/c6/rcosine_filter.m
无线通信FPGA设计源码程序/matlab代码/matlab/c7/CICdec.m
无线通信FPGA设计源码程序/matlab代码/matlab/c7/CICinterp.m
无线通信FPGA设计源码程序/matlab代码/matlab/c7/cicde.m
无线通信FPGA设计源码程序/matlab代码/matlab/c7/cicin.m
无线通信FPGA设计源码程序/matlab代码/matlab/c7/halfdec.m
无线通信FPGA设计源码程序/matlab代码/matlab/c7/halfinterp.m
无线通信FPGA设计源码程序/matlab代码/matlab/c7/hbfil.m
无线通信FPGA设计源码程序/matlab代码/matlab/c7/multirece.m
无线通信FPGA设计源码程序/matlab代码/matlab/c7/multisend.m
无线通信FPGA设计源码程序/matlab代码/matlab/c8/ASKmod.m
无线通信FPGA设计源码程序/matlab代码/matlab/c8/F2T.m
无线通信FPGA设计源码程序/matlab代码/matlab/c8/LPF.m
无线通信FPGA设计源码程序/matlab代码/matlab/c8/MSKmod.m
无线通信FPGA设计源码程序/matlab代码/matlab/c8/OFDMmod.m
无线通信FPGA设计源码程序/matlab代码/matlab/c8/QAMmod.m
无线通信FPGA设计源码程序/matlab代码/matlab/c8/QPSKmod.m
无线通信FPGA设计源码程序/matlab代码/matlab/c8/T2F.m
无线通信FPGA设计源码程序/matlab代码/matlab/c9/CRCcheck.m
无线通信FPGA设计源码程序/matlab代码/matlab/c9/RScode.m
无线通信FPGA设计源码程序/matlab代码/matlab/c9/TCMcode.m
无线通信FPGA设计源码程序/matlab代码/matlab/c9/convcode.m
无线通信FPGA设计源码程序/matlab代码/matlab/c9/encode_bit.m
无线通信FPGA设计源码程序/matlab代码/matlab/c9/encoderm.m
无线通信FPGA设计源码程序/matlab代码/matlab/c9/hamming7_4.m
无线通信FPGA设计源码程序/matlab代码/matlab/c9/intrlvcode.m
无线通信FPGA设计源码程序/matlab代码/matlab/c9/rsc_encode.m

关键词: 无线通信 源码 程序

Top_arrow
回到顶部
联系方式| 版权声明| 招聘信息| 广告服务| 银行汇款| 法律顾问| 兼职技术| 付款方式| 关于我们|
网站客服网站客服 程序员兼职招聘 程序员兼职招聘
沪ICP备19040327号-3
公安备案号:沪公网安备 31011802003874号
库纳格流体控制系统(上海)有限公司 版权所有
Copyright © 1999-2014, GUSUCODE.COM, All Rights Reserved