Workspace_exp()

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

WORKSPACE_EXP() w1=Workspace exp(w)

Workspace_exp

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

PROCEDURE workspace_exp; PARAMETERS w1=workspace; RESULT wres
	wres = w1
	wres.y = exp(w1.y)
	wres.e = w1.e * wres.y
ENDPROCEDURE