Sin()

Generic trig function.

SIN(x) x=Generic Sin in radians.

example:

	# take sin of angle in degrees
	y = sin(40.0 * 180.0/$PI)
	#take the sin 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 = Sin(a)

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

Sin()

These function calculates the sine of an angle in radians.

Parameters:

X (Generic)

A single number, array or workspace containing the values to which the 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)

Sine of the angle(s) given in radians.