How do I use the sin(), cos(), and tan() functions in my iOS application? When I use them I don't get the correct value. Example:
double value=sin(90);
I got value: 0.893997 but expected value: 1. How can I fix this?
|
How do I use the
I got value: 0.893997 but expected value: 1. How can I fix this? |
||||
|
|
|
The problem is that it's taking the sine of 90 radians, not degrees. Try |
|||||||
|