result
クラス: matlab.engine.FutureResult
名前空間: matlab.engine
Python からの MATLAB 関数の非同期呼び出しの結果
構文
ret = FutureResult.result(timeout=None)
入力引数
timeout
— タイムアウト値 (秒)
None
(既定値) | Python float
関数呼び出しの結果を待つタイムアウトの値 (秒)。Python データ型 float
で指定します。timeout = None
の場合、関数 FutureResult.result
は関数呼び出しが完了するまで待ってから結果を返します。
出力引数
ret
— 非同期関数呼び出しの結果
Python オブジェクト
非同期関数呼び出しの結果。MATLAB 関数の呼び出しの実際の出力引数である Python オブジェクトとして返されます。
例
非同期呼び出しからの MATLAB 出力引数の取得
MATLAB 関数 sqrt
を Python から呼び出します。background
を True
に設定して FutureResult
オブジェクトから平方根を取得します。
import matlab.engine
eng = matlab.engine.start_matlab()
future = eng.sqrt(4.0,background=True)
ret = future.result()
print(ret)
2.0
MATLAB コマンド
次の MATLAB コマンドに対応するリンクがクリックされました。
コマンドを MATLAB コマンド ウィンドウに入力して実行してください。Web ブラウザーは MATLAB コマンドをサポートしていません。
Select a Web Site
Choose a web site to get translated content where available and see local events and offers. Based on your location, we recommend that you select: .
You can also select a web site from the following list:
How to Get Best Site Performance
Select the China site (in Chinese or English) for best site performance. Other MathWorks country sites are not optimized for visits from your location.
Americas
- América Latina (Español)
- Canada (English)
- United States (English)
Europe
- Belgium (English)
- Denmark (English)
- Deutschland (Deutsch)
- España (Español)
- Finland (English)
- France (Français)
- Ireland (English)
- Italia (Italiano)
- Luxembourg (English)
- Netherlands (English)
- Norway (English)
- Österreich (Deutsch)
- Portugal (English)
- Sweden (English)
- Switzerland
- United Kingdom (English)