Thanks everyone :-)
Now I only need to know what csc() means ...
Regarding atan2, I found this function that will work in visual basic:
Public Function Atan2(ByVal y As Double, ByVal x As Double) _
As Double
Dim theta As Double
If (Abs(x) < 0.0000001) Then
If (Abs(y) < 0.0000001)...
I'm trying to apply a function, in MS Excel, posted on the internet from mathcad.
Somewhere it says that "value=atan2(value1, value2)"
I don't get it...
It can't mean atan(atan(value1, value))
What's with the "(value1, value2)"??? How do I calculate that???
Any help is highly appreciated :o)