Type Alias parry2d_f64::math::SdpMatrix
source · pub type SdpMatrix<N> = SdpMatrix2<N>;Expand description
A 2D symmetric-definite-positive matrix.
Aliased Type§
struct SdpMatrix<N> {
pub m11: N,
pub m12: N,
pub m22: N,
}Fields§
§m11: NThe component at the first row and first column of this matrix.
m12: NThe component at the first row and second column of this matrix.
m22: NThe component at the second row and second column of this matrix.