NewTOAPIA.Drawing.image_filter_kaiser.calc_weight C# (CSharp) Method

calc_weight() public method

public calc_weight ( double x ) : double
x double
return double
        public double calc_weight(double x)
        {
            return bessel_i0(a * Math.Sqrt(1.0 - x * x)) * i0a;
        }