This is documentation for an old release of SciPy (version 0.19.0). Read this page in the documentation of the latest stable release (version 1.15.1).
scipy.special.shichi¶
- scipy.special.shichi(x, out=None) = <ufunc 'shichi'>¶
Hyperbolic sine and cosine integrals.
The hyperbolic sine integral is
∫x0sinhttdtand the hyperbolic cosine integral is
γ+log(x)+∫x0cosht−1tdtwhere γ is Euler’s constant and log is the principle branch of the logarithm.
Parameters: x : array_like
Real or complex points at which to compute the hyperbolic sine and cosine integrals.
Returns: si : ndarray
Hyperbolic sine integral at x
ci : ndarray
Hyperbolic cosine integral at x
Notes
For real arguments with x < 0, chi is the real part of the hyperbolic cosine integral. For such points chi(x) and chi(x + 0j) differ by a factor of 1j*pi.
For real arguments the function is computed by calling Cephes’ [R514] shichi routine. For complex arguments the algorithm is based on Mpmath’s [R515] shi and chi routines.
References
[R514] (1, 2) Cephes Mathematical Functions Library, http://www.netlib.org/cephes/index.html [R515] (1, 2) Fredrik Johansson and others. “mpmath: a Python library for arbitrary-precision floating-point arithmetic” (Version 0.19) http://mpmath.org/