Performs intialization of the weighting function based on the matrix A in the weighted least squares problem: Ax - b.

Namespace:  CenterSpace.NMath.Matrix
Assembly:  NMath (in NMath.dll) Version: 5.1.0.0

Syntax

C#
public virtual void Initialize(
	DoubleMatrix A
)
Visual Basic (Declaration)
Public Overridable Sub Initialize ( _
	A As DoubleMatrix _
)
Visual C++
public:
virtual void Initialize(
	DoubleMatrix^ A
)

Parameters

A
Type: CenterSpace.NMath.Core..::.DoubleMatrix
The matrix in the weighted least squares problem Ax = b.

Implements

IDoubleLeastSqWeightingFunction..::.Initialize(DoubleMatrix)

See Also