Class LaguerreRuleFactory
- java.lang.Object
-
- org.hipparchus.analysis.integration.gauss.BaseRuleFactory<Double>
-
- org.hipparchus.analysis.integration.gauss.LaguerreRuleFactory
-
public class LaguerreRuleFactory extends BaseRuleFactory<Double>
Factory that creates Gauss-type quadrature rule using Laguerre polynomials.- See Also:
- Gauss-Laguerre quadrature (Wikipedia)
-
-
Constructor Summary
Constructors Constructor Description LaguerreRuleFactory()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected Pair<Double[],Double[]>
computeRule(int numberOfPoints)
Computes the rule for the given order.-
Methods inherited from class org.hipparchus.analysis.integration.gauss.BaseRuleFactory
addRule, getRule, getRuleInternal
-
-
-
-
Method Detail
-
computeRule
protected Pair<Double[],Double[]> computeRule(int numberOfPoints)
Computes the rule for the given order.- Specified by:
computeRule
in classBaseRuleFactory<Double>
- Parameters:
numberOfPoints
- Order of the rule to be computed.- Returns:
- the computed rule.
-
-