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 UInt192LongStandardDeviation.sumSqSum of the squared values.private final UInt192LongSumOfSquares.sumSqSum of the squared values.private final UInt192LongVariance.sumSqSum of the squared values.Methods in org.apache.commons.statistics.descriptive that return UInt192Modifier and TypeMethodDescription(package private) static UInt192UInt192.create()Create an instance.(package private) UInt192LongSumOfSquares.getSumOfSquares()Gets the sum of squares.(package private) UInt192Subtracts the value.(package private) UInt192UInt192.unsignedMultiply(int x) Multiply by the unsigned value.Methods in org.apache.commons.statistics.descriptive with parameters of type UInt192Modifier and TypeMethodDescription(package private) voidAdds 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 UInt192ModifierConstructorDescriptionprivateLongStandardDeviation(UInt192 sumSq, Int128 sum, int n) Create an instance.privateLongSumOfSquares(UInt192 sumSq) Create an instance.privateLongVariance(UInt192 sumSq, Int128 sum, int n) Create an instance.