This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function [W] = NNDEIG(A,k,flag); | |
| % | |
| % This function implements the NNDSVD algorithm described in [1] for | |
| % initialization of Nonnegative Matrix Factorization Algorithms | |
| % for symmetric NMF so uses Eigendecomposition | |
| % | |
| % [W] = nndeig(A,k,flag); | |
| % | |
| % INPUT | |
| % ------------ |
NewerOlder