Uses of Class
org.apache.commons.statistics.descriptive.UInt192
-
Packages that use UInt192 Package Description org.apache.commons.statistics.descriptive Implementations of univariate statistics. -
-
Uses of UInt192 in org.apache.commons.statistics.descriptive
Fields in org.apache.commons.statistics.descriptive declared as UInt192 Modifier and Type Field Description private UInt192
LongStandardDeviation. sumSq
Sum of the squared values.private UInt192
LongSumOfSquares. sumSq
Sum of the squared values.private UInt192
LongVariance. sumSq
Sum of the squared values.Methods in org.apache.commons.statistics.descriptive that return UInt192 Modifier and Type Method Description (package private) static UInt192
UInt192. create()
Create an instance.(package private) UInt192
LongSumOfSquares. getSumOfSquares()
Gets the sum of squares.(package private) UInt192
UInt192. subtract(UInt128 x)
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 UInt192 Modifier and Type Method Description (package private) void
UInt192. add(UInt192 x)
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 UInt192 Constructor Description LongStandardDeviation(UInt192 sumSq, Int128 sum, int n)
Create an instance.LongSumOfSquares(UInt192 sumSq)
Create an instance.LongVariance(UInt192 sumSq, Int128 sum, int n)
Create an instance.
-