pub fn biryprime<T: BesselFloat>(z: Complex<T>) -> Result<Complex<T>, Error>Expand description
Derivative of the Airy function of the second kind, Bi’(z).
Computes the derivative of Bi(z) for complex z.
Satisfies the differential equation Bi''(z) = z · Bi(z).
§Example
use complex_bessel::biryprime;
use num_complex::Complex;
let z = Complex::new(0.0_f64, 0.0);
let bi_prime = biryprime(z).unwrap();
assert!((bi_prime.re - 0.4483).abs() < 1e-3); // Bi'(0) ≈ 0.4483§Errors
Returns Error if the computation fails.