How to Graph Polar Coordinates in ExcelID: Q67096
|
To graph polar coordinates in Microsoft Excel, you must convert the coordinates to X and Y values and create the chart using the new values.
Polar coordinates consist of two values, radius and theta. Theta is in
radians. For example the point (1,pi/2) has a radius of 1 and a theta value
of pi/2 (equals 90 degrees). To convert to the X and Y values, use the
following formulas:
X=r*cos(theta)
Y=r*sin(theta)
A1: Radius B1: Theta
A2: 1 B2: =PI()/2
A3: 2 B3: =PI()
To plot these, enter the following conversion formulas:
C1: X-Value D1: Y-Value
C2: =A2*COS(B2) D2: =A2*SIN(B2)
C3: =A3*COS(B3) D3: =A3*SIN(B3)
Evaluating these formulas returns the correct X and Y coordinates for the
corresponding polar coordinates:
(1,pi/2) converts to (0,1)
(2,pi) converts to (-2,0)
Additional query words: 2.0 2.00 2.01 2.1 2.10 2.2 2.20 2.21 3.0
Keywords :
Version :
Platform :
Issue type :
Last Reviewed: March 21, 1999