Arccos()

Generic trig functions.

ARCCOS(x) x=Generic Arccosine in radians.

example:

	# print result in degrees
	y = Arccos(0.5) * 180 / $pi
	#take the arccos of all elements in an array
	a = Dimensions(10)	# create a 10 element array
	fill a 0.5		# Set all elements to 0.5
	y = Arccos(a)

Note: These functions can be applied to all numeric types (including arrays & workspaces).

Arccos()

These function returns an Arccosine value in radians.

Parameters:

X (Generic)

A single number, array or workspace containing the values to which the appropriate trig function is to be applied. Angles must be specified in radians. Undefined values passed to this function will be returned as an undefined result.

RESULT = (Generic)

Angle(s) in radians.