| model coefficients | Returns the coefficients of the estimated model system.  | Note The elements in model coefficients depend on the model type and the dimensions of the model. |
model coefficients can contain the following elements:
- A—Returns the A coefficients of the model for AR, ARX, ARMAX, output-error, Box-Jenkins, and general-linear models and returns the A matrix of state-space models. A has the following characteristics and dimensions:
- SISO, MISO, and MIMO models—The first value of A always equals 1. The dimension of A equals A order + 1.
- State-space models—A is an n × n matrix, where n is Number of states.
- B—Returns the B coefficients of the model for AR, ARX, ARMAX, output-error, Box-Jenkins, and general-linear models, the column vector of the model for state-space SISO models, and the B matrix of the model for state-space MISO and MIMO models. B has the following characteristics and dimensions:
- SISO models, excluding state-space models—The dimension of B equals B order + Delay. The first Delay number of elements in B always equals 0.
- MISO and MIMO models, excluding state-space models—The number of rows in B equals the number of system inputs. The number of columns in B equals the maximum value of B orders + Delays. The ith row of B has Delaysi number of zeros at the beginning.
- State-space SISO models—The dimension of B equals Number of states.
- State-space MISO and MIMO models—B is an n × m matrix, where n is Number of states and m is the number of system inputs.
- C—Returns the C coefficients of the model for ARMAX, Box-Jenkins, and general-linear models, the row vector of the model for state-space SISO and MISO models, and the C matrix of the model for state-space MIMO models. C has the following characteristics and dimensions:
- ARMAX, Box-Jenkins, and general-linear models—The first value of C always equals 1. The dimension of C equals C order + 1.
- State-space SISO and MISO models—The dimension of C equals Number of states.
- State-space MIMO models—C is an r × n matrix, where r is the number of system outputs and n is Number of states.
- D—Returns the D coefficients of the model for Box-Jenkins and general-linear models, the D parameter of the model for state-space SISO models, the row vector of the model for state-space MISO models, and the D matrix of the model for state-space MIMO models. D has the following characteristics and dimensions:
- Box-Jenkins and general linear models—The first value of D always equals 1. The dimension of D equals D order + 1.
- State-space MISO models—The dimension of D equals the number of system inputs.
- State-space MIMO models—D is an r × m matrix, where r is the number of system outputs and m is the number of system inputs.
- F—Returns the F coefficients of the model for output-error, Box-Jenkins, and general-linear models. F has the following characteristics and dimensions:
- SISO models—The first value of F always equals 1. The dimension of F equals F order + 1.
- MISO models—The number of rows in F equals the number of system inputs. The number of columns in F equals the maximum value of F orders + 1.
|