직교좌표-극좌표 변환

Jmnote (토론 | 기여)님의 2017년 1월 11일 (수) 17:26 판

1 개요

rectangular and polar coordinates
직교좌표-극좌표 변환


 

  • 극좌표 (r, θ) → 직교좌표 (x, y)
[math]\displaystyle{ x=r\cos θ }[/math]
[math]\displaystyle{ y=r\sin θ }[/math]
  • 직교좌표 (x, y) → 극좌표 (r, θ)
[math]\displaystyle{ r = \sqrt {x^{2}+y^{2}} }[/math]
[math]\displaystyle{ θ =\operatorname {atan2} (y,x) = \tan^{-1}(y/x) }[/math]

2 같이 보기

3 참고 자료

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}