Function cf_functions::gauss_log_cf[][src]

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

Returns log of Gaussian characteristic function

Examples

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