convert value from radian form to degree form
조회 수: 2 (최근 30일)
이전 댓글 표시
hi i wanna convert numbers from degree form to radian form. how can i do that?tnx
댓글 수: 0
채택된 답변
추가 답변 (1개)
James Tursa
2021년 11월 25일
편집: James Tursa
2021년 11월 25일
If you have values, then just
number_in_radians = number_in_degrees * (pi/180);
If you are working with trig functions, note that there are both degree and radian versions of these functions. E.g.,
sin( ), sind( ), asin( ), asind( ), etc.
댓글 수: 0
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!