converting from radian to degree
3 次查看(过去 30 天)
显示 更早的评论
how to convert a (plot) in radian to degree,,,
2 个评论
Arco
2014-4-18
to convert from radian to degree just multiply with
180/pi
If that doesn't answer your question, could you please specicify the meaning of (plot)?
采纳的回答
Azzi Abdelmalek
2014-4-18
编辑:Azzi Abdelmalek
2014-4-18
That depends on what you want to convert to degrees
plot(x,y*180/pi)
or
plot(x*180/pi,y)
更多回答(1 个)
Image Analyst
2014-4-18
Have you considered working only in degrees? Then use the trig functions with d after them, like sind(), cosd(), atand(), atand2(), etc.
0 个评论
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!