你好,我要用matlab对x(t)=exp(-t)u(t)做FFT的频谱分析,程序应该如何写?
展开全部
我也不是太懂,这是我从help 里面给你找的一个例子,可以参考一下。
clc;
t = 0:0.001:0.6;
x = sin(2*pi*50*t)+sin(2*pi*120*t);
y = x + 2*randn(size(t));
subplot(2,1,1)
plot(1000*t(1:50),y(1:50))
title('Signal Corrupted with Zero-Mean Random Noise')
xlabel('time (milliseconds)')
subplot(2,1,2)
Y = fft(y,512);
Pyy = Y.* conj(Y) / 512;
f = 1000*(0:256)/512;
plot(f,Pyy(1:257))
title('Frequency content of y')
xlabel('frequency (Hz)')
clc;
t = 0:0.001:0.6;
x = sin(2*pi*50*t)+sin(2*pi*120*t);
y = x + 2*randn(size(t));
subplot(2,1,1)
plot(1000*t(1:50),y(1:50))
title('Signal Corrupted with Zero-Mean Random Noise')
xlabel('time (milliseconds)')
subplot(2,1,2)
Y = fft(y,512);
Pyy = Y.* conj(Y) / 512;
f = 1000*(0:256)/512;
plot(f,Pyy(1:257))
title('Frequency content of y')
xlabel('frequency (Hz)')
来自:求助得到的回答
展开全部
>> n=0:15;
>> x=exp(-n);
>> subplot(2,1,1);stem(n,x);
>> subplot(2,1,2);stem(n,abs(fft(x)));
>> x=exp(-n);
>> subplot(2,1,1);stem(n,x);
>> subplot(2,1,2);stem(n,abs(fft(x)));
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
用HELP命令好好看看FFT函数的使用说明
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询