Click or drag to resize

AdvancedMathIntegralCi Method

Computes the cosine integral.

Namespace:  Meta.Numerics.Functions
Assembly:  Meta.Numerics (in Meta.Numerics.dll) Version: 4.1.4
Syntax
public static double IntegralCi(
	double x
)

Parameters

x
Type: SystemDouble
The argument, which must be non-negative.

Return Value

Type: Double
The value of Ci(x).
Exceptions
ExceptionCondition
ArgumentOutOfRangeExceptionx is negative.
Remarks

The cosine integral is defined as:

The cosine integral diverges logarithmically to negative infinity at the origin and executes a damped oscillation around zero as its argument increases.

To obtain the non-divergent part of the consine integral near the origin, use IntegralCin(Double).

See Also