simulink plot and compare

1 次查看(过去 30 天)
Eom
Eom 2024-4-2
i use autonomous-emergency-braking-with-sensor-fusion.
and i use sim("AEBTestBench"); % Simulate to end of scenario
helperPlotAEBResults(logsout,scenarioFcnName);
this code to plot.
i want change parameter and compare before change parameter and after change parameter in plot.
How can i compare two graphs (like matlab hold on)

回答(1 个)

Angelo Yeo
Angelo Yeo 2024-4-2
编辑:Angelo Yeo 2024-4-2
(1) I can see you are working with the example below.
(2) The plot itself is complicated and it would be hard to compare by overlapping signals in the same figure. In my humble opinion, it would be better (or may be recommended) to use different figures to compare the result. This is exactly how it is done in the example as well. The author uses scenario names to set up environment and plot results in new figures. For example,
helperSLAEBSetup(scenarioFcnName="scenario_25_AEB_PedestrianTurning_Nearside_10kph");
sim("AEBTestBench");
helperPlotAEBResults(logsout,scenarioFcnName);
and
helperSLAEBSetup(scenarioFcnName="scenario_23_AEB_PedestrianChild_Nearside_50width");
sim("AEBTestBench");
helperPlotAEBResults(logsout,scenarioFcnName);
(3) Another way is to use the result logs called "logsout". You can keep them by parameters for comparison.
Hope this helps.

类别

Help CenterFile Exchange 中查找有关 Simulink 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by