Uses of Class
org.apache.commons.statistics.descriptive.Product
Packages that use Product
Package
Description
Implementations of univariate statistics.
-
Uses of Product in org.apache.commons.statistics.descriptive
Classes in org.apache.commons.statistics.descriptive that implement interfaces with type arguments of type ProductModifier and TypeClassDescriptionfinal classReturns the product of the available values.Fields in org.apache.commons.statistics.descriptive declared as ProductModifier and TypeFieldDescriptionprivate final ProductDoubleStatistics.productTheProductimplementation.private final ProductIntStatistics.productTheProductimplementation.private final ProductLongStatistics.productTheProductimplementation.Fields in org.apache.commons.statistics.descriptive with type parameters of type ProductModifier and TypeFieldDescriptionprivate RangeFunction<double[], Product> DoubleStatistics.Builder.productTheProductconstructor.private RangeFunction<int[], Product> IntStatistics.Builder.productTheProductconstructor.private RangeFunction<long[], Product> LongStatistics.Builder.productTheProductconstructor.Methods in org.apache.commons.statistics.descriptive that return ProductModifier and TypeMethodDescriptionstatic ProductProduct.create()Creates an instance.(package private) static ProductProduct.createFromRange(double[] values, int from, int to) Create an instance using the specified range ofvalues.(package private) static ProductProduct.createFromRange(int[] values, int from, int to) Create an instance using the specified range ofvalues.(package private) static ProductProduct.createFromRange(long[] values, int from, int to) Create an instance using the specified range ofvalues.static ProductProduct.of(double... values) Returns an instance populated using the inputvalues.static ProductProduct.of(int... values) Returns an instance populated using the inputvalues.static ProductProduct.of(long... values) Returns an instance populated using the inputvalues.static ProductProduct.ofRange(double[] values, int from, int to) Returns an instance populated using the specified range ofvalues.static ProductProduct.ofRange(int[] values, int from, int to) Returns an instance populated using the specified range ofvalues.static ProductProduct.ofRange(long[] values, int from, int to) Returns an instance populated using the specified range ofvalues.Methods in org.apache.commons.statistics.descriptive with parameters of type ProductConstructors in org.apache.commons.statistics.descriptive with parameters of type ProductModifierConstructorDescription(package private)DoubleStatistics(long count, Min min, Max max, FirstMoment moment, Sum sum, Product product, SumOfSquares sumOfSquares, SumOfLogs sumOfLogs, StatisticsConfiguration config) Create an instance.(package private)IntStatistics(long count, IntMin min, IntMax max, FirstMoment moment, IntSum sum, Product product, IntSumOfSquares sumOfSquares, SumOfLogs sumOfLogs, StatisticsConfiguration config) Create an instance.(package private)LongStatistics(long count, LongMin min, LongMax max, FirstMoment moment, LongSum sum, Product product, LongSumOfSquares sumOfSquares, SumOfLogs sumOfLogs, StatisticsConfiguration config) Create an instance.