필터 지우기
필터 지우기

Non negative matrix (NMF) implementation

조회 수: 1 (최근 30일)
Mike Nguyen
Mike Nguyen 2018년 4월 25일

Hello

I try to work on the traditional NMF with the paper http://www.columbia.edu/~jwp2128/Teaching/E4903/papers/nmf_nature.pdf

I have V matrix (nxm) , W(nxr), and H(rxn)

Updating rules:

                W (i,a) <- W(i,a)* Sum over mill ( V(i,mill)/(WH)(i,mill) * H(a,mill))
                H (a,mill) <- H(a,mill)* sum over i (W(i,a)* V(i,mill)/(WH)(i,mill))

in which i from 1 : n, a from 1:r, and mill from 1:m

How should we convert the equation above into matrix manipulation without using loop?

Thanks

답변 (0개)

카테고리

Help CenterFile Exchange에서 Statistics and Machine Learning Toolbox에 대해 자세히 알아보기

태그

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by