R/emf.rna.func.tanh.R

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)
}
elthonf/Rna-em-R documentation built on May 16, 2019, 5:04 a.m.