findopOptions
Set options for finding operating points from specifications
Syntax
options = findopOptions
options = findopOptions(Name,Value)
Description
options = findopOptions returns the default operating point search options.
options = findopOptions(Name,Value) returns an option set with additional
options specified by one or more Name,Value pair arguments. Use this option set to
specify options for the findop command.
Examples
Create Option Set for Operating Point Search
Create an option set for operating point search that sets the optimizer type to gradient
descent and suppresses the display output of findop.
option = findopOptions('OptimizerType','graddescent','DisplayReport','off');
Alternatively, use dot notation to set the values of options.
options = findopOptions;
options.OptimizerType = 'graddescent';
options.DisplayReport = 'off';
findopOptions