Nothing
sigconv <-
function(wigmat, wavepulse)
{
d = dim(wigmat)
Ntrace = d[2]
NLEN=d[1]
KL = floor( length(wavepulse)/2 )
for(i in 1:Ntrace)
{
cx2 = convolve(wigmat[,i], wavepulse, conj = TRUE, type = c("open"))
cx1 = cx2[(KL):((KL)+NLEN-1)]
wigmat[,i] = cx1
}
invisible(wigmat)
}
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.