Borrar filtros
Borrar filtros

how can I plot this equation ?

1 visualización (últimos 30 días)
Ahmed
Ahmed el 29 de Oct. de 2013
Editada: sixwwwwww el 29 de Oct. de 2013
how can I plot this :
M = -0.5 Lgo + Lg2 cos(2theta-120)
considering Lgo,Lg2 are constants

Respuestas (1)

sixwwwwww
sixwwwwww el 29 de Oct. de 2013
Editada: sixwwwwww el 29 de Oct. de 2013
Dear Ahmed, here is the code:
Lgo = 1; % constant value for Lgo
Lg2 = 1; % constant value for Lg2
theta = -pi:0.01:pi; % time series -pi to pi
M = -0.5 * Lgo + Lg2 * cos(2 * theta - 120);
plot(theta, M) % plot of M vs. theta
I hope it helps. Good luck!

Categorías

Más información sobre 2-D and 3-D Plots 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