Arcsin()

Generic trig functions.

ARCSIN(x) x=Generic Arcsine in radians.

example:

	# print result in degrees
	y = Arcsin(0.5) * 180 / $pi
	#take the arcsine 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 = Arcsin(a)

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

Arcsin()

These function returns an Arcsine 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.