Gets the smoothing matrix. The smoothing matrix is a positive symmetric matrix S defined as:
            S = (1 - theta)I + (theta/q)11'
            
where I is the identity matrix, 1 is a vector of ones and the parameter t is between 0 and 1, inclusive. See class description.

Namespace:  CenterSpace.NMath.Stats
Assembly:  NMathStats (in NMathStats.dll) Version: 3.4.0.0

Syntax

C#
public DoubleMatrix SmoothingMatrix { get; }
Visual Basic (Declaration)
Public ReadOnly Property SmoothingMatrix As DoubleMatrix
Visual C++
public:
property DoubleMatrix^ SmoothingMatrix {
	DoubleMatrix^ get ();
}

See Also