Click or drag to resize

ProjectorMatricesC Property

Gets the matrix representing the coefficients of the linear inequality constraints.

Namespace: Altaxo.Calc.Regression.Nonlinear
Assembly: AltaxoBase (in AltaxoBase.dll) Version: 4.8.3618.0 (4.8.3618.0)
Syntax
C#
public Matrix<double>? C { get; init; }

Property Value

MatrixDouble
Remarks
Each row of the matrix corresponds to a linear constraint of the form C·x ≤ d, where C is this matrix, x is the variable vector, and d is the constraint bound vector. The dimensions of the matrix must be compatible with the variable vector and the constraint vector.
See Also