MATLAB Function Reference |
Extract properties from the options structure created with bvpset
Syntax
Description
val = bvpget(options,'name')
extracts the value of the named property from the structure options
, returning an empty matrix if the property value is not specified in options
. It is sufficient to type only the leading characters that uniquely identify the property. Case is ignored for property names. []
is a valid options
argument.
val = bvpget(options,'name',default)
extracts the named property as above, but returns val = default
if the named property is not specified in options
. For example,
returns val = 1e-4
if the RelTol
is not specified in opts
.
See Also
bvp4c | bvpinit |
© 1994-2005 The MathWorks, Inc.