Abstract base class for the MTI simulator classes (the continuous-
and discrete-time simulators for mss and mdss
models).
Source: src/core/mtiSimulator.m
mtiSimulator is the abstract superclass shared by the
concrete simulator classes. It declares the minimum interface a
simulator must expose and is never instantiated directly. The concrete
subclasses run the simulation from their constructor and store the
results in their own properties; end users normally reach them through
msim rather than
constructing a simulator directly.
The class derives from handle and
matlab.mixin.Heterogeneous (so mixed simulator arrays are
allowed).
Every subclass must define:
| Property | Description |
|---|---|
mtiModel |
The model being simulated (an mtiModel subclass). |
| Class | Simulates |
|---|---|
continuousTimeMdss |
Continuous-time mdss models. |
discreteTimeMdss |
Discrete-time mdss models. |
continuousTimeMss |
Continuous-time mss models. |
discreteTimeMss |
Discrete-time mss models. |
mtiModel · msim · continuousTimeMdss
· discreteTimeMdss
MyToolbox Documentation | Generated automatically by CI/CD pipeline