Uses of Class
org.apache.commons.math4.util.Pair
| Package | Description |
|---|---|
| org.apache.commons.math4.analysis.integration.gauss |
Gauss family of quadrature schemes.
|
| org.apache.commons.math4.distribution |
Implementations of common discrete and continuous distributions.
|
| org.apache.commons.math4.util |
Convenience routines and common data structures used throughout the commons-math library.
|
-
Uses of Pair in org.apache.commons.math4.analysis.integration.gauss
Methods in org.apache.commons.math4.analysis.integration.gauss that return Pair Modifier and Type Method Description protected abstract Pair<T[],T[]>BaseRuleFactory. computeRule(int numberOfPoints)Computes the rule for the given order.protected Pair<java.lang.Double[],java.lang.Double[]>HermiteRuleFactory. computeRule(int numberOfPoints)Computes the rule for the given order.protected Pair<java.lang.Double[],java.lang.Double[]>LaguerreRuleFactory. computeRule(int numberOfPoints)Computes the rule for the given order.protected Pair<java.math.BigDecimal[],java.math.BigDecimal[]>LegendreHighPrecisionRuleFactory. computeRule(int numberOfPoints)Computes the rule for the given order.protected Pair<java.lang.Double[],java.lang.Double[]>LegendreRuleFactory. computeRule(int numberOfPoints)Computes the rule for the given order.Pair<double[],double[]>BaseRuleFactory. getRule(int numberOfPoints)Gets a copy of the quadrature rule with the given number of integration points.protected Pair<T[],T[]>BaseRuleFactory. getRuleInternal(int numberOfPoints)Gets a rule.Methods in org.apache.commons.math4.analysis.integration.gauss with parameters of type Pair Modifier and Type Method Description protected voidBaseRuleFactory. addRule(Pair<T[],T[]> rule)Stores a rule.Constructors in org.apache.commons.math4.analysis.integration.gauss with parameters of type Pair Constructor Description GaussIntegrator(Pair<double[],double[]> pointsAndWeights)Creates an integrator from the given pair of points (first element of the pair) and weights (second element of the pair.SymmetricGaussIntegrator(Pair<double[],double[]> pointsAndWeights)Creates an integrator from the given pair of points (first element of the pair) and weights (second element of the pair. -
Uses of Pair in org.apache.commons.math4.distribution
Methods in org.apache.commons.math4.distribution that return types with arguments of type Pair Modifier and Type Method Description java.util.List<Pair<java.lang.Double,T>>MixtureMultivariateRealDistribution. getComponents()Gets the distributions that make up the mixture model.java.util.List<Pair<T,java.lang.Double>>EnumeratedDistribution. getPmf()Return the probability mass function as a list of <value, probability> pairs.Constructor parameters in org.apache.commons.math4.distribution with type arguments of type Pair Constructor Description EnumeratedDistribution(java.util.List<Pair<T,java.lang.Double>> pmf)Create an enumerated distribution using the given random number generator and probability mass function enumeration.MixtureMultivariateNormalDistribution(java.util.List<Pair<java.lang.Double,MultivariateNormalDistribution>> components)Creates a mixture model from a list of distributions and their associated weights.MixtureMultivariateRealDistribution(java.util.List<Pair<java.lang.Double,T>> components)Creates a mixture model from a list of distributions and their associated weights. -
Uses of Pair in org.apache.commons.math4.util
Methods in org.apache.commons.math4.util that return Pair Modifier and Type Method Description static <K, V> Pair<K,V>Pair. create(K k, V v)Convenience factory method that calls theconstructor.