Uses of Class
org.apache.commons.statistics.descriptive.Product
-
Packages that use Product Package Description org.apache.commons.statistics.descriptive Implementations of univariate statistics. -
-
Uses of Product in org.apache.commons.statistics.descriptive
Fields in org.apache.commons.statistics.descriptive declared as Product Modifier and Type Field Description private Product
DoubleStatistics. product
TheProduct
implementation.private Product
IntStatistics. product
TheProduct
implementation.private Product
LongStatistics. product
TheProduct
implementation.Fields in org.apache.commons.statistics.descriptive with type parameters of type Product Modifier and Type Field Description private java.util.function.Function<double[],Product>
DoubleStatistics.Builder. product
TheProduct
constructor.private java.util.function.Function<int[],Product>
IntStatistics.Builder. product
TheProduct
constructor.private java.util.function.Function<long[],Product>
LongStatistics.Builder. product
TheProduct
constructor.Methods in org.apache.commons.statistics.descriptive that return Product Modifier and Type Method Description Product
Product. combine(Product other)
static Product
Product. create()
Creates an instance.static Product
Product. of(double... values)
Returns an instance populated using the inputvalues
.static Product
Product. of(int... values)
Returns an instance populated using the inputvalues
.static Product
Product. of(long... values)
Returns an instance populated using the inputvalues
.Methods in org.apache.commons.statistics.descriptive with parameters of type Product Modifier and Type Method Description Product
Product. combine(Product other)
Constructors in org.apache.commons.statistics.descriptive with parameters of type Product Constructor Description DoubleStatistics(long count, Min min, Max max, FirstMoment moment, Sum sum, Product product, SumOfSquares sumOfSquares, SumOfLogs sumOfLogs, StatisticsConfiguration config)
Create an instance.IntStatistics(long count, IntMin min, IntMax max, FirstMoment moment, IntSum sum, Product product, IntSumOfSquares sumOfSquares, SumOfLogs sumOfLogs, StatisticsConfiguration config)
Create an instance.LongStatistics(long count, LongMin min, LongMax max, FirstMoment moment, LongSum sum, Product product, LongSumOfSquares sumOfSquares, SumOfLogs sumOfLogs, StatisticsConfiguration config)
Create an instance.
-