udfGetMfData()

Return data of a multiplier function.

Syntax

mfData = udfGetMfData( udfHd, mfName) ;

Type

AcuSolve User-Defined Function Global

Parameters

udfHd
The opaque handle (pointer) which was passed to the user function.
mfName (string)
Name of the multiplier function.

Return Value

mfData (real)
Value of the requested multiplier function.

Description

This routine returns the current value of the specified multiplier function. For example,
Real mfData ;
...
mfData = udfGetMfData( udfHd, "my mult func" ) ;

Errors

  • This routine expects a valid udfHd.
  • mfName must be a valid name.