Nothing
axialnntsrandominitial<-function (M = 1)
{
if (M < 0)
return("M must be nonnegative")
res <- complex(M + 1)
aux <- rnorm(2 * (M + 1))
aux <- sqrt(1/(pi)) * (aux/sqrt(sum(aux^2)))
res[1] <- Mod(aux[1] + (0+1i) * aux[M + 2])
if (M > 0) {
for (k in 2:(M + 1)) {
res[k] <- aux[k] + (0+1i) * aux[k + M + 1]
}
}
else res <- 1/(pi)
return(res)
}
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.