How to determine the x & y coordinates based on angles for circle?

G

Guest

Does anyone know any excel function on how to determine the x & y coordinates
based on angles for circle?
For example, the radius of circle is 1,
if the angle is 0 degree, the the coordinate is (1,0),
if the angle is 90 degree, the the coordinate is (0,1),
if the angle is 60 degree, does anyone have any suggestion on how to
determine the coordinate?
Thank for any suggestions
Eric
 
G

Guest

for radius=r, angle=t, center=j,r

x=r * cos(t)+j
y=r * sin(t) +k

Now you have learned nothing from the assignment, how's that going to work
out for you?
 
G

Guest

Thank you very much for your suggestions
What if the circle is distorted, and became an ellipse, such as following
equation
(X*X)/(2*2)+(Y*Y)/(1*1)=1
Do you have any suggestions on how to locate the x & y coordinates based on
the angle for ellipse? If I can find the coordinate for ellipse, then I can
find the coordinate for circle, since the form of ellipse includes circle.
Do you have any suggestions?
Thank you for any suggestions
Eric
 
D

Dana DeLouis

Just another option: However, the engineering funtions make this a little
hard to do with Excel. Don't forget to convert Degrees to Radians. Radius
here is 1.

[x] =IMREAL(IMEXP(COMPLEX(LN(1),RADIANS(A1))))

[y] =(IMAGINARY(IMEXP(COMPLEX(LN(1),RADIANS(A1)))))
 
Joined
Aug 7, 2007
Messages
1
Reaction score
0
Dana or anyone. Do you have a way to get EXCEL to give me X,Y coordinates to show up as compass directions. i.e. 0 is up, 90 is right, 180 down and 270 left instead of the solution above with 0 to right and 90 above.


Thanks in advance.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top