I'm trying to produce a calculator for Logarithms
with Base a and Argument b using NumPy
.
I have read the documentation for NumPy
but it looks so confusing.
How do we calculate Log_a (b)
using NumPy
?
Thank you
I'm trying to produce a calculator for Logarithms
with Base a and Argument b using NumPy
.
I have read the documentation for NumPy
but it looks so confusing.
How do we calculate Log_a (b)
using NumPy
?
Thank you
this is basic maths. You can use the approach of log(value)/log(base)
For more information, this cheatsheet seems to cover it. https://www.mathcentre.ac.uk/resources/Algebra%20leaflets/mc-logs3-2009-1.pdf
I hope this helps