Command:

getMethodParams (  
int maxNumPar,
long* params
)

What:

Retrieves the parameters of the method in use

Parameters:

maxNumPar
[integer]
maximum number of parameters to be stored in params
params
[array of long]
array where the result of the call should be stored. Not necessary in Matlab

Return:

error_code [int]: 1 if the operation has occurred without errors, 0 if an error has occurred

Examples:


method_params=getMethodParams(3)

this command in Matlab returns in the variable method_params the three parameters associated with the current method

All Method Commands: