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 UInt128
IntStandardDeviation.sumSq
Sum of the squared values.private final UInt128
IntSumOfSquares.sumSq
Sum of the squared values.private final UInt128
IntVariance.sumSq
Sum of the squared values.Methods in org.apache.commons.statistics.descriptive that return UInt128Modifier and TypeMethodDescription(package private) static UInt128
UInt128.create()
Create an instance.(package private) UInt128
IntSumOfSquares.getSumOfSquares()
Gets the sum of squares.(package private) static UInt128
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
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 UInt128Modifier and TypeMethodDescription(package private) void
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
Subtracts the value.(package private) UInt192
Subtracts the value.Constructors in org.apache.commons.statistics.descriptive with parameters of type UInt128ModifierConstructorDescriptionprivate
IntStandardDeviation
(UInt128 sumSq, Int128 sum, int n) Create an instance.private
IntSumOfSquares
(UInt128 sumSq) Create an instance.private
IntVariance
(UInt128 sumSq, Int128 sum, int n) Create an instance.