Class LaguerreRuleFactory
java.lang.Object
org.hipparchus.analysis.integration.gauss.AbstractRuleFactory
org.hipparchus.analysis.integration.gauss.LaguerreRuleFactory
- All Implemented Interfaces:
 RuleFactory
Factory that creates Gauss-type quadrature rule using Laguerre polynomials.
- See Also:
 
- 
Constructor Summary
Constructors - 
Method Summary
Modifier and TypeMethodDescriptionprotected Pair<double[], double[]> computeRule(int numberOfPoints) Computes the rule for the given order.Methods inherited from class org.hipparchus.analysis.integration.gauss.AbstractRuleFactory
enforceSymmetry, findRoots, getRule 
- 
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
Computes the rule for the given order.- Specified by:
 computeRulein classAbstractRuleFactory- Parameters:
 numberOfPoints- Order of the rule to be computed.- Returns:
 - the computed rule.
 
 
 -