Class LaguerreRuleFactory

java.lang.Object
org.hipparchus.analysis.integration.gauss.AbstractRuleFactory
org.hipparchus.analysis.integration.gauss.LaguerreRuleFactory
All Implemented Interfaces:
RuleFactory

public class LaguerreRuleFactory extends AbstractRuleFactory
Factory that creates Gauss-type quadrature rule using Laguerre polynomials.
See Also:
  • Constructor Details

    • LaguerreRuleFactory

      public LaguerreRuleFactory()
      Empty constructor.

      This constructor is not strictly necessary, but it prevents spurious javadoc warnings with JDK 18 and later.

      Since:
      3.0
  • Method Details

    • computeRule

      protected Pair<double[],double[]> computeRule(int numberOfPoints)
      Computes the rule for the given order.
      Specified by:
      computeRule in class AbstractRuleFactory
      Parameters:
      numberOfPoints - Order of the rule to be computed.
      Returns:
      the computed rule.