Event summary |
---|
CloseSessionRequest | Closes a MATLAB process. Uses Matlab API function engClose. |
CloseSessionResponse | Validation of CloseSessionRequest. |
EvaluateRequest | Evaluates an expression for the MATLAB engine session and returns textual output from evaluating the expression (including possible error messages). Uses Matlab API function engEvalString. |
EvaluateResponse | Validation of EvaluateRequest. |
GetFloatRequest | Gets a float variable from MATLAB engine workspace. Uses Matlab API function engGetVariable. NOTE: Maximum name size is currently 256 characters. A change would require recompiling the plug-in. |
GetFloatResponse | Validation of GetFloatRequest. |
GetFloatSequenceRequest | Gets a float sequence variable from MATLAB engine workspace. Uses Matlab API function engGetVariable. NOTE: maximum name size is currently 256 characters. A change would require recompiling the plug-in. |
GetFloatSequenceResponse | Validation of GetFloatSequenceRequest. |
GetMatrixRequest | Gets a two-dimensional matrix variable from MATLAB engine workspace. Uses Matlab API function engGetVariable. NOTE: maximum name size is currently 256 characters. A change would require recompiling the plug-in. |
GetMatrixResponse | Validation of GetMatrixRequest. |
GetVisibleRequest | Returns the current visibility setting for MATLAB engine session. Uses Matlab API function engGetVisible. |
GetVisibleResponse | Validation of GetVisibleRequest. |
MatlabManager | This MATLAB plug-in allows the user to connect to and use the MATLAB Engine. |
MatlabServiceConfig | This sets up the debug channel for the MATLAB engine. |
OpenSessionRequest | Starts a MATLAB process for the purpose of using MATLAB as a computational engine. Uses Matlab API function engOpen if singleUse = false and engOpenSingleUse if singleUse = true. Single Use is unavailable on Linux. |
OpenSessionResponse | Validation of OpenSessionRequest. |
PutFloatRequest | Puts a float variable into MATLAB engine workspace. Uses Matlab API function engPutVariable. |
PutFloatResponse | Validation of PutFloatRequest. |
PutFloatSequenceRequest | Puts a float sequence variable into MATLAB engine workspace. Uses Matlab API function engPutVariable. NOTE: Maximum name size is currently 256 characters. A change would require recompiling the plug-in. |
PutFloatSequenceResponse | Validation of PutFloatSequenceRequest. |
PutMatrixRequest | Puts a two-dimensional matrix variable into MATLAB engine workspace. Uses Matlab API function engEval. NOTE: maximum name size is currently 256 characters. A change would require recompiling the plug-in. |
PutMatrixResponse | Validation of PutMatrixRequest. |
SetVisibleRequest | Makes the window for the MATLAB engine session either visible or invisible on the Windows desktop. Uses Matlab API function engSetVisible. |
SetVisibleResponse | Validation of SetVisibleRequest. |