Borrar filtros
Borrar filtros

How to change number of cycles by changing frequency to plot sine wave?

2 visualizaciones (últimos 30 días)
Shan Ali
Shan Ali el 1 de Oct. de 2023
Respondida: 檮杌 el 1 de Oct. de 2023
x=sin(2*Pi*f*t)

Respuestas (1)

檮杌
檮杌 el 1 de Oct. de 2023
t = linspace(0, 1, 100);
f1 = 1; % Hz
f2 = 2; % Hz
x1 = sin(2*pi*f1*t);
x2 = sin(2*pi*f2*t);
plot(t, x1);
hold on;
plot(t, x2);
xlabel("time(s)");
ylabel("Amplitude");
legend("1 Hz", "2 Hz")

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by