Click or drag to resize

SpecialDigamma Class

Provides the Digamma function (the logarithmic derivative of the Gamma function) for complex arguments.
Inheritance Hierarchy
SystemObject
  Altaxo.CalcSpecialDigamma

Namespace: Altaxo.Calc
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3448.0 (4.8.3448.0)
Syntax
C#
public class SpecialDigamma

The SpecialDigamma type exposes the following members.

Constructors
 NameDescription
Public methodSpecialDigammaInitializes a new instance of the SpecialDigamma class
Top
Methods
 NameDescription
Public methodStatic memberasymptotic_series Evaluates digamma(z) using an asymptotic series expansion.
Public methodStatic memberbackward_recurrence Computes digamma(z - n) from digamma(z) using the recurrence relation digamma(z - 1) = digamma(z) - 1/(z - 1).
Public methodStatic memberDigamma Digamma function of complex argument z.
Public methodEqualsDetermines whether the specified object is equal to the current object.
(Inherited from Object)
Protected methodFinalizeAllows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object)
Public methodStatic memberforward_recurrence Computes digamma(z + n) from digamma(z) using the recurrence relation digamma(z + 1) = digamma(z) + 1/z.
Public methodGetHashCodeServes as the default hash function.
(Inherited from Object)
Public methodGetTypeGets the Type of the current instance.
(Inherited from Object)
Protected methodMemberwiseCloneCreates a shallow copy of the current Object.
(Inherited from Object)
Public methodToStringReturns a string that represents the current object.
(Inherited from Object)
Public methodStatic memberzeta Computes the Hurwitz zeta function for integer n = s.
Public methodStatic memberzeta_series Evaluates digamma(z) near a simple root using a Taylor series whose coefficients are expressed via the Hurwitz zeta function.
Top
Remarks
This implementation is based on a translation from SciPy.
See Also