Ank i zle
Ank i zle

Reputation: 2357

How to exponentiate two big floats

I am using golang math/big package, and when I read the documentation, i could not find a exponentiate function for bigFloats. I found something called MantExp but i do not know what this means. How can I exponent floating point bignumbers in go?

Upvotes: 0

Views: 401

Answers (1)

Arun
Arun

Reputation: 1763

Refer this golang.org example ( You may get some hints from this example, See Line 97 in this example)

Upvotes: -1

Related Questions