Nothing
#' This function normalises each column in F to row sum
#'
#' @keywords internal
#'
#' @param Fmat xx
#'
#' @return A matrix
#'
#' @examples
Normalise_F <- function(Fmat){
F_1<- Fmat
Fchl <- F_1[,ncol(F_1)]
F_1 <- F_1 / Fchl
F.sum <- rowSums(F_1)
#F_1 <- F/norm(F,'F')
F_1 <- F_1 / F.sum
F_1m <- as.matrix(F_1)
return(list(F_1m,F.sum))
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.