computeFunctionValueMss

Method of TTTensor.

Evaluate the state equations of an mss model in Tensor-Train (TT) format.

Source: src/tensor/@TTTensor/computeFunctionValueMss.m

Syntax

functionValues = computeFunctionValueMss(obj, sys, x, u)

Description

computeFunctionValueMss evaluates the state-equation values of an mss model by contracting the Tensor Train cores with the operating point defined by the state vector x and input vector u.

The TT tensor is contracted with the multilinear basis [1x]\begin{bmatrix} 1 \\ x \end{bmatrix} and [1u]\begin{bmatrix} 1 \\ u \end{bmatrix} implicitly through the TT cores.

Unlike the full tensor representation, the TT format avoids constructing the complete multilinear parameter tensor and performs the evaluation directly on the compressed TT cores.

Input arguments

Argument Description
obj TTTensor object containing the TT cores.
sys mss model object.
x State vector.
u Input vector.

Output arguments

Output Description
functionValues Evaluated state-equation vector.

Example

f = computeFunctionValueMss(sys, x, u);

See also

TTTensor · computeFunctionValueMdss · computeStateJacobianMatrixMss · mss


MyToolbox Documentation | Generated automatically by CI/CD pipeline