Closed lrnv closed 3 years ago
Hey @lrnv , this is exactly the implementation strategy I plan to use for a^b
as well, once exp
and log
are implemented as per your other issue. I might also add special cases for b
being a small integer or half-integer, if that turns out to be more efficient.
if A and B are MultiFloats, then
a^b
should return a proper output. For the moment i fall back toexp(b*log(a))