필터 지우기
필터 지우기

Simulinkモデ​ルを実行した際の計算​所要時間の表示方法 a a a a

조회 수: 61 (최근 30일)
takagi satoshi
takagi satoshi 2015년 5월 19일
답변: Atsushi Matsumoto 2016년 9월 13일
計算所要時間を表示させる方法はありますでしょうか。 ファイルに出力でなくても、見て確認できれば構いません。
  댓글 수: 1
Walter Roberson
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
Atsushi Matsumoto 2016년 9월 13일
Simulinkモデルのシミュレーションの開始から終了までの時間を測定したいという意味で間違いないでしょうか?
MATLABコマンドで、tic, tocを使うと時間測定が可能です。また、simコマンドでSimulinkモデルを実行することが可能です。 これらを組み合わせて、
> tic, sim('modelname'), toc
で測定可能です。
カレントのモデル名はコマンドgcsでも取得できますので、開いているモデルに対する時間測定は以下のコマンドでも取得できます。
> tic, sim(gcs), toc

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Verification, Validation, and Test에 대해 자세히 알아보기

제품

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by