Nothing
#' Normalise F for prochloro
#'
#' @keywords internal
#'
#' @param Fmat
#'
#' @return
#'
#' @examples
Prochloro_Normalise_F <- function (Fmat)
{
F_1 <- Fmat
Fchl <- F_1[, ncol(F_1)]
F_1[1:nrow(F_1)-1,] <- F_1[1:nrow(F_1)-1,]/Fchl[length(Fchl)-1]
F.sum <- rowSums(F_1)
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.