Workspace_arcsin()

Called by the generic function Asin(x) when x is of type Workspace.

WORKSPACE_ARCSIN() w1=Workspace asin(w)

Workspace_arcsin

The default procedure definition and the calculation of errors for this procedure is shown below.

PROCEDURE workspace_arcsin; PARAMETERS w1=workspace; RESULT wres
	wres = w1
	wres.y = arcsin(w1.y)
	wres.e = w1.e / sqrt( 1 - w1.y^2 )
ENDPROCEDURE