trigamma()
La función en R Language se usa para calcular la segunda derivada del logaritmo natural del valor gamma calculado usando la función gamma.
La función trigamma es básicamente,
trigamma(x) = d2(ln(factorial(n-1)))/dx2
Sintaxis: trigamma(x)
Parámetros:
x: Vector numérico
Ejemplo 1:
# R program to find second derivative # of the lgamma value # Calling the trigamma() Function trigamma(2) trigamma(4) trigamma(5.2)
Producción:
[1] 0.6449341 [1] 0.283823 [1] 0.2119756
Ejemplo 2:
# R program to find second derivative # of the lgamma value # Creating a vector x <- c(2.3, 3, 1.2) # Calling the trigamma() Function trigamma(x) # Calling trigamma() function # on negative values trigamma(-2.3) trigamma(-2)
Producción:
[1] 0.5425375 0.3949341 1.2673772 [1] 14.72591 [1] Inf
Publicación traducida automáticamente
Artículo escrito por nidhi_biet y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA