如何在matlab上获得幅度响应?

时间:2016-05-26 17:50:45

标签: matlab signal-processing response magnitude

我正在研究一个Matlab代码,如果这是我到目前为止所获得的代码,有人可以告诉我如何才能找到x(t)的幅度响应。

Ac = 1;% Carrier amplitude
wc=0.8*pi; % Carrier frequency
w0= 0.1*pi; % Modulation frequency
Mf = 0.5; % Modulation factor

t=0:0.1:200-0.1;
xt = Ac* (1+ (Mf*cos(w0*t))) .* cos(wc*t);

subplot(4,1,1);
plot(t,xt);
xlabel('Time');
ylabel('x(t)');

Xabs=abs(fftshift(fft(xt,2000)))/2000;
w=10*[-1000:999]*2*pi/2000;
subplot(4,1,2);
stem(w,Xabs);
xlabel('Time');
ylabel('x[n]');

0 个答案:

没有答案