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 Int128IntMean.sumSum of the values.private final Int128IntStandardDeviation.sumSum of the values.private final Int128IntSum.sumSum of the values.private final Int128IntVariance.sumSum of the values.private final Int128LongMean.sumSum of the values.private final Int128LongStandardDeviation.sumSum of the values.private final Int128LongSum.sumSum of the values.private final Int128LongVariance.sumSum of the values.Methods in org.apache.commons.statistics.descriptive that return Int128Modifier and TypeMethodDescription(package private) static Int128Int128.create()Create an instance.(package private) Int128IntSum.getSum()Gets the sum.(package private) Int128LongSum.getSum()Gets the sum.(package private) static Int128Int128.of(long x) Create an instance of thelongvalue.Methods in org.apache.commons.statistics.descriptive with parameters of type Int128Modifier and TypeMethodDescription(package private) voidAdds the value.(package private) static doubleIntMean.computeMean(Int128 sum, long n) Compute the mean.(package private) static doubleLongMean.computeMean(Int128 sum, long n) Compute the mean.private static doubleIntVariance.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 doubleLongVariance.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 doubleIntVariance.computeVarianceOrStd(UInt128 sumSq, Int128 sum, long n, boolean biased, boolean std) Compute the variance (or standard deviation).(package private) static doubleLongVariance.computeVarianceOrStd(UInt192 sumSq, Int128 sum, long n, boolean biased, boolean std) Compute the variance (or standard deviation).Constructors in org.apache.commons.statistics.descriptive with parameters of type Int128ModifierConstructorDescriptionprivateCreate an instance.privateIntStandardDeviation(UInt128 sumSq, Int128 sum, int n) Create an instance.privateCreate an instance.privateIntVariance(UInt128 sumSq, Int128 sum, int n) Create an instance.privateCreate an instance.privateLongStandardDeviation(UInt192 sumSq, Int128 sum, int n) Create an instance.privateCreate an instance.privateLongVariance(UInt192 sumSq, Int128 sum, int n) Create an instance.