Uses of Class
org.apache.commons.statistics.descriptive.UInt128
Packages that use UInt128
Package
Description
Implementations of univariate statistics.
-
Uses of UInt128 in org.apache.commons.statistics.descriptive
Fields in org.apache.commons.statistics.descriptive declared as UInt128Modifier and TypeFieldDescriptionprivate final UInt128IntStandardDeviation.sumSqSum of the squared values.private final UInt128IntSumOfSquares.sumSqSum of the squared values.private final UInt128IntVariance.sumSqSum of the squared values.Methods in org.apache.commons.statistics.descriptive that return UInt128Modifier and TypeMethodDescription(package private) static UInt128UInt128.create()Create an instance.(package private) UInt128IntSumOfSquares.getSumOfSquares()Gets the sum of squares.(package private) static UInt128Create an instance of theUInt96value.(package private) UInt128Int128.squareLow()Compute the square of the low 64-bits of this number.(package private) UInt128Subtracts the value.(package private) UInt128UInt128.unsignedMultiply(int x) Multiply by the unsigned value.Methods in org.apache.commons.statistics.descriptive with parameters of type UInt128Modifier and TypeMethodDescription(package private) voidAdds the value in-place.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.(package private) static doubleIntVariance.computeVarianceOrStd(UInt128 sumSq, Int128 sum, long n, boolean biased, boolean std) Compute the variance (or standard deviation).(package private) UInt128Subtracts the value.(package private) UInt192Subtracts the value.Constructors in org.apache.commons.statistics.descriptive with parameters of type UInt128ModifierConstructorDescriptionprivateIntStandardDeviation(UInt128 sumSq, Int128 sum, int n) Create an instance.privateIntSumOfSquares(UInt128 sumSq) Create an instance.privateIntVariance(UInt128 sumSq, Int128 sum, int n) Create an instance.