mtiSimulator

Abstract base class for the MTI simulator classes (the continuous- and discrete-time simulators for mss and mdss models).

Source: src/core/mtiSimulator.m

Description

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).

Abstract properties

Every subclass must define:

Property Description
mtiModel The model being simulated (an mtiModel subclass).

Subclasses

Class Simulates
continuousTimeMdss Continuous-time mdss models.
discreteTimeMdss Discrete-time mdss models.
continuousTimeMss Continuous-time mss models.
discreteTimeMss Discrete-time mss models.

See also

mtiModel · msim · continuousTimeMdss · discreteTimeMdss


MyToolbox Documentation | Generated automatically by CI/CD pipeline