2020-02-03 05:00:36 +01:00
|
|
|
// Copyright (c) 2019-2020 Alexander Medvednikov. All rights reserved.
|
2019-06-22 20:20:28 +02:00
|
|
|
// Use of this source code is governed by an MIT license
|
|
|
|
// that can be found in the LICENSE file.
|
|
|
|
module math
|
|
|
|
|
2019-10-15 03:46:40 +02:00
|
|
|
#include <math.h>
|
2019-12-22 00:22:32 +01:00
|
|
|
|
2020-02-26 13:31:54 +01:00
|
|
|
fn C.acos(x f64) f64
|
2019-11-07 20:04:18 +01:00
|
|
|
fn C.asin(x f64) f64
|
|
|
|
fn C.atan(x f64) f64
|
|
|
|
fn C.atan2(y f64, x f64) f64
|
|
|
|
fn C.cbrt(x f64) f64
|
|
|
|
fn C.ceil(x f64) f64
|
|
|
|
fn C.cos(x f64) f64
|
2020-02-26 13:31:54 +01:00
|
|
|
fn C.cosf(x f32) f32
|
2019-11-07 20:04:18 +01:00
|
|
|
fn C.cosh(x f64) f64
|
|
|
|
fn C.erf(x f64) f64
|
|
|
|
fn C.erfc(x f64) f64
|
|
|
|
fn C.exp(x f64) f64
|
|
|
|
fn C.exp2(x f64) f64
|
2019-12-15 17:37:17 +01:00
|
|
|
fn C.fabs(x f64) f64
|
2019-11-07 20:04:18 +01:00
|
|
|
fn C.floor(x f64) f64
|
|
|
|
fn C.fmod(x f64, y f64) f64
|
|
|
|
fn C.hypot(x f64, y f64) f64
|
|
|
|
fn C.log(x f64) f64
|
|
|
|
fn C.log2(x f64) f64
|
|
|
|
fn C.log10(x f64) f64
|
|
|
|
fn C.lgamma(x f64) f64
|
|
|
|
fn C.pow(x f64, y f64) f64
|
2020-02-26 13:31:54 +01:00
|
|
|
fn C.powf(x f32, y f32) f32
|
2019-11-07 20:04:18 +01:00
|
|
|
fn C.round(x f64) f64
|
|
|
|
fn C.sin(x f64) f64
|
2020-02-26 13:31:54 +01:00
|
|
|
fn C.sinf(x f32) f32
|
2019-11-24 04:27:02 +01:00
|
|
|
fn C.sinh(x f64) f64
|
2019-11-07 20:04:18 +01:00
|
|
|
fn C.sqrt(x f64) f64
|
2020-02-10 18:48:44 +01:00
|
|
|
fn C.sqrtf(x f32) f32
|
2019-11-07 20:04:18 +01:00
|
|
|
fn C.tgamma(x f64) f64
|
|
|
|
fn C.tan(x f64) f64
|
2020-02-26 13:31:54 +01:00
|
|
|
fn C.tanf(x f32) f32
|
2019-11-07 20:04:18 +01:00
|
|
|
fn C.tanh(x f64) f64
|
2019-12-22 00:22:32 +01:00
|
|
|
fn C.trunc(x f64) f64
|
2020-02-26 13:31:54 +01:00
|
|
|
|
2019-07-12 07:01:12 +02:00
|
|
|
// NOTE
|
|
|
|
// When adding a new function, please make sure it's in the right place.
|
2019-07-17 00:03:51 +02:00
|
|
|
// All functions are sorted alphabetically.
|
2020-02-26 13:31:54 +01:00
|
|
|
|
2019-06-30 15:33:37 +02:00
|
|
|
// Returns the absolute value.
|
2019-06-26 17:49:50 +02:00
|
|
|
pub fn abs(a f64) f64 {
|
2019-12-15 17:37:17 +01:00
|
|
|
return C.fabs(a)
|
2019-06-22 20:20:28 +02:00
|
|
|
}
|
|
|
|
|
2019-09-14 22:54:14 +02:00
|
|
|
// acos calculates inverse cosine (arccosine).
|
2019-06-26 17:49:50 +02:00
|
|
|
pub fn acos(a f64) f64 {
|
2019-06-24 16:05:30 +02:00
|
|
|
return C.acos(a)
|
|
|
|
}
|
|
|
|
|
2019-09-14 22:54:14 +02:00
|
|
|
// asin calculates inverse sine (arcsine).
|
2019-06-26 17:49:50 +02:00
|
|
|
pub fn asin(a f64) f64 {
|
2019-06-24 16:05:30 +02:00
|
|
|
return C.asin(a)
|
|
|
|
}
|
|
|
|
|
2019-09-14 22:54:14 +02:00
|
|
|
// atan calculates inverse tangent (arctangent).
|
2019-06-26 17:49:50 +02:00
|
|
|
pub fn atan(a f64) f64 {
|
2019-06-24 16:05:30 +02:00
|
|
|
return C.atan(a)
|
|
|
|
}
|
|
|
|
|
2019-09-14 22:54:14 +02:00
|
|
|
// atan2 calculates inverse tangent with two arguments, returns the angle between the X axis and the point.
|
2019-06-26 17:49:50 +02:00
|
|
|
pub fn atan2(a, b f64) f64 {
|
2019-06-24 16:05:30 +02:00
|
|
|
return C.atan2(a, b)
|
|
|
|
}
|
|
|
|
|
2019-07-02 12:50:33 +02:00
|
|
|
// cbrt calculates cubic root.
|
2019-06-30 15:33:37 +02:00
|
|
|
pub fn cbrt(a f64) f64 {
|
2019-07-02 12:50:33 +02:00
|
|
|
return C.cbrt(a)
|
2019-06-30 15:33:37 +02:00
|
|
|
}
|
|
|
|
|
2019-11-07 17:54:51 +01:00
|
|
|
// ceil returns the nearest f64 greater or equal to the provided value.
|
|
|
|
pub fn ceil(a f64) f64 {
|
2019-06-23 08:19:37 +02:00
|
|
|
return C.ceil(a)
|
|
|
|
}
|
|
|
|
|
2019-07-02 12:50:33 +02:00
|
|
|
// cos calculates cosine.
|
2019-06-26 17:49:50 +02:00
|
|
|
pub fn cos(a f64) f64 {
|
2019-06-22 20:20:28 +02:00
|
|
|
return C.cos(a)
|
|
|
|
}
|
|
|
|
|
2020-02-26 13:31:54 +01:00
|
|
|
// cosf calculates cosine. (float32)
|
|
|
|
pub fn cosf(a f32) f32 {
|
|
|
|
return C.cosf(a)
|
|
|
|
}
|
|
|
|
|
2019-07-02 12:50:33 +02:00
|
|
|
// cosh calculates hyperbolic cosine.
|
2019-06-26 17:49:50 +02:00
|
|
|
pub fn cosh(a f64) f64 {
|
2019-06-23 08:19:37 +02:00
|
|
|
return C.cosh(a)
|
|
|
|
}
|
|
|
|
|
2019-07-12 07:46:40 +02:00
|
|
|
// degrees convert from degrees to radians.
|
|
|
|
pub fn degrees(radians f64) f64 {
|
2019-10-12 21:31:05 +02:00
|
|
|
return radians * (180.0 / pi)
|
2019-07-12 07:46:40 +02:00
|
|
|
}
|
|
|
|
|
2019-09-14 22:54:14 +02:00
|
|
|
// exp calculates exponent of the number (math.pow(math.E, a)).
|
2019-06-26 17:49:50 +02:00
|
|
|
pub fn exp(a f64) f64 {
|
2019-06-23 08:19:37 +02:00
|
|
|
return C.exp(a)
|
|
|
|
}
|
|
|
|
|
2019-07-02 12:50:33 +02:00
|
|
|
// digits returns an array of the digits of n in the given base.
|
2019-08-06 18:13:04 +02:00
|
|
|
pub fn digits(_n, base int) []int {
|
2019-11-11 03:21:47 +01:00
|
|
|
if base < 2 {
|
|
|
|
panic('digits: Cannot find digits of n with base $base')
|
|
|
|
}
|
2019-09-16 20:26:05 +02:00
|
|
|
mut n := _n
|
2019-07-02 12:50:33 +02:00
|
|
|
mut sign := 1
|
|
|
|
if n < 0 {
|
|
|
|
sign = -1
|
|
|
|
n = -n
|
|
|
|
}
|
2020-04-26 11:42:44 +02:00
|
|
|
mut res := []int{}
|
2019-07-02 12:50:33 +02:00
|
|
|
for n != 0 {
|
|
|
|
res << (n % base) * sign
|
|
|
|
n /= base
|
|
|
|
}
|
|
|
|
return res
|
|
|
|
}
|
|
|
|
|
2019-09-14 22:54:14 +02:00
|
|
|
// erf computes the error function value
|
2019-07-12 07:46:40 +02:00
|
|
|
pub fn erf(a f64) f64 {
|
|
|
|
return C.erf(a)
|
|
|
|
}
|
|
|
|
|
2019-09-14 22:54:14 +02:00
|
|
|
// erfc computes the complementary error function value
|
2019-07-12 07:46:40 +02:00
|
|
|
pub fn erfc(a f64) f64 {
|
|
|
|
return C.erfc(a)
|
|
|
|
}
|
|
|
|
|
2019-07-02 12:50:33 +02:00
|
|
|
// exp2 returns the base-2 exponential function of a (math.pow(2, a)).
|
2019-06-30 15:33:37 +02:00
|
|
|
pub fn exp2(a f64) f64 {
|
2019-07-02 12:50:33 +02:00
|
|
|
return C.exp2(a)
|
2019-06-30 15:33:37 +02:00
|
|
|
}
|
|
|
|
|
2019-11-07 17:54:51 +01:00
|
|
|
// floor returns the nearest f64 lower or equal of the provided value.
|
2019-06-26 17:49:50 +02:00
|
|
|
pub fn floor(a f64) f64 {
|
2019-06-23 08:19:37 +02:00
|
|
|
return C.floor(a)
|
|
|
|
}
|
|
|
|
|
2019-07-02 12:50:33 +02:00
|
|
|
// fmod returns the floating-point remainder of number / denom (rounded towards zero):
|
2019-06-26 17:49:50 +02:00
|
|
|
pub fn fmod(a, b f64) f64 {
|
2019-06-24 13:08:38 +02:00
|
|
|
return C.fmod(a, b)
|
2019-06-24 10:50:45 +02:00
|
|
|
}
|
|
|
|
|
2019-07-12 07:46:40 +02:00
|
|
|
// gamma computes the gamma function value
|
|
|
|
pub fn gamma(a f64) f64 {
|
|
|
|
return C.tgamma(a)
|
|
|
|
}
|
|
|
|
|
2019-07-02 12:50:33 +02:00
|
|
|
// gcd calculates greatest common (positive) divisor (or zero if a and b are both zero).
|
2019-08-07 08:19:27 +02:00
|
|
|
pub fn gcd(a_, b_ i64) i64 {
|
2019-09-16 20:26:05 +02:00
|
|
|
mut a := a_
|
|
|
|
mut b := b_
|
2019-06-29 17:24:55 +02:00
|
|
|
if a < 0 {
|
|
|
|
a = -a
|
|
|
|
}
|
|
|
|
if b < 0 {
|
|
|
|
b = -b
|
|
|
|
}
|
|
|
|
for b != 0 {
|
|
|
|
a %= b
|
|
|
|
if a == 0 {
|
|
|
|
return b
|
|
|
|
}
|
|
|
|
b %= a
|
|
|
|
}
|
|
|
|
return a
|
|
|
|
}
|
|
|
|
|
2019-07-23 18:28:30 +02:00
|
|
|
// Returns hypotenuse of a right triangle.
|
|
|
|
pub fn hypot(a, b f64) f64 {
|
|
|
|
return C.hypot(a, b)
|
|
|
|
}
|
|
|
|
|
2019-06-29 17:24:55 +02:00
|
|
|
// lcm calculates least common (non-negative) multiple.
|
2019-07-03 18:51:03 +02:00
|
|
|
pub fn lcm(a, b i64) i64 {
|
2019-06-29 17:24:55 +02:00
|
|
|
if a == 0 {
|
|
|
|
return a
|
|
|
|
}
|
|
|
|
res := a * (b / gcd(b, a))
|
|
|
|
if res < 0 {
|
|
|
|
return -res
|
|
|
|
}
|
|
|
|
return res
|
|
|
|
}
|
|
|
|
|
2019-07-12 20:45:56 +02:00
|
|
|
// log calculates natural (base-e) logarithm of the provided value.
|
2019-06-26 17:49:50 +02:00
|
|
|
pub fn log(a f64) f64 {
|
2019-06-23 08:19:37 +02:00
|
|
|
return C.log(a)
|
|
|
|
}
|
|
|
|
|
2019-07-02 12:50:33 +02:00
|
|
|
// log2 calculates base-2 logarithm of the provided value.
|
2019-06-30 15:33:37 +02:00
|
|
|
pub fn log2(a f64) f64 {
|
2019-07-11 08:26:31 +02:00
|
|
|
return C.log2(a)
|
2019-06-30 15:33:37 +02:00
|
|
|
}
|
|
|
|
|
2019-07-02 12:50:33 +02:00
|
|
|
// log10 calculates the common (base-10) logarithm of the provided value.
|
2019-06-26 17:49:50 +02:00
|
|
|
pub fn log10(a f64) f64 {
|
2019-06-23 08:19:37 +02:00
|
|
|
return C.log10(a)
|
|
|
|
}
|
|
|
|
|
2019-07-12 07:46:40 +02:00
|
|
|
// log_gamma computes the log-gamma function value
|
|
|
|
pub fn log_gamma(a f64) f64 {
|
|
|
|
return C.lgamma(a)
|
|
|
|
}
|
|
|
|
|
2019-07-02 12:50:33 +02:00
|
|
|
// log_n calculates base-N logarithm of the provided value.
|
2019-06-30 15:33:37 +02:00
|
|
|
pub fn log_n(a, b f64) f64 {
|
|
|
|
return C.log(a) / C.log(b)
|
|
|
|
}
|
|
|
|
|
2019-07-02 12:50:33 +02:00
|
|
|
// max returns the maximum value of the two provided.
|
2019-06-26 17:49:50 +02:00
|
|
|
pub fn max(a, b f64) f64 {
|
2019-06-22 20:20:28 +02:00
|
|
|
if a > b {
|
|
|
|
return a
|
|
|
|
}
|
|
|
|
return b
|
|
|
|
}
|
|
|
|
|
2019-07-12 20:45:56 +02:00
|
|
|
// min returns the minimum value of the two provided.
|
2019-06-26 17:49:50 +02:00
|
|
|
pub fn min(a, b f64) f64 {
|
2019-06-22 20:20:28 +02:00
|
|
|
if a < b {
|
|
|
|
return a
|
|
|
|
}
|
|
|
|
return b
|
|
|
|
}
|
|
|
|
|
2019-07-02 12:50:33 +02:00
|
|
|
// pow returns base raised to the provided power.
|
2019-06-26 17:49:50 +02:00
|
|
|
pub fn pow(a, b f64) f64 {
|
2019-06-22 20:20:28 +02:00
|
|
|
return C.pow(a, b)
|
|
|
|
}
|
|
|
|
|
2020-02-26 13:31:54 +01:00
|
|
|
// powf returns base raised to the provided power. (float32)
|
|
|
|
pub fn powf(a, b f32) f32 {
|
|
|
|
return C.powf(a, b)
|
|
|
|
}
|
|
|
|
|
2019-07-02 12:50:33 +02:00
|
|
|
// radians convert from radians to degrees.
|
2019-06-26 17:49:50 +02:00
|
|
|
pub fn radians(degrees f64) f64 {
|
2019-10-12 21:31:05 +02:00
|
|
|
return degrees * (pi / 180.0)
|
2019-06-22 20:20:28 +02:00
|
|
|
}
|
|
|
|
|
2019-07-02 12:50:33 +02:00
|
|
|
// round returns the integer nearest to the provided value.
|
2019-06-26 17:49:50 +02:00
|
|
|
pub fn round(f f64) f64 {
|
2019-06-22 20:20:28 +02:00
|
|
|
return C.round(f)
|
|
|
|
}
|
|
|
|
|
2019-07-02 12:50:33 +02:00
|
|
|
// sin calculates sine.
|
2019-06-26 17:49:50 +02:00
|
|
|
pub fn sin(a f64) f64 {
|
2019-06-22 20:20:28 +02:00
|
|
|
return C.sin(a)
|
|
|
|
}
|
|
|
|
|
2020-02-26 13:31:54 +01:00
|
|
|
// sinf calculates sine. (float32)
|
|
|
|
pub fn sinf(a f32) f32 {
|
|
|
|
return C.sinf(a)
|
|
|
|
}
|
|
|
|
|
2019-07-02 12:50:33 +02:00
|
|
|
// sinh calculates hyperbolic sine.
|
2019-06-26 17:49:50 +02:00
|
|
|
pub fn sinh(a f64) f64 {
|
2019-06-23 08:19:37 +02:00
|
|
|
return C.sinh(a)
|
|
|
|
}
|
|
|
|
|
2019-07-12 20:45:56 +02:00
|
|
|
// sqrt calculates square-root of the provided value.
|
2019-06-26 17:49:50 +02:00
|
|
|
pub fn sqrt(a f64) f64 {
|
2019-06-22 20:20:28 +02:00
|
|
|
return C.sqrt(a)
|
|
|
|
}
|
2019-12-22 00:22:32 +01:00
|
|
|
|
2020-02-26 13:31:54 +01:00
|
|
|
// sqrtf calculates square-root of the provided value. (float32)
|
2020-02-10 18:48:44 +01:00
|
|
|
pub fn sqrtf(a f32) f32 {
|
|
|
|
return C.sqrtf(a)
|
|
|
|
}
|
|
|
|
|
2019-07-02 12:50:33 +02:00
|
|
|
// tan calculates tangent.
|
2019-06-26 17:49:50 +02:00
|
|
|
pub fn tan(a f64) f64 {
|
2019-06-23 08:19:37 +02:00
|
|
|
return C.tan(a)
|
|
|
|
}
|
|
|
|
|
2020-02-26 13:31:54 +01:00
|
|
|
// tanf calculates tangent. (float32)
|
|
|
|
pub fn tanf(a f32) f32 {
|
|
|
|
return C.tanf(a)
|
|
|
|
}
|
|
|
|
|
2019-07-02 12:50:33 +02:00
|
|
|
// tanh calculates hyperbolic tangent.
|
2019-06-26 17:49:50 +02:00
|
|
|
pub fn tanh(a f64) f64 {
|
2019-06-23 08:19:37 +02:00
|
|
|
return C.tanh(a)
|
|
|
|
}
|
|
|
|
|
2019-07-02 12:50:33 +02:00
|
|
|
// trunc rounds a toward zero, returning the nearest integral value that is not
|
2019-06-30 15:33:37 +02:00
|
|
|
// larger in magnitude than a.
|
2019-06-26 17:49:50 +02:00
|
|
|
pub fn trunc(a f64) f64 {
|
2019-06-23 08:19:37 +02:00
|
|
|
return C.trunc(a)
|
|
|
|
}
|
2019-12-22 00:22:32 +01:00
|
|
|
|
2020-01-29 05:12:43 +01:00
|
|
|
// Faster approximate sin() and cos() implemented from lolremez
|
|
|
|
pub fn aprox_sin(a f64) f64 {
|
|
|
|
a0 := 1.91059300966915117e-31
|
|
|
|
a1 := 1.00086760103908896
|
|
|
|
a2 := -1.21276126894734565e-2
|
|
|
|
a3 := -1.38078780785773762e-1
|
|
|
|
a4 := -2.67353392911981221e-2
|
|
|
|
a5 := 2.08026600266304389e-2
|
|
|
|
a6 := -3.03996055049204407e-3
|
|
|
|
a7 := 1.38235642404333740e-4
|
|
|
|
return a0 + a * (a1 + a * (a2 + a * (a3 + a * (a4 + a * (a5 + a * (a6 + a * a7))))))
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn aprox_cos(a f64) f64 {
|
|
|
|
a0 := 9.9995999154986614e-1
|
|
|
|
a1 := 1.2548995793001028e-3
|
|
|
|
a2 := -5.0648546280678015e-1
|
|
|
|
a3 := 1.2942246466519995e-2
|
|
|
|
a4 := 2.8668384702547972e-2
|
|
|
|
a5 := 7.3726485210586547e-3
|
|
|
|
a6 := -3.8510875386947414e-3
|
|
|
|
a7 := 4.7196604604366623e-4
|
|
|
|
a8 := -1.8776444013090451e-5
|
|
|
|
return a0 + a * (a1 + a * (a2 + a * (a3 + a * (a4 + a * (a5 + a * (a6 + a * (a7 + a * a8)))))))
|
2020-03-27 18:01:46 +01:00
|
|
|
}
|
2020-03-28 18:32:38 +01:00
|
|
|
|
|
|
|
// copysign returns a value with the magnitude of x and the sign of y
|
|
|
|
pub fn copysign(x, y f64) f64 {
|
|
|
|
return f64_from_bits((f64_bits(x) & ~sign_mask) | (f64_bits(y) & sign_mask))
|
|
|
|
}
|