Command:

getMethod (  
int maxchar,
char* name
)

What:

Retrieves the name of the method in use

Parameters:

maxChar
[int]
maximum number of characters to be copied.
name
[char*]
output parameter that will contain the name of the method in use. This parameter is not necessary in Matlab

Return:

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

Warnings:

The Matlab call requires only the parameter maxChar since the memory for the result is allocated in the Matlab environment

Examples:


method_set=getMethod(50)

this command in Matlab returns in the variable method_set a string containing the name of the statistical method set. The parameter maxChar is set to 50 to be sure that the longest method name will be contained.

All Method Commands: