 | NMFGdClsUpdateInitialFactors Method |
Provides the initial factors for the iteration process that
computes W and H in the non-negative matrix factorization
V = WH.
Namespace:
CenterSpace.NMath.Core
Assembly:
NMath (in NMath.dll) Version: 7.4
Syntaxpublic void InitialFactors(
ref DoubleMatrix V,
int k,
ref DoubleMatrix W,
ref DoubleMatrix H
)
Public Sub InitialFactors (
ByRef V As DoubleMatrix,
k As Integer,
ByRef W As DoubleMatrix,
ByRef H As DoubleMatrix
)
public:
virtual void InitialFactors(
DoubleMatrix^% V,
int k,
DoubleMatrix^% W,
DoubleMatrix^% H
) sealed
abstract InitialFactors :
V : DoubleMatrix byref *
k : int *
W : DoubleMatrix byref *
H : DoubleMatrix byref -> unit
override InitialFactors :
V : DoubleMatrix byref *
k : int *
W : DoubleMatrix byref *
H : DoubleMatrix byref -> unit
Parameters
- V
- Type: CenterSpace.NMath.CoreDoubleMatrix
The non-negative being factored - k
- Type: SystemInt32
The number of columns in W and the number of
rows in H. - W
- Type: CenterSpace.NMath.CoreDoubleMatrix
The first factor. Should be V.Rows x k - H
- Type: CenterSpace.NMath.CoreDoubleMatrix
The second factor. Should be k x V.Cols
Implements
INMFUpdateAlgorithmInitialFactors(DoubleMatrix, Int32, DoubleMatrix, DoubleMatrix)
See Also