#' MaturityAtAge
#'
#' @param Length
#' @param Fish
#'
#' @return Vector of percent sexually mature at age
#' @export
MaturityAtAge <- function(Length,Fish)
{
s50<- Fish$Mat50
s95<- Fish$Mat95
mature<- ((1/(1+exp(-log(19)*((Length-s50)/(s95-s50))))))
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.