Skip to main content
. 2025 Sep 2;25(17):5413. doi: 10.3390/s25175413
Algorithm 1 Estimation of γ for the Log-normal distribution
  function EstimateGamma(X=x1,x2,,xn)
      Ssort(X)
      r1
      n|S|
      krΦ1(r/(n+1))
      tol109 ▹ tolerance on the RTT measurements
      if sign(Θ1(tol))=sign(Θ1(s1tol) then
          γ^MethodOfMoments(S,tol) ▹ fall back to the method of moments
      else
          γ^BisectionMethod(Θ1,tol,s1tol) ▹ bisection on Cohen’s MMLE-I
      end if
  end function