This library implements analytic/trigonometric functions for fixed point numbers.
Implemented functions:
sqrt
from trait FixedSqrt
FixedSqrt
is not implemented for fixed numbers with less than 2 integer bits, but there are functions that work on those types: sqrt_i1
, ...sin_cos
, sin
, cos
, tan
from trait FixedSinCos
FixedSinCos
is not implemented for fixed numbers with less than 7 integer bits, but there are functions that work on some of those types: sin_cos_i7
, ...sin_cos_rad
function which is very imprecise; check source code for why, feel free to fix it (its not a priority for me)There are traits and standalone functions, see examples on how to use them.
Check the examples to see about how much error this implementation produces.
Usually sqrt
has an error of around 1-2 Delta.
(Delta = the distance to the next representable number)
sin_cos
may produce bigger errors, around 1-2 decimal places.
You can check or run the benchmarks in benches
.
Here are some conclusions I've got to:
2022-09-28
Calculation time for sin_cos varies with the fixed number's byte size.
Notes:
cordic
's sin_cos
on FixedI64
cordic
works with radians, I used the same angle valuessin_cos
of a lot bigger angle on the same number representation sizeAll code in this repository is dual-licensed under either:
at your option.
We use code modified from cordic, licensed as BSD-3-Clause:
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.