Type Alias Neqs
pub type Neqs = (usize, usize);
Expand description
The number of states and output equations of the model.
§Components
- The first element is the number of states
- The second element is the number of output equations
This is used to initialize the state vector and the output vector.
§Example
ⓘ
let neqs = (2, 1);
This means that the system of equations has 2 states and there is only 1 output equation.