How can I make the FFT transform from this sine wave with noise code?

조회 수: 1 (최근 30일)
nirma priatama
nirma priatama 2014년 3월 11일
답변: Sagie 2014년 3월 11일
Hi, I want to make FFT transform from this sine wave with noise code,
Fs = 8000;
dt = 1/Fs;
StopTime = 0.06;
t = (0:dt:StopTime-dt);
A = 4;
Fc = 60;
snr = 10;
x = A*sin(2*pi*Fc*t);
y = awgn(x,snr);
plot(t,y);
xlabel('time (in seconds)');
title('Signal versus Time');
Anyone could help? Thank You

답변 (1개)

Sagie
Sagie 2014년 3월 11일

카테고리

Help CenterFile Exchange에서 Fourier Analysis and Filtering에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by