Uses of Class
matlabcontrol.MatlabInvocationException

Packages that use MatlabInvocationException
matlabcontrol Contains the core functionality to interact with MATLAB. 
matlabcontrol.extensions Extensions which enhance MatlabProxy's capabilities. 
 

Uses of MatlabInvocationException in matlabcontrol
 

Methods in matlabcontrol that throw MatlabInvocationException
 T MatlabProxy.MatlabThreadCallable.call(MatlabProxy.MatlabThreadProxy proxy)
          Performs the computation in MATLAB.
 void LoggingMatlabProxy.eval(java.lang.String command)
           
 void MatlabOperations.eval(java.lang.String command)
          Evaluates a command in MATLAB.
 void LoggingMatlabProxy.exit()
           
abstract  void MatlabProxy.exit()
          Exits MATLAB.
 void LoggingMatlabProxy.feval(java.lang.String functionName, java.lang.Object... args)
           
 void MatlabOperations.feval(java.lang.String functionName, java.lang.Object... args)
          Calls a MATLAB function with the name functionName, returning the result.
 java.lang.Object LoggingMatlabProxy.getVariable(java.lang.String variableName)
           
 java.lang.Object MatlabOperations.getVariable(java.lang.String variableName)
          Gets the value of variableName in MATLAB.
abstract
<T> T
MatlabProxy.invokeAndWait(MatlabProxy.MatlabThreadCallable<T> callable)
          Runs the callable on MATLAB's main thread and waits for it to return its result.
<U> U
LoggingMatlabProxy.invokeAndWait(MatlabProxy.MatlabThreadCallable<U> callable)
           
 java.lang.Object[] LoggingMatlabProxy.returningEval(java.lang.String command, int nargout)
           
 java.lang.Object[] MatlabOperations.returningEval(java.lang.String command, int nargout)
          Evaluates a command in MATLAB, returning the result.
 java.lang.Object[] LoggingMatlabProxy.returningFeval(java.lang.String functionName, int nargout, java.lang.Object... args)
           
 java.lang.Object[] MatlabOperations.returningFeval(java.lang.String functionName, int nargout, java.lang.Object... args)
          Calls a MATLAB function with the name functionName, returning the result.
 void LoggingMatlabProxy.setVariable(java.lang.String variableName, java.lang.Object value)
           
 void MatlabOperations.setVariable(java.lang.String variableName, java.lang.Object value)
          Sets variableName to value in MATLAB, creating the variable if it does not yet exist.
 

Uses of MatlabInvocationException in matlabcontrol.extensions
 

Methods in matlabcontrol.extensions with parameters of type MatlabInvocationException
 void CallbackMatlabProxy.MatlabDataCallback.invocationFailed(MatlabInvocationException e)
          Called when the method failed.
 void CallbackMatlabProxy.MatlabCallback.invocationFailed(MatlabInvocationException e)
          Called when the method failed.
 

Methods in matlabcontrol.extensions that throw MatlabInvocationException
 void MatlabProxyLogger.eval(java.lang.String command)
          Deprecated. Delegates to the proxy; logs the interaction.
 void MatlabProxyLogger.exit()
          Deprecated. Delegates to the proxy; logs the interaction.
 void MatlabProxyLogger.feval(java.lang.String functionName, java.lang.Object... args)
          Deprecated. Delegates to the proxy; logs the interaction.
 MatlabNumericArray MatlabTypeConverter.getNumericArray(java.lang.String arrayName)
          Retrieves the MATLAB numeric array with the variable name arrayName.
 java.lang.Object MatlabProxyLogger.getVariable(java.lang.String variableName)
          Deprecated. Delegates to the proxy; logs the interaction.
<U> U
MatlabProxyLogger.invokeAndWait(MatlabProxy.MatlabThreadCallable<U> callable)
          Deprecated. Delegates to the proxy; logs the interaction.
 java.lang.Object[] MatlabProxyLogger.returningEval(java.lang.String command, int nargout)
          Deprecated. Delegates to the proxy; logs the interaction.
 java.lang.Object[] MatlabProxyLogger.returningFeval(java.lang.String functionName, int nargout, java.lang.Object... args)
          Deprecated. Delegates to the proxy; logs the interaction.
 void MatlabTypeConverter.setNumericArray(java.lang.String arrayName, MatlabNumericArray array)
          Stores the array in MATLAB with the variable name arrayName.
 void MatlabProxyLogger.setVariable(java.lang.String variableName, java.lang.Object value)
          Deprecated. Delegates to the proxy; logs the interaction.