Multiple sine periods with a specific fundamental frequency
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
I'm trying to make 5 periods of a SINE signal with fundamental frequency f=100Hz, sampled at frequency fs=20*f=2000Hz but unfortuately I don't know what is wrong.
%%Time specifications:
Fs = 20; % samples per second
dt = 1/Fs; % seconds per sample
StopTime = 0.16; % seconds
t = (0:dt:StopTime-dt)'; % seconds
%%Sine wave:
Fc = 2000; % hertz
x = sin(2*pi*Fc*t);
% Plot the signal versus time:
figure;
plot(t,x);
xlabel('time (in seconds)');
title('Signal versus Time');
zoom xon;
0 Kommentare
Antworten (1)
Daniel M
am 5 Okt. 2019
Bearbeitet: Daniel M
am 5 Okt. 2019
%%Time specifications:
Fc = 100; % fundamental
Fs = 20*Fc; % sampling rate
dt = 1/Fs; % sampling period
StopTime = 5/Fc; % num periods * length of a period
t = (0:dt:StopTime-dt)'; % seconds
%%Sine wave:
x = sin(2*pi*Fc*t);
% Plot the signal versus time:
figure;
plot(t,x);
xlabel('time (in seconds)');
title('Signal versus Time');
zoom xon
1 Kommentar
Siehe auch
Kategorien
Mehr zu Loops and Conditional Statements finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!