Workspace_log()

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

WORKSPACE_LOG() w1=Workspace log(w)

Workspace_log

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

PROCEDURE workspace_log; PARAMETERS w1=workspace; RESULT wres
	wres = w1
	wres.y = log(w1.y)
	wres.e = w1.e/(w1.y * ln(10.0))
ENDPROCEDURE