NewTOAPIA.Drawing.image_filter_kaiser.calc_weight C# (CSharp) 메소드

calc_weight() 공개 메소드

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