 | INMFUpdateAlgorithmIterationStep Method |
Updates the factors W and H in the non-negative matrix factorization
V = WH.
Namespace:
CenterSpace.NMath.Core
Assembly:
NMath (in NMath.dll) Version: 7.4
Syntaxvoid IterationStep(
DoubleMatrix V,
ref DoubleMatrix W,
ref DoubleMatrix H
)
Sub IterationStep (
V As DoubleMatrix,
ByRef W As DoubleMatrix,
ByRef H As DoubleMatrix
)
void IterationStep(
DoubleMatrix^ V,
DoubleMatrix^% W,
DoubleMatrix^% H
)
abstract IterationStep :
V : DoubleMatrix *
W : DoubleMatrix byref *
H : DoubleMatrix byref -> unit
Parameters
- V
- Type: CenterSpace.NMath.CoreDoubleMatrix
The non-negative matrix being factored. - W
- Type: CenterSpace.NMath.CoreDoubleMatrix
In: the current first factor.
Out: the updated factor - H
- Type: CenterSpace.NMath.CoreDoubleMatrix
In: the current second factor
Out: the updated factor
See Also