File: seed-base.R

package info (click to toggle)
r-cran-nmf 0.23.0-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 3,344 kB
  • sloc: cpp: 680; ansic: 7; makefile: 2
file content (13 lines) | stat: -rw-r--r-- 391 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
# Basic NMF seeding methods
# 
# Author: Renaud Gaujoux
###############################################################################

#' @include registry-seed.R
NULL

## Register base seeding methods
# None: do nothing and return object unchanged
setNMFSeed('none', function(object, x, ...){object}, overwrite=TRUE)
# Random: use function rnmf
setNMFSeed('random', rnmf, overwrite=TRUE)