[][src]Function cf_functions::gauss::gauss_log_cf_cmp

pub fn gauss_log_cf_cmp(
    u: &Complex<f64>,
    mu: &Complex<f64>,
    sigma: f64
) -> Complex<f64>

Returns log of Gaussian characteristic function with complex mu

Examples

extern crate num_complex;
use num_complex::Complex;
extern crate cf_functions;
let u = Complex::new(1.0, 1.0);
let mu = Complex::new(1.0, 1.0);
let sigma = 0.3;
let log_cf = cf_functions::gauss::gauss_log_cf_cmp(
    &u, &mu, sigma
);