aSin( ) Function

Description:
  The aSin() function returns the angle whose trignometric sine value is nValue, where nValue is in radians.

Syntax:
  retval = aSin( nValue )

Parameters:
  numeric: nValue Sine value in radians to get angle of.
  numeric: retval The angle whose trignometric sine is nValue.

Platforms:
  Windows, DOS, Internet Active Pages



Example:

	local var1, retval                     	// Variables				
	var1 = prompt( "Test Number", "", 5 )	// Obtain Input Data
	retval = asin( var1 )			// Returns the arc sine of var1

	println( retval )			// Print results to screen

  

(c) 2000-2001 by West Coast Web Adventures, Inc., All Rights Reserved