what is the difference between cos(8) and cosd(8)

24 次查看(过去 30 天)
I write an equation related to using cosine, sine, tangent but everytime I run mathlab show me a negative result but when I use calculator it is a positive and giving me correct number. so after a little bit digging and I find that it has something to do with cos, sin, tan, cosd, sind, tand what the difference having d or withouth d?
cos(8)
cosd(8)
sin(20)
sind(20)
tan(30)
tand(30)

采纳的回答

Voss
Voss 2022-2-22
编辑:Voss 2022-2-22
With the d, the input angle is interpreted as being in degrees. Without the d, it's in radians.
Example, these two commands will produce the same output:
cos(pi/4) % pi/4 radians = 45 degrees
ans = 0.7071
cosd(45)
ans = 0.7071

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Install Products 的更多信息

标签

产品


版本

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by