Nothing
mode.lands.t <-
function (nu, zeta)
{
if (nu < 2)
stop("'nu' must be greater than or equal to 2")
fcn <- function(theta, nu, zeta) {
-(nu - 1) * tan(theta) + (1 + nu) * zeta * cos(theta)
}
theta.max <- uniroot(fcn, interval = c(-pi/2, pi/2), nu = nu,
zeta = zeta)$root
sqrt(nu) * tan(theta.max)
}
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.