This returns the properties of op and their current values.
Model: 'magball'
States: [5x1 opcond.StatePoint]
Inputs: [0x1 double]
Time: 0
Version: 2
To view the value of a particular property of op, supply the property name as an argument
to get. For example, to view the name of the model associated with the operating point
object, type:
V=get(op,'Model')
which returns
V =
magball
Because op is a structure, you can also view any properties or fields using dot-notation, as
in this example.
W=op.States
This notation returns a vector of objects containing information about the states in the
operating point.
(1.) magball/Controller/PID Controller/Filter
x: 0
(2.) magball/Controller/PID Controller/Integrator
x: 14
(3.) magball/Magnetic Ball Plant/Current
x: 7
(4.) magball/Magnetic Ball Plant/dhdt
x: 0
(5.) magball/Magnetic Ball Plant/height
x: 0.05
Use get to view details of W. For example:
get(W(2),'x')
returns
15 Alphabetical List