polygamma 0.1.0

This library provides Polygamma function.
Documentation
  • Coverage
  • 50%
    1 out of 2 items documented1 out of 1 items with examples
  • Size
  • Source code size: 6.31 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 1.09 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 10s Average build duration of successful builds.
  • all releases: 10s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • suzusuzu/polygamma
    0 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • suzusuzu

polygamma

Rust Document Crates

This library provides Polygamma function. It is forked from http://www.rd.dnc.ac.jp/~tunenori/src/polygamma.c

Usage

use polygamma::polygamma;

fn main() {
    println!("digamma(1.0)  = {}", polygamma(0, 1.0).unwrap());
    println!("trigamma(1.0) = {}", polygamma(1, 1.0).unwrap());
}