tfestOptions
R2026bOption set for tfest
Description
Use a tfestOptions object to specify options for estimating
transfer function models using the tfest function. You can specify options such as
the estimation objective, the handling of initial conditions, and the numerical search method
to be used in estimation.
Creation
Description
creates the default
option set for estimating a transfer function model using opt = tfestOptionstfest. To modify the properties of this option set for your specific
application, use dot notation.
creates an option set with properties specified using one or more name-value
arguments.opt = tfestOptions(Name,Value)
Properties
Algorithm used to initialize the values of the numerator and denominator of the
output of tfest, specified as one of the following values:
'iv'— Instrument Variable approach.'svf'— State Variable Filters approach.'gpmf'— Generalized Poisson Moment Functions approach.'n4sid'— Subspace state-space estimation approach.'all'— Combination of all of the preceding approaches. The software tries all these methods and selects the method that yields the smallest value of the prediction error norm.
This property is applicable only for estimation of continuous-time transfer functions using time-domain data
Option set for the initialization algorithm used to initialize the values of the
numerator and denominator of the output of tfest, specified as a
structure with the fields in the following table.
| Field Name | Description | Default | ||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
N4Weight | Calculates the weighting matrices used in the singular-value
decomposition step of the
| 'auto' | ||||||||||
N4Horizon | Determines the forward and backward prediction horizons used by the
See pages 209 and 210 in [1] for more information. These numbers can have a substantial influence on the
quality of the resulting model, and there are no simple rules for choosing
them. Making If | 'auto' | ||||||||||
FilterTimeConstant | Time constant of the differentiating filter used by the
Ts is the sample time of the estimation data. Specify
| 0.1 | ||||||||||
MaxIterations | Maximum number of iterations. Applicable when
InitializeMethod is 'iv'. | 30 | ||||||||||
Tolerance | Convergence tolerance. Applicable when
InitializeMethod is 'iv'. | 0.01 |
Handling of initial conditions during estimation, specified as one of the following values:
'zero'— All initial conditions are taken as zero.'estimate'— The necessary initial conditions are treated as estimation parameters.'backcast'— The necessary initial conditions are estimated by a backcasting (backward filtering) process, described in [2].'auto'— An automatic choice among the preceding options is made, guided by the data.
Weighting prefilter applied to the loss function to be minimized during estimation.
To understand the effect of WeightingFilter on the loss function, see
Loss Function and Model Quality Metrics.
Specify WeightingFilter as one of the values in the following
table.
| Value | Description |
|---|---|
[] | No weighting prefilter is used. |
Passbands | Specify a row vector or matrix containing frequency values that
define desired passbands. You select a frequency band where the fit between
estimated model and estimation data is optimized. For example, specify
Passbands are expressed in
rad/ |
| SISO filter | Specify a single-input-single-output (SISO) linear filter in one of the following ways:
|
| Weighting vector | Applicable for frequency-domain data only. Specify a column vector of
weights. This vector must have the same length as the frequency vector of the
data set, |
'inv' | Applicable for estimation using frequency-response data only. Use as the weighting filter, where G(ω) is the complex frequency-response data. Use this option for capturing relatively low amplitude dynamics in data, or for fitting data with high modal density. This option also makes it easier to specify channel-dependent weighting filters for MIMO frequency-response data. |
'invsqrt' | Applicable for estimation using frequency-response data only. Use as the weighting filter. Use this option for capturing relatively low amplitude dynamics in data, or for fitting data with high modal density. This option also makes it easier to specify channel-dependent weighting filters for MIMO frequency-response data. |
Option to enforce stability of the estimated model, specified as
true or false.
Use this option when estimating models using frequency-domain data. Models estimated using time-domain data are always stable.
Option to generate parameter covariance data, specified as true or
false.
If EstimateCovariance is true, then use
getcov to fetch the covariance matrix
from the estimated model.
Option to display the estimation progress, specified as one of the following values:
'on'— Information on model structure and estimation results are displayed in a progress-viewer window.'off'— No progress or results information is displayed.
Input-channel intersample behavior for transformations between discrete time and continuous time, specified as 'auto', 'zoh','foh', or 'bl'.
The definitions of the three behavior values are as follows:
'zoh'— Zero-order hold maintains a piecewise-constant input signal between samples.'foh'— First-order hold maintains a piecewise-linear input signal between samples.'bl'— Band-limited behavior specifies that the continuous-time input signal has zero power above the Nyquist frequency.
iddata objects have a similar property,
data.InterSample, that contains the same behavior value options.
When the InputInterSample value is 'auto' and
the estimation data is in an iddata object data, the
software uses the data.InterSample value. When the estimation data
is instead contained in a timetable or a matrix pair, with the 'auto'
option, the software uses 'zoh'.
The software applies the same option value to all channels and all experiments.
Removal of offset from time-domain input data during estimation, specified as one of the following:
A column vector of positive integers of length Nu, where Nu is the number of inputs.
[]— Indicates no offset.Nu-by-Ne matrix — For multi-experiment data, specify
InputOffsetas an Nu-by-Ne matrix. Nu is the number of inputs and Ne is the number of experiments.
Each entry specified by InputOffset is
subtracted from the corresponding input data.
Removal of offset from time-domain output data during estimation, specified as one of the following:
A column vector of length Ny, where Ny is the number of outputs.
[]— Indicates no offset.Ny-by-Ne matrix — For multi-experiment data, specify
OutputOffsetas a Ny-by-Ne matrix. Ny is the number of outputs, and Ne is the number of experiments.
Each entry specified by OutputOffset is
subtracted from the corresponding output data.
Weighting of prediction errors in multi-output estimations, specified as one of the following values:
'noise'— Minimize , where E represents the prediction error andNis the number of data samples. This choice is optimal in a statistical sense and leads to maximum likelihood estimates if nothing is known about the variance of the noise. It uses the inverse of the estimated noise variance as the weighting function.Note
OutputWeightmust not be'noise'ifSearchMethodis'lsqnonlin'.Positive semidefinite symmetric matrix (
W) — Minimize the trace of the weighted prediction error matrixtrace(E'*E*W/N), where:E is the matrix of prediction errors, with one column for each output, and W is the positive semidefinite symmetric matrix of size equal to the number of outputs. Use W to specify the relative importance of outputs in multiple-output models, or the reliability of corresponding data.
Nis the number of data samples.
[]— The software chooses between'noise'and using the identity matrix forW.
This option is relevant for only multi-output models.
Options for regularized estimation of model parameters, specified as a structure with the fields in the following table. For more information on regularization, see Regularized Estimates of Model Parameters.
| Field Name | Description | Default |
|---|---|---|
Lambda | Constant that determines the bias versus variance tradeoff. Specify a positive scalar to add the regularization term to the estimation cost. The default value of 0 implies no regularization. | 0 |
R | Weighting matrix. Specify a vector of nonnegative numbers or a square positive semi-definite matrix. The length must be equal to the number of free parameters of the model. For black-box models, using the default value is
recommended. For structured and grey-box models, you can also
specify a vector of The default value of 1 implies a value of
| 1 |
Nominal | The nominal value towards which the free parameters are pulled during estimation. The default value of 0 implies that
the parameter values are pulled towards zero. If you are refining a
model, you can set the value to | 0 |
Numerical search method used for iterative parameter estimation, specified as the one of the values in the following table.
SearchMethod | Description |
|---|---|
'auto' | Automatic method selection A combination of the
line search algorithms, |
'gn' | Subspace Gauss-Newton least-squares search Singular
values of the Jacobian matrix less than
|
'gna' | Adaptive subspace Gauss-Newton search Eigenvalues
less than |
'lm' | Levenberg-Marquardt least squares search Each
parameter value is This algorithm requires Optimization Toolbox™ software. |
'grad' | Steepest descent least-squares search |
'lsqnonlin' | Trust-region-reflective algorithm of This algorithm requires Optimization Toolbox software. |
'patternsearch' | Solver for nonlinearities without well-defined gradients You can use the |
'fmincon' | Constrained nonlinear solvers You can use the
sequential quadratic programming (SQP) and trust-region-reflective
algorithms of the
|
'adam' | Adaptive moment estimation (Adam) Adam is a first-order adaptive gradient solver. It supports mini-batch operation when data is segmented into multiple frames or batches. For more information, see Adaptive Moment Estimation (Deep Learning Toolbox). |
'sgdm' | Stochastic gradient descent with momentum (SGDM) SGDM is a first-order momentum-based gradient solver. It supports mini-batch operation when data is segmented into multiple frames or batches. For more information, see Stochastic Gradient Descent with Momentum (Deep Learning Toolbox). |
'lbfgs' | Limited-memory Broyden-Fletcher-Goldfarb-Shanno (L-BFGS) L-BFGS is a quasi-Newton solver that approximates the inverse Hessian using a limited history of curvature pairs. For more information, see Limited-Memory BFGS (Deep Learning Toolbox). |
Option set for the search algorithm, specified as a search option set with fields that
depend on the value of SearchMethod.
SearchOptions Structure When SearchMethod Is Specified
as 'gn', 'gna', 'lm',
'grad', or 'auto'
| Field Name | Description | Default | ||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Tolerance | Minimum percentage difference between the current value
of the loss function and its expected improvement after the next iteration,
specified as a positive scalar. When the percentage of expected improvement
is less than | 0.01 | ||||||||||||||||||||||||||||||
MaxIterations | Maximum number of iterations during loss-function minimization, specified as a positive
integer. The iterations stop when Setting
Use
| 20 | ||||||||||||||||||||||||||||||
Advanced | Advanced search settings, specified as a structure with the following fields.
| |||||||||||||||||||||||||||||||
SearchOptions Structure When SearchMethod Is Specified
as 'lsqnonlin'
| Field Name | Description | Default |
|---|---|---|
FunctionTolerance | Termination tolerance on the loss function that the software minimizes to determine the estimated parameter values, specified as a positive scalar. The
value of | 1e-5 |
StepTolerance | Termination tolerance on the estimated parameter values, specified as a positive scalar. The value of | 1e-6 |
MaxIterations | Maximum number of iterations during loss-function minimization, specified as a positive
integer. The iterations stop when The value of
| 20 |
SearchOptions Structure When SearchMethod
Is Specified as 'patternsearch'
| Field Name | Description | Default |
|---|---|---|
Algorithm |
For algorithm details, see How Pattern Search Polling Works (Global Optimization Toolbox) and Nonuniform Pattern Search (NUPS) Algorithm (Global Optimization Toolbox). For examples of algorithm effects, see Explore patternsearch Algorithms (Global Optimization Toolbox) and Explore patternsearch Algorithms in Optimize Live Editor Task (Global Optimization Toolbox). | 'nups' |
FunctionTolerance | Termination tolerance on the loss function that the software minimizes to determine the estimated parameter values, specified as a positive scalar. | 1e-6 |
StepTolerance | Termination tolerance on the estimated parameter values, specified as a positive scalar. | 1e-6 |
MaxIterations | Maximum number of iterations during loss function minimization,
specified as a positive integer. The iterations stop when
| '100*numberOfVariables', where
numberOfVariables is the number of problem
variables |
UseParallel | Option to enable or disable parallel processing for improved performance, specified as one of these values:
If you do not have a parallel pool open and automatic pool creation is enabled, MATLAB opens a pool using the default cluster profile. To use a parallel pool to run computations in MATLAB, you must have Parallel Computing Toolbox™. Before R2026b: To
run in parallel, set | "off" |
SearchOptions Structure When SearchMethod Is Specified
as 'fmincon'
| Field Name | Description | Default |
|---|---|---|
Algorithm |
For more information about the algorithms, see Constrained Nonlinear Optimization Algorithms (Optimization Toolbox) and Choosing the Algorithm (Optimization Toolbox). | 'sqp' |
FunctionTolerance | Termination tolerance on the loss function that the software minimizes to determine the estimated parameter values, specified as a positive scalar. | 1e-6 |
StepTolerance | Termination tolerance on the estimated parameter values, specified as a positive scalar. | 1e-6 |
MaxIterations | Maximum number of iterations during loss function minimization, specified as a positive
integer. The iterations stop when | 100 |
SearchOptions Structure When SearchMethod Is
Specified as 'adam'
| Field Name | Description | Default |
|---|---|---|
LearnRate | Learning rate, or the step size, used for training, specified as a positive scalar. If the learning rate is too small, then training can take a long time. If the learning rate is too large, then training can be fast but it might reach a suboptimal result, diverge, or oscillate. The learning rate is denoted by α in the Adaptive Moment Estimation (Deep Learning Toolbox) section. If you specify | 0.001 |
GradientDecayFactor | Exponential decay rate of gradient moving average for the Adam solver,
specified as a positive scalar less than If the value of | 0.9 |
SquaredGradientDecayFactor | Exponential decay rate of squared gradient moving average for the Adam
solver, specified as a positive scalar less than Larger values of
| 0.999 |
Epsilon | Small constant for numerical stability, specified as a positive scalar. To avoid
division by zero when updating network parameters, the solver adds this constant
to the denominator. Epsilon is denoted by
ϵ in the Adaptive Moment Estimation (Deep Learning Toolbox)
section. | 1e-8 |
MaxEpochs | Maximum number of parameter updates or iterations to use for training,
specified as a nonnegative integer. If you specify MaxEpochs
as 0, the software disables iterations and only runs
initialization or post-processing. | 200 |
MaxFunctionEvaluations | Maximum number of objective function evaluations, specified as a positive integer. | intmax |
LearnRateSchedule | Learning rate schedule type, specified as
| "none" |
LearnRateDropFactor | Multiplicative factor for dropping the learning rate, specified as a
positive scalar less than or equal to The software
multiplies the learning rate with the factor specified by
| 0.1 |
LearnRateDropPeriod | Number of iterations in between learning rate drops, specified as a
positive integer. You can specify this option only when you specify the
The software multiplies the
learning rate with the drop factor every time the number of iterations
specified by | 10 |
MinCostValue | Target objective value, specified as a nonnegative scalar. If the
objective value at the current iteration is less than or equal to
| 0 |
ModelSelection | Iteration used to return the model parameters, specified as
If
you specify | "best" |
Advanced | Structure used to specify advanced search options consisting of these fields: | |
To disable this option, specify
| 0 | |
Decoupling prevents regularization strength from being implicitly modulated by momentum dynamics. | 1 | |
To disable this option,
specify | 0 | |
NormEpsilon — Small constant used to avoid division
by zero and underflow when computing safe norms and normalized quantities,
especially when ClipGradNorm is enabled, specified as a
positive scalar. | 1e-12 | |
SearchOptions Structure When SearchMethod Is
Specified as 'sgdm'
| Field Name | Description | Default |
|---|---|---|
LearnRate | Learning rate, or the step size, used for training, specified as a positive scalar. If the learning rate is too small, then training can take a long time. If the learning rate is too large, then training can be fast but it might reach a suboptimal result, diverge, or oscillate. The learning rate is denoted by α in the Stochastic Gradient Descent with Momentum (Deep Learning Toolbox) section. If you specify | 0.01 |
Momentum | Momentum coefficient, specified as a positive scalar less than or equal to
If the value of | 0.95 |
MaxEpochs | Maximum number of parameter updates or iterations to use for training,
specified as a nonnegative integer. If you specify MaxEpochs
as 0, the software disables iterations and only runs
initialization or post-processing. | 200 |
MaxFunctionEvaluations | Maximum number of objective function evaluations, specified as a positive integer. | intmax |
LearnRateSchedule | Learning rate schedule type, specified as
| "none" |
LearnRateDropFactor | Multiplicative factor for dropping the learning rate, specified as a
positive scalar less than or equal to The software
multiplies the learning rate with the factor specified by
| 0.1 |
LearnRateDropPeriod | Number of iterations in between learning rate drops, specified as a
positive integer. You can specify this option only when you specify the
The software multiplies the
learning rate with the drop factor every time the number of iterations
specified by | 10 |
MinCostValue | Target objective value, specified as a nonnegative scalar. If the
objective value at the current iteration is less than or equal to
| 0 |
ModelSelection | Iteration used to return the model parameters, specified as
If
you specify | "best" |
Advanced | Structure used to specify advanced search options consisting of these fields: | |
To disable this option, specify
| 0 | |
Decoupling prevents regularization strength from being implicitly modulated by momentum dynamics. | 1 | |
To disable this option,
specify | 0 | |
NormEpsilon — Small constant used to avoid division
by zero and underflow when computing safe norms and normalized quantities,
especially when ClipGradNorm is enabled, specified as a
positive scalar. | 1e-12 | |
SearchOptions Structure When SearchMethod Is
Specified as 'lbfgs'
| Field Name | Description | Default |
|---|---|---|
MaxIterations | Maximum number of quasi-Newton iterations to use for training, specified as a nonnegative integer. Each iteration forms a search direction using the stored curvature pairs and then performs a line search. If you specify | 200 |
MaxFunctionEvaluations | Maximum number of objective function evaluations, including evaluations performed by line search, specified as a positive integer. | intmax |
HistorySize | Number of curvature pairs or state updates to store, specified as a positive integer. The L-BFGS algorithm uses a history of
gradient calculations to approximate the Hessian matrix recursively. Larger
values of | 10 |
GradientTolerance | Stopping tolerance on the relative gradient, specified as a positive scalar. The software stops training when the relative gradient
is less than or equal to
| 1e-6 |
StepTolerance | Stopping tolerance on the step size, specified as a positive scalar.
The software
stops training when the step that the algorithm takes is less than or equal
to | 1e-12 |
FunctionTolerance | Stopping tolerance on the improvement in the objective value, specified
as a positive scalar. The software stops training when the objective value
improvement is less than or equal to
| 1e-12 |
LineSearchMethod | Method to find a suitable step size, specified as one of these values:
| "strong-wolfe" |
MaxNumLineSearchIterations | Maximum number of line search trials per iteration to determine the step size, specified as a positive integer. | 40 |
InitialStepSize | Step size for the starting line search trial, specified as a positive scalar. | 1.0 |
Advanced | Structure used to specify advanced search options consisting of these fields: | |
MinStepSize — Smallest step size permitted by line
search, specified as a positive scalar. If the step size for a trial goes below
this value, the line search fails and the solver can stop or fall back depending
on the implementation. | 1e-16 | |
MaxStepSize — Largest step size permitted by line
search, specified as a positive scalar. This upper bound for the trial step size
prevents excessively large moves that can cause numerical overflow or objective
evaluation failures. | 1e+16 | |
To
disable this option, specify | 0 | |
WolfeC1 — Armijo condition (sufficient decrease)
constant for Wolfe line search, specified as a positive scalar less than
1. Smaller values of WolfeC1 make
sufficient decrease easier to satisfy. | 1e-4 | |
WolfeC2 — Curvature condition constant for Wolfe
line search, specified as positive scalar less than 1. Larger
values of WolfeC2 make the curvature condition easier to
satisfy whereas smaller values enforce a stronger curvature requirement. | 0.9 | |
ZoomMaxIterations — Maximum number of iterations
allowed in the "zoom" procedure of Wolfe line search, specified as a positive
integer. | 40 | |
BacktrackingFactor — Step size shrink factor during
backtracking used to reduce trial step sizes when conditions are not satisfied,
specified as a positive scalar less than 1. Values closer to
0 shrink the step size more aggressively while values
closer to 1 shrink the step size more conservatively. | 0.5 | |
CurvatureThreshold — Number to control whether a
new curvature pair is accepted into the limited-memory history, specified as a
positive scalar. Specifying CurvatureThreshold prevents
storing nearly singular or noisy curvature information that can destabilize the
inverse-Hessian approximation. | 1e-10 | |
To disable this option, specify
| 0 | |
UseInitialScaling — Flag to control whether the
initial inverse-Hessian is scaled each iteration using curvature information,
specified as a logical scalar. This scaling often improves practical
performance. | 1 | |
Additional advanced options, specified as a structure with the fields in the following table.
| Field Name | Description | Default | |||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
ErrorThreshold | Error threshold at which to adjust the weight of large errors from quadratic to linear. Errors larger than
An | 0 | |||||||||
MaxSize | Maximum number of elements in a segment when input-output data is split into segments.
| 250000 | |||||||||
StabilityThreshold | Threshold for stability tests.
| ||||||||||
AutoInitThreshold | Threshold at which to automatically estimate initial conditions. The software estimates the initial conditions when: | 1.05 |
Examples
opt = tfestOptions;
Create an options set for tfest using the 'n4sid' initialization algorithm and set the Display to 'on'.
opt = tfestOptions('InitializeMethod','n4sid','Display','on');
Alternatively, use dot notation to set the values of opt.
opt = tfestOptions; opt.InitializeMethod = 'n4sid'; opt.Display = 'on';
References
[1] Ljung, Lennart. System Identification: Theory for the User. 2nd Ed. Upper Saddle River, NJ: Prentice-Hall PTR, 1999.
[2] Knudsen, T. "A New method for estimating ARMAX models," IFAC Proceedings Volumes 27, no. 8 (July 1994): 895–901. https://doi.org/10.1016/S1474-6670(17)47823-2.
[3] Wills, Adrian, B. Ninness, and S. Gibson. “On Gradient-Based Search for Multivariable System Estimates.” IFAC Proceedings Volumes 38, No 1 (2005): 832–837. https://doi.org/10.3182/20050703-6-CZ-1902.00140.
[4] Garnier, H., M. Mensler, and A. Richard. “Continuous-time Model Identification From Sampled Data: Implementation Issues and Performance Evaluation” International Journal of Control 76, no 13 (January 2003): 1337–57. https://doi.org/10.1080/0020717031000149636.
[5] Ljung, Lennart. “Experiments With Identification of Continuous-Time Models.” IFAC Proceedings Volumes 42, no. 10 (2009):1175–80. https://doi.org/10.3182/20090706-3-FR-2004.00195.
[6] Jansson, Magnus. “Subspace identification and ARX modeling.” IFAC Proceedings Volumes 36 no. 16 (September 2003): 1585–90. https://doi.org/10.1016/S1474-6670(17)34986-8
Extended Capabilities
The tfestOptions object has automatic parallel support if its
SearchMethod property is set to
"patternsearch".
To run computations in parallel, set the SearchMethod property to
"patternsearch" and the SearchOptions.UseParallel
property to "on" or "auto".
Version History
Introduced in R2012bWhen the SearchMethod property is
"patternsearch", the SearchOptions.UseParallel
property now accepts "off", "auto", or
"on" values instead of true or
false. This change gives you more control over when to use a parallel
pool for parallel execution.
Specifying the SearchOptions.UseParallel property as
true or false is not recommended.
You can now use the adaptive moment estimation (Adam), stochastic gradient descent with
momentum (SGDM), or limited-memory Broyden-Fletcher-Goldfarb-Shanno (L-BFGS) solvers to
estimate models by setting the SearchMethod property to
'adam', 'sgdm', or 'lbfgs',
respectively. You can change the default search option set using the
SearchOptions property.
You can now set the SearchMethod property to
'patternsearch' to estimate a system that has a nonlinearity without a
well-defined gradient. You can change the default option set for this search algorithm using the
SearchOptions property. This method requires Global Optimization Toolbox software.
iddata objects contain an InterSample property that
describes the behavior of the signal between sample points. The
InputInterSample option implements a version of that property in
tfestOptions so that intersample behavior can be specified also when
estimation data is stored in timetables or matrices.
MATLAB Command
You clicked a link that corresponds to this MATLAB command:
Run the command by entering it in the MATLAB Command Window. Web browsers do not support MATLAB commands.
Web サイトの選択
Web サイトを選択すると、翻訳されたコンテンツにアクセスし、地域のイベントやサービスを確認できます。現在の位置情報に基づき、次のサイトの選択を推奨します:
また、以下のリストから Web サイトを選択することもできます。
最適なサイトパフォーマンスの取得方法
中国のサイト (中国語または英語) を選択することで、最適なサイトパフォーマンスが得られます。その他の国の MathWorks のサイトは、お客様の地域からのアクセスが最適化されていません。
南北アメリカ
- América Latina (Español)
- Canada (English)
- United States (English)
ヨーロッパ
- Belgium (English)
- Denmark (English)
- Deutschland (Deutsch)
- España (Español)
- Finland (English)
- France (Français)
- Ireland (English)
- Italia (Italiano)
- Luxembourg (English)
- Netherlands (English)
- Norway (English)
- Österreich (Deutsch)
- Portugal (English)
- Sweden (English)
- Switzerland
- United Kingdom (English)