Click or drag to resize

LinearConstraintsProjector Constructor

Initializes a new instance of the LinearConstraintsProjector class

Namespace: Altaxo.Calc.Optimization
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3618.0 (4.8.3618.0)
Syntax
C#
public LinearConstraintsProjector(
	Matrix<double>? A = null,
	Vector<double>? b = null,
	Matrix<double>? C = null,
	Vector<double>? d = null
)

Parameters

A  MatrixDouble  (Optional)
Equality matrix (nEq × n). The columns of the matrix correspond to the parameters to be projected. The rows correspond to the different equality constraints.
b  VectorDouble  (Optional)
Equality RHS (nEq). The elements of the vector correspond to the right-hand side values of the equality constraints.
C  MatrixDouble  (Optional)
Inequality matrix for C·x <= d (nLeq × n). The columns of the matrix correspond to the parameters to be projected. The rows correspond to the different inequality constraints.
d  VectorDouble  (Optional)
Inequality RHS (nLeq). The elements of the vector correspond to the right-hand side values of the inequality constraints.
See Also