answersLogoWhite

0

the equation that convert from cartesian to polar coordinates and vice versa

r = sqrt (x*x+y*y);

phi = atan2 (y, x);

x = r*cos (phi);

y = r*sin (phi);

User Avatar

Wiki User

13y ago

What else can I help you with?

Related Questions

Write a program to convert a 2 digit BCD number into hexadecimal number?

Write a program to convert a 2-digit BCD number into hexadecimal


2 Write a program to convert a 2-digit BCD number into hexadecimal?

WRITE A PROGRAM TO CONVERT A 2-DIGIT bcd NUMBER INTO HEXADECIMAL


Given three points in polar notation what are the polar coordinates of a point equidistant from the three given points and can this point be found without converting to Cartesian coordinates?

Technically, yes. But, the equations involved are complicated to the point that it would be a fraction of the difficulty of converting. Also, the equations are essentially the Cartesian equations with the conversions built in, so you might as well convert them to start with. However, if you insist on not converting, write out the entire process with all 4 points of interest in Cartesian coordinates. From beginning to end. Find the final equations needed and insert the conversion factors and simplify from there. To the best of my knowledge (and I did quite a bit of digging) there isn't a simply way of doing it. - Sorry.


How do you write a c program to convert binary to decimal by using while statement?

write a c++ program to convert binary number to decimal number by using while statement


How do you write program to convert meter to kilometer in c plus plus?

Divide it by 1000.


Write a Program to convert decimal number into hexadecimal no without using function and string?

This is not a question.


Write a C program to convert hexadecimal number into decimal number?

pongada punda vayanungala ..................


Write a program to convert stack into queue using c language?

In order to write a program to convert stack into queue using c language you must be able to identify the proper program. Having a special certification in programing will be beneficial as well to make sure you recognize the proper queues for the programs.


What is SAP give you the brief solution?

Write a program to convert a 2-digit BCD number into hexadecimal


How do you write a program in C to convert capital letters into small letters?

Use the tolower() function in the C standard library.


Write a c program to convert binary number to decimal number?

How is this a question? Sounds like you should do more of your homework offline.


How do you change source code into machine code?

A program called a compiler, or sometimes an assembler (depending on the programming language) does this for you. You write the source code, then invoke the program that will convert this into machine language.