monte 0.1.4

Fundamental operations for scientific computing directly with Polars
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
pub const PI: f64 = 3.14159265358979323846;
pub const PI_2: f64 = 1.57079632679489661923;
pub const PI_4: f64 = 0.785398163397448309616;
pub const TAU: f64 = 6.28318530717958647692; // shoutout to Vihart, this is only here because of you :)
pub const TAU_2: f64 = PI;
pub const TAU_4: f64 = PI_2;
pub const E: f64 = 2.71828182845904523536;
pub const ONE_PI: f64 = 0.318309886183790671538;
pub const TWO_PI: f64 = 0.636619772367581343076;
pub const TWO_SQRTPI: f64 = 1.12837916709551257390;
pub const SQRT_2: f64 = 1.41421356237309504880;
pub const ONE_SQRT_2: f64 = 0.707106781186547524401;
pub const LOG2E: f64 = 1.44269504088896340736;
pub const LOG10E: f64 = 0.434294481903251827651;
pub const LN2: f64 = 0.693147180559945309417;
pub const LN10: f64 = 2.30258509299404568402;