[][src]Trait polylog::Li5

pub trait Li5<T> {
    fn li5(&self) -> T;
}

Provides the fifth order polylogarithm function li5() of a number of type T.

Required methods

fn li5(&self) -> T

Loading content...

Implementations on Foreign Types

impl Li5<Complex<f64>> for Complex<f64>[src]

fn li5(&self) -> Complex<f64>[src]

Returns the fifth order polylogarithm of a complex number of type Complex<f64>.

Example:

extern crate num;
extern crate polylog;
use num::complex::Complex;
use polylog::Li5;

fn main() {
    let z = Complex::new(1.0, 1.0);
    println!("Li5({}) = {}", z, z.li5());
}
Loading content...

Implementors

Loading content...