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

3 Ansichten (letzte 30 Tage)
Shan Ali
Shan Ali am 1 Okt. 2023
Beantwortet: 檮杌 am 1 Okt. 2023
x=sin(2*Pi*f*t)

Antworten (1)

檮杌
檮杌 am 1 Okt. 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")

Kategorien

Mehr zu Mathematics 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!

Translated by