Nothing
sampling2grid <- function(samp){
#Check if there is already a grid
if (length(samp@grid)>0){
#It is the general case where there is a grid
#including irregular deterministic case
return(samp@grid)
}
#Check if this grid is random
if (samp@random==FALSE){
#Regular deterministic grid
return(seq(samp@Initial[1],samp@Terminal[1],length=samp@n[1]+1)) #Attention! do not treat multifrequency grid
}
return(1) #To do: Random grid
}
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.