HLBS25
ReachabilityAnalysis.HLBS25
— TypeHLBS25{N, AM, RM, R} <: AbstractContinuousPost
Implementation of the reachability algorithm for linear systems with parametric uncertainty using matrix zonotopes by Huang et al. [HLBS25].
Fields
δ
– step-size of the discretizationapprox_model
– (optional, default:CorrectionHullMatrixZonotope
) model for the discretization of the initial value problemtaylor_order
– (optional, default:5
) order of the Taylor series expansion of the matrix exponential for each stepmax_order
– (optional, default:5
) maximum order of the reach setreduction_method
– (optional, default:LazySets.GIR05()
zonotope order reduction method usedrecursive
– (optional, default:false
) iftrue
, compute the Taylor series expansion of the matrix zonotope exponential map recursively
Notes
The recursive
option is used to compute the Taylor expansion of the matrix zonotope exponential map. If recursive == true
, each term of the Taylor expansion is computed recursively (e.g., $A^2 P = A (A P)$).
If recursive == false
, the Taylor expansion is computed by overapproximating the matrix zonotope exponential map, producing a single matrix that represents the exponential.