sdo.AnalyzeOptions class
Package: sdo
Analysis options for sdo.analyze
Syntax
opt = sdo.AnalyzeOptions
opt = sdo.AnalyzeOptions('Method',method_name)
Description
Specify analysis method and method options for sensitivity analysis
using sdo.analyze
.
Construction
opt = sdo.AnalyzeOptions
creates an sdo.AnalyzeOptions
object
and assigns default values to the properties.
To change a property value, use dot notation. For example:
opt = sdo.AnalyzeOptions; opt.Method = 'StandardizedRegression'; opt.MethodOptions = 'Ranked';
opt = sdo.AnalyzeOptions('Method',
sets
the value of the method_name
)Method
property to method_name
.
Input Arguments
|
Method name, specified as one of the following values: For example, To use multiple methods, specify For information about each method, see the |
Properties
|
Analysis method used by
For x (Ns-by-Np) and y (Ns-by-Nc), all the methods calculate R as an Np-by-Nc table. Here Ns is the number of samples, Np is the number of model parameters, and Nc is the number of cost/constraint function evaluations. Default: |
|
Analysis method option that
For more information about these options, see Analyze Relation Between Parameters and Design Requirements. Default: |
Copy Semantics
Value. To learn how value classes affect copy operations, see Copying Objects.