[][src]Function cf_functions::gamma_cf

pub fn gamma_cf(u: &Complex<f64>, a: f64, b: f64) -> Complex<f64>

Returns characteristic function of a gamma distribution.

Examples

extern crate num_complex;
use num_complex::Complex;
extern crate cf_functions;
let u = Complex::new(1.0, 1.0);
let a = 0.5;
let b = 0.6;
let cf = cf_functions::gamma_cf(
    &u, a, b
);