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

1 visualización (últimos 30 días)
nirma priatama
nirma priatama el 11 de Mzo. de 2014
Respondida: Sagie el 11 de Mzo. de 2014
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

Respuestas (1)

Sagie
Sagie el 11 de Mzo. de 2014

Categorías

Más información sobre Fourier Analysis and Filtering en Help Center y File Exchange.

Etiquetas

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by