hello i want to make a sinusoidal graph please help

1 次查看(过去 30 天)
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

采纳的回答

Kevin Holly
Kevin Holly 2022-10-18
编辑:Kevin Holly 2022-10-18
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')

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Graph and Network Algorithms 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by