pub type SdpMatrix<N> = SdpMatrix3<N>;
Expand description
A 3D symmetric-definite-positive matrix.
Aliased Type§
struct SdpMatrix<N> {
pub m11: N,
pub m12: N,
pub m13: N,
pub m22: N,
pub m23: N,
pub m33: N,
}
Fields§
§m11: N
The component at the first row and first column of this matrix.
m12: N
The component at the first row and second column of this matrix.
m13: N
The component at the first row and third column of this matrix.
m22: N
The component at the second row and second column of this matrix.
m23: N
The component at the second row and third column of this matrix.
m33: N
The component at the third row and third column of this matrix.