I followed the instructions on this blog.
When the simulations have finished, how do I observe the results from the runs?

 채택된 답변

David Amor
David Amor 2015년 12월 9일

1 개 추천

Two steps:
(1) Add
'SaveState','on'
To the input parameters of "sim" such that the states of the system will be logged.
simout(i) = sim(mdl,'SimulationMode','rapid',...
'RapidAcceleratorUpToDateCheck','off', ...
'RapidAcceleratorParameterSets',paramSet(i), ...
'SaveState','on');
(2) Access the saved states of the i-th simulation by
simout(i).get('xout')

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 Configure and View Diagnostics에 대해 자세히 알아보기

질문:

2015년 12월 8일

답변:

2015년 12월 9일

Community Treasure Hunt

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

Start Hunting!

Translated by