My matlab somehow in degree mode

24 次查看(过去 30 天)
I was trying to write some codes for signal processing. Somehow my sin,cos...commands are in degree mode. And I think those functions are somehow malfunctioned. Could anyone help me fix it?

采纳的回答

Star Strider
Star Strider 2014-9-22
It is not in ‘degree mode’. The sin(pi)=0, or as close as MATLAB can get to it, that in this instance is approximately eps.
Compare:
s_rad = sin(pi)
s_deg = sind(pi)
produce:
s_rad =
122.4647e-018
s_deg =
54.8037e-003

更多回答(1 个)

Muthu Annamalai
Muthu Annamalai 2014-9-22
Have you tried the functions,
sind(180)
cosd(90)
etc ?
Also the MAP toolbox has the functions deg2rad and rad2deg
  1 个评论
Qianliang
Qianliang 2014-9-22
Thanks, but I am not looking for alternative code. I just want to fix it.

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Phylogenetic Analysis 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by