Package: matlab.engine
Results of asynchronous call to MATLAB function stored in Python object
The FutureResult
class stores results of an asynchronous
call to a MATLAB® function in a Python® object.
The MATLAB Engine for Python creates a FutureResult
object
when a MATLAB function is called asynchronously. There is no
need to call matlab.engine.FutureResult()
to create FutureResult
objects
of your own.
cancel | Cancel asynchronous call to MATLAB function from Python |
cancelled | Cancellation status of asynchronous call to MATLAB function from Python |
done | Completion status of asynchronous call to MATLAB function from Python |
result | Result of asynchronous call to MATLAB function from Python |
SyntaxError |
Python exception, syntax error in function call |
TypeError |
Python exception, data type of output argument not supported |
matlab.engine.CancelledError | MATLAB engine cannot cancel function call |
matlab.engine.InterruptedError | Function call interrupted |
matlab.engine.MatlabExecutionError | Function call fails to execute |
matlab.engine.RejectedExecutionError | Engine terminated |
matlab.engine.TimeoutError | Result cannot be returned within the timeout period |