Add gamma and ln_gamma functions to f32 and f64
This commit is contained in:
parent
a17c7968b7
commit
fcecaff16e
7 changed files with 158 additions and 1 deletions
|
|
@ -30,4 +30,8 @@ extern "C" {
|
|||
pub fn tanf(n: f32) -> f32;
|
||||
pub fn tanh(n: f64) -> f64;
|
||||
pub fn tanhf(n: f32) -> f32;
|
||||
pub fn tgamma(n: f64) -> f64;
|
||||
pub fn tgammaf(n: f32) -> f32;
|
||||
pub fn lgamma_r(n: f64, s: &mut i32) -> f64;
|
||||
pub fn lgammaf_r(n: f32, s: &mut i32) -> f32;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue