Can someone check my math on this:
Given this:
I want to calculate λ*1000, does the following math work?Lambda-16 is converted to Lambda as follows:
if (λ16 < 36864)
λ = ( λ16 / 8192 ) + 0.5
else
λ = 5.0 + ((λ16 - 36864 ) / 128)
Regardsif (λ16 < 36864)
λ = (λ16*8.192) + 500 (Edit, should be: λ = (λ16/8.192) + 500)
else
λ = 5000 + ((λ16 - 36864 )*7.8125 )
Paul





Reply With Quote