pub type SdpMatrix<N> = SdpMatrix2<N>;Expand description
A 2D symmetric-definite-positive matrix.
Aliased Type§
pub 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.