mclIsMCRInitialized

Determine if MATLAB Runtime has been properly initialized

Synopsis

bool mclIsMCRInitialized()

Description

Use mclIsMCRInitialized() to determine whether or not the MATLAB® Runtime has been properly initialized. Returns

  • true if MATLAB Runtime is already initialized

  • false if the MATLAB Runtime is not initialized

    Note:   This method can only be called once the MATLAB Runtime proxy library has been initiated.

Examples

printf("MCR initialized : %d\n", mclIsMCRInitialized());
Was this topic helpful?