  | NMFGdClsUpdateIterationStep Method | 
            Updates the factors W and H in the non-negative matrix 
            factorization V = WH.
            
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
Syntaxpublic void IterationStep(
	DoubleMatrix V,
	ref DoubleMatrix W,
	ref DoubleMatrix H
)
Public Sub IterationStep ( 
	V As DoubleMatrix,
	ByRef W As DoubleMatrix,
	ByRef H As DoubleMatrix
)
public:
virtual void IterationStep(
	DoubleMatrix^ V, 
	DoubleMatrix^% W, 
	DoubleMatrix^% H
) sealed
abstract IterationStep : 
        V : DoubleMatrix * 
        W : DoubleMatrix byref * 
        H : DoubleMatrix byref -> unit 
override IterationStep : 
        V : DoubleMatrix * 
        W : DoubleMatrix byref * 
        H : DoubleMatrix byref -> unit Parameters
- V  DoubleMatrix
 - The non-negative matrix being factored.
 - W  DoubleMatrix
 - The first factor is passed in and updated.
 - H  DoubleMatrix
 - The second factor is passed in and updated.
 
Implements
INMFUpdateAlgorithmIterationStep(DoubleMatrix, DoubleMatrix, DoubleMatrix)
See Also