How to wrote theta as a matlab code
Mostrar comentarios más antiguos
How to wrote theta as matlab code
for example 2sintheta
Respuesta aceptada
Más respuestas (2)
James Tursa
el 19 de Oct. de 2017
Editada: James Tursa
el 19 de Oct. de 2017
E.g.,
theta = pi/4;
result = 2*sin(theta); % <-- if theta is in radians
theta = 45;
result = 2*sind(theta); % <-- if theta is in degrees
RAVI Kumar
el 26 de En. de 2021
1 voto
Thetha=pi/4
Categorías
Más información sobre Logical en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!