필터 지우기
필터 지우기

Save logsout variable to file after executing test cases with test manager

조회 수: 2 (최근 30일)
Hello,
I'm using the Simulink Test Manager GUI for creating and executing multiple test cases. After executing I want to do some post processing, plot my data and save the data to a file. Therefor the signal logging to the 'logsout' variable is activated in the simulink model and data format is set to 'Structure with time'. By executing the following code in the custom criteria section of the test case it is possible to access the logged signals and plot them. But how can I export the logged signals to a .mat file for later usage? There is no logsout variable in the workspace after executing one of the test cases..
[...]
subplot(4,2,1);
time=test.sltest_simout.get('logsout').get('force1').Values.Time;
data=test.sltest_simout.get('logsout').get('force1').Values.Data;
plot(time,data)
[...]

답변 (0개)

카테고리

Help CenterFile Exchange에서 Outputs에 대해 자세히 알아보기

제품


릴리스

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by