├── .lesshst ├── .minttyrc ├── LICENSE ├── README.md ├── demo1.m ├── demo2.m ├── nmf_alg.m ├── nmf_amari.m ├── nmf_beta.m ├── nmf_convex.m ├── nmf_euc.m ├── nmf_euc_orth.m ├── nmf_euc_sparse_es.m ├── nmf_kl.m ├── nmf_kl_con.m ├── nmf_kl_loc.m ├── nmf_kl_ns.m ├── nmf_kl_sparse_es.m ├── nmf_kl_sparse_v.m ├── normalize_H.m ├── normalize_W.m └── parse_opt.m /.lesshst: -------------------------------------------------------------------------------- 1 | .less-history-file: 2 | -------------------------------------------------------------------------------- /.minttyrc: -------------------------------------------------------------------------------- 1 | ThemeFile=windows10 2 | FontHeight=11 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audiofilter/nmflib/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audiofilter/nmflib/HEAD/README.md -------------------------------------------------------------------------------- /demo1.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audiofilter/nmflib/HEAD/demo1.m -------------------------------------------------------------------------------- /demo2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audiofilter/nmflib/HEAD/demo2.m -------------------------------------------------------------------------------- /nmf_alg.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audiofilter/nmflib/HEAD/nmf_alg.m -------------------------------------------------------------------------------- /nmf_amari.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audiofilter/nmflib/HEAD/nmf_amari.m -------------------------------------------------------------------------------- /nmf_beta.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audiofilter/nmflib/HEAD/nmf_beta.m -------------------------------------------------------------------------------- /nmf_convex.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audiofilter/nmflib/HEAD/nmf_convex.m -------------------------------------------------------------------------------- /nmf_euc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audiofilter/nmflib/HEAD/nmf_euc.m -------------------------------------------------------------------------------- /nmf_euc_orth.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audiofilter/nmflib/HEAD/nmf_euc_orth.m -------------------------------------------------------------------------------- /nmf_euc_sparse_es.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audiofilter/nmflib/HEAD/nmf_euc_sparse_es.m -------------------------------------------------------------------------------- /nmf_kl.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audiofilter/nmflib/HEAD/nmf_kl.m -------------------------------------------------------------------------------- /nmf_kl_con.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audiofilter/nmflib/HEAD/nmf_kl_con.m -------------------------------------------------------------------------------- /nmf_kl_loc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audiofilter/nmflib/HEAD/nmf_kl_loc.m -------------------------------------------------------------------------------- /nmf_kl_ns.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audiofilter/nmflib/HEAD/nmf_kl_ns.m -------------------------------------------------------------------------------- /nmf_kl_sparse_es.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audiofilter/nmflib/HEAD/nmf_kl_sparse_es.m -------------------------------------------------------------------------------- /nmf_kl_sparse_v.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audiofilter/nmflib/HEAD/nmf_kl_sparse_v.m -------------------------------------------------------------------------------- /normalize_H.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audiofilter/nmflib/HEAD/normalize_H.m -------------------------------------------------------------------------------- /normalize_W.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audiofilter/nmflib/HEAD/normalize_W.m -------------------------------------------------------------------------------- /parse_opt.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audiofilter/nmflib/HEAD/parse_opt.m --------------------------------------------------------------------------------