Class: Simulink.SimulationOutput
Package: Simulink
Access and display output variable names of simulation
simOutVar
= simOut.who
returns
the names of all simulation output variables, including workspace
variables.simOutVar
= simOut.who
|
Character vector array of output variable names of simulation. |
Simulate vdp
and store the character vector
values of the output variable names.
simOut = sim('vdp','SimulationMode','rapid','AbsTol','1e-5',... 'SaveState','on','StateSaveName','xoutNew',... 'SaveOutput','on','OutputSaveName','youtNew'); simOutVar = simOut.who
A simpler alternative is to use dot notation. For example, to access data for the
xoutNew
output variable, you can use this
command:
simOut.xoutNew