The Nonsmooth Nonnegative Matrix Factorization is defined as
V = WSH
where V, W, and H are the same as in the original NMF model. The positive symmetric matrix S is a "smoothing" matrix defined as:
            S = (1 - theta)I + (theta/q)11'
            

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

Syntax

C#
public double Theta { get; set; }
Visual Basic (Declaration)
Public Property Theta As Double
Visual C++
public:
property double Theta {
	double get ();
	void set (double value);
}

Remarks

See the remarks section for this class for a description of the parameter theta.

Exceptions

ExceptionCondition
System..::.ArgumentExceptionThrown is theta is less than zero or greater than one.

See Also