Azzera filtri
Azzera filtri

hello i want to make a sinusoidal graph please help

1 visualizzazione (ultimi 30 giorni)
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

Risposta accettata

Kevin Holly
Kevin Holly il 18 Ott 2022
Modificato: Kevin Holly il 18 Ott 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')

Più risposte (0)

Categorie

Scopri di più su Graph and Network Algorithms in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by