|
|
|
|
|
mlInitialize (Function) In french: mlInitialise Initializes a new independent MATLAB session with an empty workspace in order to run functions. During this initialization, the shell of MATLAB is displayed during a few seconds. Note: This function requires MATLAB version 7.3 or higher. gnIdSession is int
gnIdSession = mlInitialize()
IF gnIdSession = -1 THEN
Error(ErrorInfo(errFullDetails))
ELSE
LIB_SessionML = "MATLAB initialisé"
END
Syntax
<Result> = mlInitialize()
<Result>: Integer - Identifier of MATLAB session. This identifier will be used by the functions for MATLAB management.
- -1 if an error occurred. To get more details on the error, use ErrorInfo with the errMessage constant.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|