set
Set properties of linearization I/Os and operating points
Syntax
set(ob)
set(ob,'PropertyName',val)
Description
set(ob) displays all editable properties of the object, ob, which can be a linearization
I/O object, an operating point object, or an operating point specification object. Create ob
using findop, getlinio, linio, operpoint, or operspec.
set(ob,'PropertyName',val) sets the property, PropertyName, of the object, ob, to
the value, val. The object, ob, can be a linearization I/O object, an operating point object,
or an operating point specification object. Create ob using findop, getlinio, linio,
operpoint, or operspec.
ob.PropertyName = val is an alternative notation for assigning the value, val, to the
property, PropertyName, of the object, ob. The object, ob, can be a linearization I/O
object, an operating point object, or an operating point specification object. Create ob
using findop, getlinio, linio, operpoint, or operspec.
Examples
Create an operating point object for the Simulink model, magball:
op_cond=operpoint('magball');
Use the set function to get a list of all editable properties of this object:
set(op_cond)
This function returns the properties of op_cond.
set