Package pulse.math

Class LegendrePoly

  • All Implemented Interfaces:
    Serializable

    public class LegendrePoly
    extends Object
    implements Serializable
    A utility class represents the Legendre polynomial of a given order.

    May be useful in some applications, particularly, for calculating the ordinate sets in the discrete ordinates method. Allows calculating its coefficients, the value of the polynomial and its derivative at a given point, and the roots of the polynomial (with the help of a LaguerreSolver.

    See Also:
    LaguerreSolver, Wiki page, Serialized Form
    • Constructor Detail

      • LegendrePoly

        public LegendrePoly​(int n)
        Creates a Legendre polynomial of the order n. The coefficients of the polynomial are immediately calculated.
        Parameters:
        n - the order of the polynomial.
    • Method Detail

      • binomial

        public static long binomial​(int m,
                                    int k)
        Fast calculation of binomial coefficient Cmk = m!/(k!(m-k)!)
        Parameters:
        m - integer.
        k - integer, k ≤ m.
        Returns:
        binomial coefficient Cmk.
      • generalisedBinomial

        public static double generalisedBinomial​(double alpha,
                                                 int k)
        Calculates the generalised binomial coefficient.
        Parameters:
        k - integer.
        alpha - a double value
        Returns:
        the generalised binomial coefficient Cαk.
      • coefficients

        public void coefficients()
        This will generate the coefficients for the Legendre polynomial, arranged in order of significance (from x0 to xn). The coeffients will then be stored in a double array for further use.
      • derivative

        public double derivative​(double x)
        Calculates the derivative of this Legendre polynomial. The coefficients are assumed to be known.
        Parameters:
        x - a real value.
        Returns:
        the derivative at x.
      • getOrder

        public int getOrder()
        Returns:
        the order of this polynomial.
      • poly

        public double poly​(double x)
        Calculates the value of this Legendre polynomial at x
        Parameters:
        x - a real value.
        Returns:
        the value of the Legendre polynomial at x.
      • roots

        public double[] roots()
        Uses a LaguerreSolver to calculate the roots of this polynomial. All coefficients are assumed to be known.
        Returns:
        the real roots of the Legendre polynomial.