Nadav Rotem
Nadav Rotem
Thank you for reaching out. This feature is indeed missing. Can you tell me more how you plan to implement this feature?
Float is statically allocated to the maximum size. However, some algorithms (division at the moment) reduce the size of the word before performing the computation.
Maybe the decision to go with static allocation was not the right decision. I ran into trouble in operations that require higher precision and would benefit from dynamic extension of...
Thank you @terrarier2111 . It would be good to add these functions. I think that ln should be easy to add using the existing methods. Want to give it a...
Hey @fxpineau. Yes, I think that I'll work on implementing them. I already implemented e and pi, and started reading on log and exp. The paper that you attached looks...
I landed a quick implementation of sine(). It's incomplete, and we are still missing support for Inf,NaN, etc. And the Taylor series is unbounded, but the implementation can already compute...
I implemented Sin, Cos, Tan, Exp, Log, Pow, and a few constants (pi, e, ln2). Can you think of other functions or constants?