Package matlabcontrol
Interface MatlabProxy.MatlabThreadCallable<T>
-
- Type Parameters:
T- type of the data returned by the callable
- Enclosing class:
- MatlabProxy
public static interface MatlabProxy.MatlabThreadCallable<T>Uninterrupted block of computation performed in MATLAB.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Tcall(MatlabProxy.MatlabThreadProxy proxy)Performs the computation in MATLAB.
-
-
-
Method Detail
-
call
T call(MatlabProxy.MatlabThreadProxy proxy) throws MatlabInvocationException
Performs the computation in MATLAB. Theproxyprovided will invoke its methods directly on MATLAB's main thread without delay. Thisproxyshould be used to interact with MATLAB, not aMatlabProxy(or any class delegating to it).- Parameters:
proxy-- Returns:
- result of the computation
- Throws:
MatlabInvocationException
-
-