Uses of Class
org.apache.commons.statistics.descriptive.UInt192
Packages that use UInt192
Package
Description
Implementations of univariate statistics.
-
Uses of UInt192 in org.apache.commons.statistics.descriptive
Fields in org.apache.commons.statistics.descriptive declared as UInt192Modifier and TypeFieldDescriptionprivate final UInt192
LongStandardDeviation.sumSq
Sum of the squared values.private final UInt192
LongSumOfSquares.sumSq
Sum of the squared values.private final UInt192
LongVariance.sumSq
Sum of the squared values.Methods in org.apache.commons.statistics.descriptive that return UInt192Modifier and TypeMethodDescription(package private) static UInt192
UInt192.create()
Create an instance.(package private) UInt192
LongSumOfSquares.getSumOfSquares()
Gets the sum of squares.(package private) UInt192
Subtracts the value.(package private) UInt192
UInt192.unsignedMultiply
(int x) Multiply by the unsigned value.Methods in org.apache.commons.statistics.descriptive with parameters of type UInt192Modifier and TypeMethodDescription(package private) void
Adds the value.private static double
LongVariance.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 double
LongVariance.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 UInt192ModifierConstructorDescriptionprivate
LongStandardDeviation
(UInt192 sumSq, Int128 sum, int n) Create an instance.private
LongSumOfSquares
(UInt192 sumSq) Create an instance.private
LongVariance
(UInt192 sumSq, Int128 sum, int n) Create an instance.