Workspace_sin()

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

WORKSPACE_SIN() w1=Workspace sin(w)

Workspace_sin

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

PROCEDURE workspace_sin; PARAMETERS w1=workspace; RESULT wres
	wres = w1
	wres.y = sin(w1.y)
	wres.e = abs( cos(w1.y) * w1.e )
ENDPROCEDURE