0

Basically, I have a constant called F

F=-5.9341737921479211e-05

and I need to get the cubic root of this constant. But when I try to do either

F**(1/3)

or

np.power(F,(1/3))

I always get the result F=1.0, which is completely wrong. The correct result is approximately -0.039. How can I get a precise value instead of this completely wrong result?

It seems to be something basic, but I have no idea why it's happening and I couldn't find anything related.

0 Answers0