Uses of Class
org.apache.commons.statistics.descriptive.Int128
Packages that use Int128
Package
Description
Implementations of univariate statistics.
-
Uses of Int128 in org.apache.commons.statistics.descriptive
Fields in org.apache.commons.statistics.descriptive declared as Int128Modifier and TypeFieldDescriptionprivate final Int128
IntMean.sum
Sum of the values.private final Int128
IntStandardDeviation.sum
Sum of the values.private final Int128
IntSum.sum
Sum of the values.private final Int128
IntVariance.sum
Sum of the values.private final Int128
LongMean.sum
Sum of the values.private final Int128
LongStandardDeviation.sum
Sum of the values.private final Int128
LongSum.sum
Sum of the values.private final Int128
LongVariance.sum
Sum of the values.Methods in org.apache.commons.statistics.descriptive that return Int128Modifier and TypeMethodDescription(package private) static Int128
Int128.create()
Create an instance.(package private) Int128
IntSum.getSum()
Gets the sum.(package private) Int128
LongSum.getSum()
Gets the sum.(package private) static Int128
Int128.of
(long x) Create an instance of thelong
value.Methods in org.apache.commons.statistics.descriptive with parameters of type Int128Modifier and TypeMethodDescription(package private) void
Adds the value.(package private) static double
IntMean.computeMean
(Int128 sum, long n) Compute the mean.(package private) static double
LongMean.computeMean
(Int128 sum, long n) Compute the mean.private static double
IntVariance.computeSSDevN
(UInt128 sumSq, Int128 sum, long n) Compute the sum-of-squared deviations multiplied by the count of values:n * sum(x^2) - sum(x)^2
.private static double
LongVariance.computeSSDevN
(UInt192 sumSq, Int128 sum, long n) Compute the sum-of-squared deviations multiplied by the count of values:n * sum(x^2) - sum(x)^2
.(package private) static double
IntVariance.computeVarianceOrStd
(UInt128 sumSq, Int128 sum, long n, boolean biased, boolean std) Compute the variance (or standard deviation).(package private) static double
LongVariance.computeVarianceOrStd
(UInt192 sumSq, Int128 sum, long n, boolean biased, boolean std) Compute the variance (or standard deviation).(package private) static double
Divide valuex
by the countn
.Constructors in org.apache.commons.statistics.descriptive with parameters of type Int128ModifierConstructorDescriptionprivate
Create an instance.private
IntStandardDeviation
(UInt128 sumSq, Int128 sum, int n) Create an instance.private
Create an instance.private
IntVariance
(UInt128 sumSq, Int128 sum, int n) Create an instance.private
Create an instance.private
LongStandardDeviation
(UInt192 sumSq, Int128 sum, int n) Create an instance.private
Create an instance.private
LongVariance
(UInt192 sumSq, Int128 sum, int n) Create an instance.