Hi Guys
How wil this javascript be converted to B4A
I've tried the Logarithm keyword but still receive error
I've tried this...
Any help appreciated
How wil this javascript be converted to B4A
I've tried the Logarithm keyword but still receive error
B4X:
var totdb = 10 * (Math.log((Math.pow(alpha,2) - Math.pow(rho,2)) / (alpha * (1 - Math.pow(rho,2)))) / Math.LN10);
B4X:
dim var as Float
' all variables alpha, rho, as floats
var = 10 * Logarithm((Power(alpha,2) - (Power(rho,2)) / (alpha * (1 - Power(rho,2))) / ^10)
Any help appreciated