My matlab somehow in degree mode
19 views (last 30 days)
Show older comments
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?
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/145482/image.png)
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/145483/image.png)
0 Comments
Accepted Answer
Star Strider
on 22 Sep 2014
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
More Answers (1)
Muthu Annamalai
on 22 Sep 2014
Have you tried the functions,
sind(180)
cosd(90)
etc ?
Also the MAP toolbox has the functions deg2rad and rad2deg
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!