Filter löschen
Filter löschen

hello i want to make a sinusoidal graph please help

1 Ansicht (letzte 30 Tage)
Saleh
Saleh am 18 Okt. 2022
Bearbeitet: Kevin Holly am 18 Okt. 2022
hello i want to make a sinusoidal graph, with a title “Sinusoidal Graph”. The equation for the sinusoidal graph is and this must be plotted
from -pi/2 to pi/2: X = 6cos(2π*20t) + 2sin(2π*10t)
so,
title('Sinusoidal Graph')
plot(-pi/2 to pi/2:1000)
X = 6cos(2π*20t) + 2sin(2π*10t)
is it like this please help

Akzeptierte Antwort

Kevin Holly
Kevin Holly am 18 Okt. 2022
Bearbeitet: Kevin Holly am 18 Okt. 2022
t=-pi/2:(pi/2)/1000:pi/2;
X = 6*cos(2*pi*20*t) + 2*sin(2*pi*10*t);
plot(t,X)
title('Sinusoidal Graph')
or
figure
t=linspace(-pi/2,pi/2,1000);
X = 6*cos(2*pi*20*t) + 2*sin(2*pi*10*t);
plot(t,X)
title('Sinusoidal Graph')

Weitere Antworten (0)

Kategorien

Mehr zu Graph and Network Algorithms 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