Uses of Class
org.apache.commons.statistics.descriptive.UInt128
-
Packages that use UInt128 Package Description org.apache.commons.statistics.descriptive Implementations of univariate statistics. -
-
Uses of UInt128 in org.apache.commons.statistics.descriptive
Fields in org.apache.commons.statistics.descriptive declared as UInt128 Modifier and Type Field Description private UInt128IntStandardDeviation. sumSqSum of the squared values.private UInt128IntSumOfSquares. sumSqSum of the squared values.private UInt128IntVariance. sumSqSum of the squared values.Methods in org.apache.commons.statistics.descriptive that return UInt128 Modifier and Type Method Description (package private) static UInt128UInt128. create()Create an instance.(package private) UInt128IntSumOfSquares. getSumOfSquares()Gets the sum of squares.(package private) static UInt128UInt128. of(UInt96 x)Create an instance of theUInt96value.(package private) UInt128Int128. squareLow()Compute the square of the low 64-bits of this number.(package private) UInt128UInt128. subtract(UInt128 x)Subtracts the value.(package private) UInt128UInt128. unsignedMultiply(int x)Multiply by the unsigned value.Methods in org.apache.commons.statistics.descriptive with parameters of type UInt128 Modifier and Type Method Description (package private) voidUInt128. add(UInt128 x)Adds 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) UInt128UInt128. subtract(UInt128 x)Subtracts the value.(package private) UInt192UInt192. subtract(UInt128 x)Subtracts the value.Constructors in org.apache.commons.statistics.descriptive with parameters of type UInt128 Constructor Description IntStandardDeviation(UInt128 sumSq, Int128 sum, int n)Create an instance.IntSumOfSquares(UInt128 sumSq)Create an instance.IntVariance(UInt128 sumSq, Int128 sum, int n)Create an instance.
-