find

Class: Simulink.SimulationOutput
Package: Simulink

Access and display values of simulation results

Syntax


output = simOut.find('VarName')

Description

output = simOut.find('VarName') accepts one variable name. Specify VarName inside single quotes.

Input Arguments

VarName

Name of logged variable for which you seek values.

Output Arguments

Value

Value of the logged variable name specified in input.

Examples

Simulate vdp and store the values of the variable youtNew in yout.

simOut = sim('vdp','SimulationMode','rapid','AbsTol','1e-5',...
         'SaveState','on','StateSaveName','xoutNew',...
         'SaveOutput','on','OutputSaveName','youtNew');
yout = simOut.find('youtNew')

Alternatives

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

Another alternative is to use Simulink.SimulationOutput.who and then Simulink.SimulationOutput.get.

See Also

|