Nothing
pcircpurka <- function(u, m, a, rads = FALSE) {
if ( !rads ) {
u <- u * pi / 180
m <- m * pi / 180
}
a1 <- (u - m) * ( exp(a * abs(u - m) ) - 1 ) * exp(a * pi - a * abs(u - m) )
b1 <- 2 * ( exp(a * pi) - 1 ) * abs(u - m)
a0 <- - m * ( exp(a * m) - 1 ) * exp(a * pi - a * m )
b0 <- 2 * ( exp(a * pi) - 1 ) * m
a1 / b1 - a0/b0
}
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.