How to wrote theta as a matlab code
Afficher commentaires plus anciens
How to wrote theta as matlab code
for example 2sintheta
Réponse acceptée
Plus de réponses (2)
James Tursa
le 19 Oct 2017
Modifié(e) : James Tursa
le 19 Oct 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
le 26 Jan 2021
1 vote
Thetha=pi/4
Catégories
En savoir plus sur Logical dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!