Quadratic map (QuadraticMap)
LazySets.QuadraticMap
— TypeQuadraticMap{N, S<:LazySet{N}, MVT<:AbstractVector{<:AbstractMatrix{N}}} <: LazySet{N}
Type that represents a quadratic map of a set.
Fields
Q
– matricesX
– set
Notes
The quadratic map of a set $X$ given $n$ square matrices $Q^{(i)}$ is defined as
\[\left\{ λ \mid λ_i = x^T Q^{(i)} x,~i = 1, …, n,~x ∈ X \right\}\]
where each coordinate $i$ is influenced by the $i$-th matrix $Q^{(i)}$.
LazySets.API.dim
— Methoddim(qm::QuadraticMap)
Return the dimension of a quadratic map.
Input
qm
– quadratic map
Output
The ambient dimension of the quadratic map.