 | DoubleFairWeightingFunction(DoubleMatrix, Double) Constructor |
Constructs a DoubleFairWeightingFunction for
the specified matrx and tuning factor.
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
Syntaxpublic DoubleFairWeightingFunction(
DoubleMatrix A,
double tune
)
Public Sub New (
A As DoubleMatrix,
tune As Double
)
public:
DoubleFairWeightingFunction(
DoubleMatrix^ A,
double tune
)
new :
A : DoubleMatrix *
tune : float -> DoubleFairWeightingFunctionParameters
- A DoubleMatrix
- Matrix from the weighted least squares
problem Ax = b
- tune Double
- Tuning factor. Decreasing the tuning factor
from its default value increases the downweight assigned to
large residuals and increasing the tuning factor from its
default value decreases
the downweight assigned to large residuals.
See Also