Лабораторная работа: Дискретное преобразование Фурье
plot(n,imag(x),'x');
title('image signal')
xlabel('n');
ylabel('Im(x)');
subplot(312);
plot(n, real(fft(x)));
title('real part of image signal');
xlabel('n');
ylabel('re of Im(x)');
subplot(313);
plot(n, imag(fft(x)));
title('image part of image signal');
xlabel('n');
ylabel('Im of Im(x)');
Рисунок 3 – Real, image часть мнимого входного сигнала
figure;
subplot(311);
x = cos(n); % действительный чётный сигнал
plot(n,x,'x');
title('real even signal');
xlabel('n');
ylabel('Re(s)');
subplot(312);
plot(n, real(fft(x)));
title('real part of real even signal');
xlabel('n');
ylabel('Re of Re(x)');
subplot(313);