Borrar filtros
Borrar filtros

hello i want to make a sinusoidal graph please help

1 visualización (últimos 30 días)
Saleh
Saleh el 18 de Oct. de 2022
Editada: Kevin Holly el 18 de Oct. de 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

Respuesta aceptada

Kevin Holly
Kevin Holly el 18 de Oct. de 2022
Editada: Kevin Holly el 18 de Oct. de 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')

Más respuestas (0)

Categorías

Más información sobre Graph and Network Algorithms en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by