高分悬赏 限三天 特急matlab 利用凯泽窗函数设计一个带通滤波器
-
设理想带阻滤波器频率响应为 { 1 0<=w<=π/3 He(e(jw))={ 0 π<=|w|<=2π/3 { -1 2π/3<=|w|<=π 利用凯泽窗函数设计长度为45的带通滤波器,阻带衰减为60Hz。 要求:实验... 设理想带阻滤波器频率响应为 { 1 0<=w<=π/3 He(e(jw))={ 0 π<=|w|<=2π/3 { -1 2π/3<=|w|<=π 利用凯泽窗函数设计长度为45的带通滤波器,阻带衰减为60Hz。 要求:实验基本原理,源程序及其标注。 展开
全部评论(2条)
-
- 打工高平人 2014-01-02 00:00:00
- %凯泽窗函数设计的带通滤波器幅频特性 %利用kaiser窗函数设计一个长度为奇数的带通滤波器(长度为奇数对应滤波器是偶数阶的, % 由此能满足带通滤波器的要求),通带范围是15hertz到40hertz,阻带范围是0hertz到10 % hertz、50hertz到250hertz,阻带波纹为0.01decibel,通带波纹为0.05decibel,信号 %采样率为500hertz clear all; fs=500;%采样频率 fcuts=[10,15,40,50];%频率参数 mags=[0 1 0];%用于制定过渡带(通带或阻带)频率段的理想滤波器幅度值,在通带内其元 %素值取1,阻带内取0 devs=[0.01,0.05,0.01];%设置各通带和阻带内允许的幅度的Z大误差 [n,Wn,beta,ftype]=kaiserord(fcuts,mags,devs,fs); n=n+rem(n,2);%求偶数阶,rem求余数 hh=fir1(n,Wn,ftype,kaiser(n+1,beta),'noscale');%线性相位通带标准滤波器的设计 [H,f]=freqz(hh,1,1024,fs);%频率响应 plot(f,abs(H),'r','LineWidth',2); grid on; title('凯泽窗函数设计的带通滤波器幅频特性'); xlabel('频率(f)'); ylabel('幅度'); %%%%%%%%%%%%%%%%%%%%%%%设置背景色为白色%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% set(gcf,'color','w');
-
赞(12)
回复(0)
-
- 天人三问 2008-12-06 00:00:00
- 先给分就帮你设计.
-
赞(20)
回复(0)
热门问答
- 高分悬赏 限三天 特急matlab 利用凯泽窗函数设计一个带通滤波器
- 设理想带阻滤波器频率响应为 { 1 0<=w<=π/3 He(e(jw))={ 0 π<=|w|<=2π/3 { -1 2π/3<=|w|<=π 利用凯泽窗函数设计长度为45的带通滤波器,阻带衰减为60Hz。 要求:实验... 设理想带阻滤波器频率响应为 { 1 0<=w<=π/3 He(e(jw))={ 0 π<=|w|<=2π/3 { -1 2π/3<=|w|<=π 利用凯泽窗函数设计长度为45的带通滤波器,阻带衰减为60Hz。 要求:实验基本原理,源程序及其标注。 展开
2008-12-05 20:05:45
321
2
- 求设计一个hamming窗设计的带通滤波器的matlab程序。
- 通带截止频率和阻带截止频率分别为0.3pi 0.4pi N=33 求幅值相应和单位脉冲相应的图 类似于这个图 还有一个是单位脉冲相应的图
2013-06-01 11:30:02
490
1
- 如何利用窗函数设计fir滤波器
2017-12-15 09:06:11
420
1
- 窗函数法设计FIR滤波器选窗标准是什么?
- 用窗函数法设计FIR滤波器选窗标准是什么?就是设计滤波器时看滤波器的那些标准而采取不同的窗??
2008-04-22 01:10:54
519
2
- 求解释MATLAB语言,对于带通滤波器的设计
- %带通滤波 %====================================================================== fBW=40e3; f=[0:3e3:4e5]; w=2*pi*f/fs; z=exp(w*j); BW=2*pi*fBW/fs; a=.8547;%BW=2(1-a)/sqrt(a) p=(j^2*a^2); gain=.135; Hz=gain*(z+1).*(z-1).... %带通滤波 %====================================================================== fBW=40e3; f=[0:3e3:4e5]; w=2*pi*f/fs; z=exp(w*j); BW=2*pi*fBW/fs; a=.8547;%BW=2(1-a)/sqrt(a) p=(j^2*a^2); gain=.135; Hz=gain*(z+1).*(z-1)./(z.^2-(p)); subplot(325); plot(f,abs(Hz)); title('带通滤波器'); grid on; Hz(Hz==0)=10^(8);%avoid log(0) subplot(326); plot(f,20*log10(abs(Hz))); grid on; title('Receiver -3dB Filter Response'); axis([1e5 3e5 -3 1]); 展开
2018-12-01 16:14:13
287
0
- matlab数字带通滤波器
- 请问再不能直接调用butter函数时,怎样用matlab来设计巴特沃斯型带通滤波器
2017-12-14 16:00:28
213
1
- matlab 数字带通滤波器
- 求各位高人帮忙。现在有一个通过采样得到的数组,已知采样率fs。数据中有很多噪声,通过哪中方法可以实现降噪?想设计一个带通滤波器,比如通带范围为100~200Hz。怎么用matlab实现?谢谢,帮助啊~~~
2017-12-15 02:48:40
390
1
- 如何 利用倒置转换器设计微带带通滤波器的设计步骤
2016-07-08 07:37:40
428
1
- 采用窗函数法设计FIR高通低通滤波器
2016-03-16 08:43:39
235
1
- 高分悬赏基于Labview的虚拟传递函数测试仪设计
- 设计一个传递函数虚拟测试仪,学习系统传递函数、转折频率的测量方法,分析传递函数谱线图的影响因素等。要求:它的工作状态有‘实测’和‘仿真’两部分。仿真用来分析一阶RC低通滤波... 设计一个传递函数虚拟测试仪,学习系统传递函数、转折频率的测量方法,分析传递函数谱线图的影响因素等。 要求:它的工作状态有‘实测’和‘仿真’两部分。仿真用来分析一阶RC低通滤波器的传递函数,输入的方波信号与被分析的一阶RC滤波器均由软件生成;实测功能则是通过数据采集卡采集信号发生器产生的方波信号作为输入信号来测定一个实际系统/环节 。 QQ:8705573 可追加分数,分数不是问题。会的话加我QQ! 展开
2018-11-14 08:55:09
390
0
- 用MATLAB设计一个低通滤波器
- Z好解释一下各种参数怎么设置 都是怎么计算出来的
2018-11-20 10:57:29
328
0
- 用matlab设计一个滤波器
- 数字滤波器设计及在语音信号分析中的应用。 步骤: 1、语音信号采集 录制一段课程设计学生的语音信号并保存为文件,要求长度不小于10秒,并对录制的信号进行采样;录制时可以使用Windows自带的录音机,或者使用其它专业的录音软件,录制时需要配备录音硬件... 数字滤波器设计及在语音信号分析中的应用。 步骤: 1、语音信号采集 录制一段课程设计学生的语音信号并保存为文件,要求长度不小于10秒,并对录制的信号进行采样;录制时可以使用Windows自带的录音机,或者使用其它专业的录音软件,录制时需要配备录音硬件(如麦克风),为便于比较,需要在安静、干扰小的环境下录音。 2、语音信号分析 使用MATLAB绘出采样后的语音信号的时域波形和频谱图。根据频谱图求出其带宽,并说明语音信号的采样频率不能低于多少赫兹。 3、含噪语音信号合成 在MATLAB软件平台下,给原始的语音信号叠加上噪声,噪声类型分为如下几种:(1)白噪声;(2)单频噪色(正弦干扰);(3)多频噪声(多正弦干扰);(4)其它干扰,可设置为低频、高频、带限噪声,或Chirp干扰、冲激干扰。绘出叠加噪声后的语音信号时域和频谱图,在视觉上与原始语音信号图形对比,也可通过Windows播放软件从听觉上进行对比,分析并体会含噪语音信号频谱和时域波形的改变。 4、数字滤波器设计及滤波,完成以下题目中的一个 给定滤波器的规一化性能指标(参考指标,实际中依据每个同学所叠加噪声情况而定)例如:通带截止频率wp=0.25*pi, 阻通带截止频率ws=0.3*pi; 通带Z大衰减Rp=1 dB; 阻带Z小衰减Rs=15 dB,每个题目至少设计出5个用不同方法的不同类型滤波器。 题目(1):采用窗函数法与等波纹法分别设计各型FIR滤波器(低通、高通、带通、带阻中的至少3种类型)来对叠加噪声前后的语音信号进行滤波处理,绘出滤波器的频域响应,绘出滤波后信号的时域波形和频谱,并对滤波前后的信号进行对比,分析信号的变化;在相同的性能指标下比较各方法的滤波效果,并从理论上进行分析(或解释)。 题目(2):采用双线性变换法与脉冲响应不变法,分别利用不同的原型低通滤波器(Butterworth型与切比雪夫I型)来设计各型IIR滤波器(低通、高通、带通、带阻中的至少3种类型),绘出滤波器的频域响应;并用这些数字滤波器对含噪语音信号分别进行滤波处理,比较不同方法下设计出来的数字滤波器的滤波效果,并从理论上进行分析(或解释)。 5、回放语音信号 对滤波后的语音信号进行回放,感觉滤波前后语音信号的变化。 6、设计一个语音信号分析与处理系统界面(选作) 利用MATLAB的界面设计功能,设计一个MATLAB环境下的人机交互界面,完成上述滤波器的设计及滤波过程,要求能够接收输入的设计参数,查看设计结果及滤波结果。我的邮箱是471147021@QQ.com 哪位高手知道这方面的问题,给我点提示嘛,或者将答案发到我的邮箱里,谢谢了!!! 展开
2009-06-24 07:58:04
616
2
- MATLAB FIR带通滤波器系数
- fs=8000; wp1=2*pi*1200/fs;wp2=2*pi*3000/fs; ws1=2*pi*1000/fs;ws2=2*pi*3200/fs; Ap=1; As=50; wp=(wp1+ws1)/2; ws=(wp2+ws2)/2; wdelta=wp1-ws1; N=ceil(8*pi/wdelta); %取整 wn=[wp ws]; [b,a]=fir1(N,wn/pi,'bandpass');... fs=8000; wp1=2*pi*1200/fs;wp2=2*pi*3000/fs; ws1=2*pi*1000/fs;ws2=2*pi*3200/fs; Ap=1; As=50; wp=(wp1+ws1)/2; ws=(wp2+ws2)/2; wdelta=wp1-ws1; N=ceil(8*pi/wdelta); %取整 wn=[wp ws]; [b,a]=fir1(N,wn/pi,'bandpass'); figure(1) freqz(b,a,512); title('FIR带通滤波器'); 请问这个滤波器的系数是多少啊, 展开
2017-11-26 16:30:58
364
1
- 高分悬赏 买个笔记本电脑
- 我想买个笔记本 主要选择 戴儿 HP 联想 1.价格在3000-5000 2.能玩游戏的 3.性能要好 散热啊什么的 4.售后服务好点 别买了就当没一回事了 买的时候么态度很好的 5.我根本不懂笔记本的 大家Z好详细介绍 害人的 千万别来
2009-04-20 03:41:36
338
5
- labview中能设计一个窄带带通滤波器么
2015-07-04 02:06:19
319
1
- 带通滤波器设计仿真错误
- 设计的一款带通滤波器,用multisim仿真,低通和高通放一起,单独仿真可以放在一起出现错误,求大神指导,如图
2013-06-27 22:10:02
400
1
- 用matlab设计一个简单的滤波器
- 我有一串离散的数据,图像比较混乱,其表达式可能为y=a1*sin(x+n1)+...an*sin(100x+n100) 但是x前面的系数超过20了我就不考虑了,所以我想把这个离散的数据点变的平滑一些,把x前面的系数超过20的全部滤掉。隔行如隔山,这方面知识确实不懂,望大神给写个mat... 我有一串离散的数据,图像比较混乱,其表达式可能为y=a1*sin(x+n1)+...an*sin(100x+n100) 但是x前面的系数超过20了我就不考虑了,所以我想把这个离散的数据点变的平滑一些,把x前面的系数超过20的全部滤掉。隔行如隔山,这方面知识确实不懂,望大神给写个matlab程序! 展开
2014-03-02 09:09:44
308
3
- 利用labview设计一个电子时钟
- 要求:将布尔显件形状修改为长条形,放入到簇控件中,将7段数码管排列各布尔显件,取得系统时间,分开年月日时分秒,分别计算年月日时分秒的每一位,得到一个值,将这个值对应数码管显... 要求:将布尔显件形状修改为长条形,放入到簇控件中,将7段数码管排列各布尔显件,取得系统时间,分开年月日时分秒,分别计算年月日时分秒的每一位,得到一个值,将这个值对应数码管显示的布尔数组转换为簇并显示出来。 思路是从系统取得时间,利用除10将各位数字分离,创建一个数组每7个元素作为一组代表0~9,从数组中索引7个数字控制布尔显示(索引从系统分离数来的数字乘以7开始,如提取的是1,则从数组中提取第8到14个元素(分别为1100000)求具体的程序及相应解释。 展开
2018-11-22 15:41:48
338
0
- 挤出机英语翻译。。。在线等。高分悬赏
- Simplified Flow Theory for Screw Extruders The flow behavior of a viscous liquid in the channel of an extruder screw is shown to be similar to the flow behavior of viscous liquids between infinite parallel plates, one of which is station... Simplified Flow Theory for Screw Extruders The flow behavior of a viscous liquid in the channel of an extruder screw is shown to be similar to the flow behavior of viscous liquids between infinite parallel plates, one of which is stationary and the other moving. Assuming Newtonian behavior of the liquid, a differential equation was derived which relates the rate of extrusion and the die pressure to the screw and die geometry and to the operating variables. Integrated flow equations are given for the special case in which the viscosity of the liquid is constant throughout the screw channel (isothermal extrusion). Equations are also given for the case in which the dimensions of the screw channel are functions of their position along the length of the screw. IN THE preceding paper ( 1 )o f this symposium the literature pertaining to the problem of viscous flow in extruders was reviewed. In this paper the development of simplified but more useful flow equations is presented. The synibols and nomenclature used in this paper are defined in the preceding paper (1). The flow mechanism of the viscous liquid in the helical channel of the screw can be better understood if one imagines that the channel be unrolled and laid out on a flat surface. Figure 1 shows this concept of the screw channel. If the lower plate, representing the screw surface, is held stationary and the upper plate, representing the barrel surface, is moved in the direction of the arrow, the relative motions will be the same as those existing in an extruder where the barrel is stationary and the screw rotates. Assuming that the liquid wets both surfaces, the motion of the barrel drags the viscous liquid along with it, while the stationary plate exerts an equal and opposite drag. The velocity of the liquid, relative to the screw, is a maximum at the barrel surface and zero at the screw surface. There is also a directional factor involved, since the channel is inclined at angle p to the direction of motion. Therefore, in computing the flow rate in the channel we break up the velocity into two components: one of these acts directly down the channel, and the other acts at right angles to it. We call the component which acts down the channel drag velocity, and the component which acts at right angles to this transverse velocity. At the end of the channel there is generally a die or some other restriction to flow. This sets up a pressure gradient down the channel causing a flow in the reverse direction to the drag flon. There is one other flow that must be considered. Generally the screw does not fit perfectly inside the barrel. In other words, there is a clearance between the top of the screw threads and the barrel surface. 展开
2009-03-29 12:37:44
553
2
参与评论
登录后参与评论