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!