Nothing
SNRrms <- function(int, baseline, gauge = 0.80) {
SNR <- 0
int <- sort(int - baseline)
Signal <- max(int)
xN <- which(int/Signal < (1 - gauge))
NVec <- int[xN]
Noise <- sqrt(sum(NVec^2)/length(NVec)) # root mean square
if (is.numeric(Noise)) {
if (Noise != 0) {
SNR <- Signal/Noise
} else {
SNR <- Inf
}
}
return(SNR)
}
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.