pub fn hyp1f0<T: HypergeometricArg>(a: f64, z: T) -> TExpand description
Hypergeometric function $_1F_0\left[a\middle| z\right]$ for real or complex $z$
This function is currently not implemented in SciPy, but is straightforward to evaluate.
Both f64 and num_complex::Complex<f64> are accepted for z.
§Notes
This function is defined as
$$ _1F_0\left[a\middle| z\right] = \sum_{n=0}^\infty \rpow a n {z^n \over n!} $$
Here $\rpow \square n$ is the rising factorial; see pow_rising.
It’s also equal to $(1 - z)^{-a}$.