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 UInt192LongStandardDeviation. sumSqSum of the squared values.private UInt192LongSumOfSquares. sumSqSum of the squared values.private UInt192LongVariance. sumSqSum of the squared values.Methods in org.apache.commons.statistics.descriptive that return UInt192 Modifier and Type Method Description (package private) static UInt192UInt192. create()Create an instance.(package private) UInt192LongSumOfSquares. getSumOfSquares()Gets the sum of squares.(package private) UInt192UInt192. subtract(UInt128 x)Subtracts the value.(package private) UInt192UInt192. 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) voidUInt192. add(UInt192 x)Adds the value.private static doubleLongVariance. 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 doubleLongVariance. 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.
-