Simulinkモデルを実行した際の計算所要時間の表示方法 a a a a
74 ビュー (過去 30 日間)
古いコメントを表示
takagi satoshi
2015 年 5 月 19 日
回答済み: Atsushi Matsumoto
2016 年 9 月 13 日
計算所要時間を表示させる方法はありますでしょうか。 ファイルに出力でなくても、見て確認できれば構いません。
1 件のコメント
Walter Roberson
2015 年 5 月 19 日
Approximate translation is "Is there a way to display the computation time required would either. Even without the output to a file, it does not matter if you can determine by looking ."
採用された回答
Atsushi Matsumoto
2016 年 9 月 13 日
Simulinkモデルのシミュレーションの開始から終了までの時間を測定したいという意味で間違いないでしょうか?
MATLABコマンドで、tic, tocを使うと時間測定が可能です。また、simコマンドでSimulinkモデルを実行することが可能です。 これらを組み合わせて、
> tic, sim('modelname'), toc
で測定可能です。
カレントのモデル名はコマンドgcsでも取得できますので、開いているモデルに対する時間測定は以下のコマンドでも取得できます。
> tic, sim(gcs), toc
0 件のコメント
その他の回答 (0 件)
参考
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!