emf.rna.func.tanh <- function (x){
#Tangene Hiperbolica
# J = SIGMOID(z) computes the sigmoid of z.
g = ( exp(x) - exp(-x) ) / ( exp(x) + exp(-x))
return (g)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.