Revision 2849c21e86f029263deccdfbbeccb0d7cb9e6e2e authored by Matthias Templ on 06 May 2011, 05:59:55 UTC, committed by cran-robot on 06 May 2011, 05:59:55 UTC
1 parent 59ff873
Raw File
constSum.R
constSum <- function(x, const=1){
	return(x / rowSums(x) * const)
}
back to top