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 UInt128
IntStandardDeviation. sumSq
Sum of the squared values.private UInt128
IntSumOfSquares. sumSq
Sum of the squared values.private UInt128
IntVariance. sumSq
Sum of the squared values.Methods in org.apache.commons.statistics.descriptive that return UInt128 Modifier and Type Method Description (package private) static UInt128
UInt128. create()
Create an instance.(package private) UInt128
IntSumOfSquares. getSumOfSquares()
Gets the sum of squares.(package private) static UInt128
UInt128. of(UInt96 x)
Create an instance of theUInt96
value.(package private) UInt128
Int128. squareLow()
Compute the square of the low 64-bits of this number.(package private) UInt128
UInt128. subtract(UInt128 x)
Subtracts the value.(package private) UInt128
UInt128. 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) void
UInt128. add(UInt128 x)
Adds the value in-place.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
.(package private) static double
IntVariance. computeVarianceOrStd(UInt128 sumSq, Int128 sum, long n, boolean biased, boolean std)
Compute the variance (or standard deviation).(package private) UInt128
UInt128. subtract(UInt128 x)
Subtracts the value.(package private) UInt192
UInt192. 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.
-