How to wrote theta as a matlab code
Ältere Kommentare anzeigen
How to wrote theta as matlab code
for example 2sintheta
Akzeptierte Antwort
Weitere Antworten (2)
James Tursa
am 19 Okt. 2017
Bearbeitet: James Tursa
am 19 Okt. 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
am 26 Jan. 2021
1 Stimme
Thetha=pi/4
Kategorien
Mehr zu Logical finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!