com.apamax.matlab
Event EvaluateResponse


Validation of EvaluateRequest.
Member summary
 stringsessionID

The unique ID of the used session.
 stringmessageID

Shows the order in which the events are routed.
 stringoutput

The solution of the evaluated expression.
 sequence<string>outputLines

Matlab's output may contain "\n" sequences to indicate new lines. For example, "z = x + y" may produce "\nz =\n\n 30\n\n".
 booleansuccess

A value of false indicates that the session is not running or an internal error with the MATLAB plugin or engine. Note: this will be true even if MATLAB was not able to evaluate the expression.
 stringerror

If success = false, error will contain the error message.
 
Member detail

error

            string error
        
If success = false, error will contain the error message.

messageID

            string messageID
        
Shows the order in which the events are routed.

output

            string output
        
The solution of the evaluated expression.

outputLines

            sequence<stringoutputLines
        
Matlab's output may contain "\n" sequences to indicate new lines. For example, "z = x + y" may produce "\nz =\n\n 30\n\n".

The outputLines sequence represents a sequence of non-empty strings that constitute the output string. For example, for the output string of "\nz =\n\n 30\n\n", outputLines is ["z ="," 30"]. For the output string of "", outputLines is [].

sessionID

            string sessionID
        
The unique ID of the used session.

success

            boolean success
        
A value of false indicates that the session is not running or an internal error with the MATLAB plugin or engine. Note: this will be true even if MATLAB was not able to evaluate the expression.