Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Inverse Cos 1

Status
Not open for further replies.

netwalker1

Programmer
Feb 5, 2000
1,241
EG
I want the command of the Inverse Cosine
Exp : Function = Cos ( 3Q )
so 3Q = FW( Funcion )

what is FW ?!!!!!

I want the function please,,,
 
From VB Help.
Code:
X must be in radians. "To convert degrees to radians, multiply degrees by pi/180."

Derived Math Functions

The following is a list of nonintrinsic math functions that can be derived from the intrinsic math functions:

Function Derived equivalents 
Inverse Cosine Arccos(X) = Atn(-X / Sqr(-X * X + 1)) + 2 * Atn(1)
============================================
Atn Function

Returns a Double specifying the arctangent of a number.

Syntax
Atn(number)

The required number argument is a Double or any valid numeric expression.

Remarks
The Atn function takes the ratio of two sides of a right triangle (number) and returns the corresponding angle in radians. The ratio is the length of the side opposite the angle divided by the length of the side adjacent to the angle.

The range of the result is -pi/2 to pi/2 radians.

To convert degrees to radians, multiply degrees by pi/180. To convert radians to degrees, multiply radians by 180/pi.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top