Logarithm requires two parameters
Number (as double), and base (as double)
If I use base = 10 it returns result very different vith VisualBasic
With VB
MoM = 15
Zd = ((0.434294481903252 * (Log(MoM))) - 0.305) / 0.235
Zd = 3.706
With Java
MoM = 15
Zd = ((0.434294481903252 * (Math.Log(MoM))) - 0.305) / 0.235
Zd = 3.706
Vith B4A
MoM = 15
Zd = ((0.434294481903252 * (Logarithm(MoM, 10))) - 0.305) / 0.235
Zd = 0.875
How choose the base, vith Vb and with Java there is not Base???
What is base?
Thank you