Nothing
#' Turn each non-zero element of the F-matrix into a vector
#'
#' @keywords internal
#'
#' @param Fmat xx
#'
#' @return
#'
#' @examples
vectorise <- function(Fmat){
g <- vector()
for (i in Fmat){
if (i > -0){
g[[length(g)+1]] <- i
}
}
return(g)
}
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.