HELP FOR PROJECT PLEASE

1 回表示 (過去 30 日間)
ghaddar karim
ghaddar karim 2020 年 5 月 4 日
回答済み: Image Analyst 2020 年 5 月 4 日
hello guys, here i am drawing the Fourier transform of a cos(2*pi*t) but the scale is too big for the figure how can i see the exact form of the graph i apply ylim but it does not show exactly any help please?

採用された回答

Image Analyst
Image Analyst 2020 年 5 月 4 日
t = linspace(-3*pi, 3*pi, 1024);
y = cos(2*pi*t);
subplot(3, 1, 1);
plot(t, y, 'b-');
grid on;
title('Original Signal');
% Take FFT
ft = fft(y);
subplot(3, 1, 2);
yft = real(ft);
plot(fftshift(yft), 'b-');
grid on;
title('Real Part of Fourier Transform Signal');
xlim([1, length(t)]);
subplot(3, 1, 3);
semilogy(fftshift(yft), 'b-');
grid on;
title('Real Part of Fourier Transform Signal, Log Plot');
% xlim([1, length(t)]);

その他の回答 (1 件)

Mirlan Karimov
Mirlan Karimov 2020 年 5 月 4 日
編集済み: Mirlan Karimov 2020 年 5 月 4 日
use logarithmic scale in plotting?
  1 件のコメント
ghaddar karim
ghaddar karim 2020 年 5 月 4 日
how do i do that?

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeDiscrete Fourier and Cosine Transforms についてさらに検索

タグ

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by