求关于声音滤波的matlab程序
小弟毕设中的一道设计题“将男生和女生声音混合在一起,用滤波的方法将其分离。”求详细点的matlab程序,再次谢过各位了![ 本帖最后由 eight 于 2007-5-19 15:54 编辑 ] 请先阅读 置顶贴:聚宝盆 --> 自己动手 --> 有问题再具体发上来
[ 本帖最后由 ChaChing 于 2010-5-9 14:39 编辑 ] 这两天搞毕业设计,编的用Matlab中的fft分析含噪声的信号
其中有直接FFT,时域同步平均后FFT,频域同步平均后FFT。可以参考。
%%This procedure is to investigate the FFT of sine signal, sine signal with noise.
%%The sine signal with noise is treated by direct FFT,
%%FFT after piece-wise averaging in time domain, and FFT after
%%piece-wise averagingfrequency domain
clear all; pack
w=10; t=0:(2*pi/w/500):(300*2*pi/w); x=sin(w*t); n=length(t);
ss=888; randn('seed',ss); z=randn(1,n);
z1=z-mean(z); z2=z1/max(abs(z1)); z2=z2*500;
figure(1); plot(t,x)% The sine signal without noise
fre=(1/(2*pi/w/500))*(1:n)/n; nn=fix(n/2); y1=fft(x);% The FFT of sine signal without noise
y1=(abs(y1)).^2/n; y2=y1(2:(nn+1)); fre1=2*pi*fre(1:nn);
figure(2)
[ 本帖最后由 ChaChing 于 2010-5-9 21:18 编辑 ]
回楼上
多谢多谢!回复 板凳 tujian510 的帖子
程序好像未给齐!?
页:
[1]