Nothing
"are.parkmu.valid" <-
function(para, nowarn=FALSE) {
if(! is.kmu(para)) return(FALSE)
if(any(is.na(para$para))) return(FALSE)
K <- para$para[1]
M <- para$para[2]
m <- (M*(1+K)^2)/(1+2*K)
op <- options()
GO <- TRUE
if(nowarn == TRUE) options(warn=-1)
if(K < 0) {
warning("Parameter KAPPA is not >= 0, invalid")
GO <- FALSE
}
if(M < 0) {
warning("Parameter MU is not >= 0, invalid")
GO <- FALSE
}
options(op)
if(GO) return(TRUE)
return(FALSE)
}
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.