A libm
-ish program. It provides most of the functions of libm
in pure #![no_std]
Rust.
Note that it is completely unoptimised, using +-*/
and loops only.
Most of the Trig functions are from a CORDIC implementation, apart from sin
, cos
and tan
,
which are done using a Taylor series to the term of x^7
Documentation is missing, but most of the signatures are the same as std
, so use those docs instead.
Most functions have been checked to 4 d.p. with a Casio Scientific Calculator, consider increasing the amount of iterations and validating before using for applications where accuracy is critical.
Add this to your Cargo.toml
toml
mish = "0.2.0"
add this to your crate root
rust
extern crate mish;
and import all functions
rust
use mish::*;
funcs
is where all of the functions are located, all inner functions have been re-exported here
m
contains a majority of the mathematical functionsn
deals with the floating point numbers themselveso
has some basic operationst
contains the trig functions
inv
contains the inverse trig functionst
contains the trig functionsh
contains hyperbolic functionshinv
contains inverse hyperbolic functionsNote: All functions with iterative methods have a counterpart, not included in prelude
, that end with _
.
These methods have an extra integer (i32
or usize
) argument, which specifies the amount of iterations to run for.
This can be used to specify precision vs speed of execution. The methods included by default are wrappers with a default
value for the loop iterations.