Am i not supposed to use the formula:
π(πππ ,π,π)=πππ / (10000 ** 2π/π)
to calculate βanglesβ? I donβt get why i keep getting the error:
Last value must be 0.0009486832980505137
Thank you in advance.
Am i not supposed to use the formula:
π(πππ ,π,π)=πππ / (10000 ** 2π/π)
to calculate βanglesβ? I donβt get why i keep getting the error:
Last value must be 0.0009486832980505137
Thank you in advance.
First, you need to cast βdβ as an np float, and you might throw in some pairs of parenthesis to be sure you get the correct exponent.
Most code Iβve seen uses the np.power() function, instead of the python exponent operator.
Just did that but keep throwing me the same errorβ¦
Oh I was missing one zero β 10,000 instead of 1,000 My bad
Thank you so much!