Uses of Class
org.apache.commons.statistics.descriptive.Int128
-
Packages that use Int128 Package Description org.apache.commons.statistics.descriptive Implementations of univariate statistics. -
-
Uses of Int128 in org.apache.commons.statistics.descriptive
Fields in org.apache.commons.statistics.descriptive declared as Int128 Modifier and Type Field Description private Int128IntMean. sumSum of the values.private Int128IntStandardDeviation. sumSum of the values.private Int128IntSum. sumSum of the values.private Int128IntVariance. sumSum of the values.private Int128LongMean. sumSum of the values.private Int128LongStandardDeviation. sumSum of the values.private Int128LongSum. sumSum of the values.private Int128LongVariance. sumSum of the values.Methods in org.apache.commons.statistics.descriptive that return Int128 Modifier and Type Method Description (package private) static Int128Int128. create()Create an instance.(package private) Int128IntSum. getSum()Gets the sum.(package private) Int128LongSum. getSum()Gets the sum.(package private) static Int128Int128. of(long x)Create an instance of thelongvalue.Methods in org.apache.commons.statistics.descriptive with parameters of type Int128 Modifier and Type Method Description (package private) voidInt128. add(Int128 x)Adds the value.(package private) static doubleIntMean. computeMean(Int128 sum, long n)Compute the mean.(package private) static doubleLongMean. computeMean(Int128 sum, long n)Compute the mean.private static doubleIntVariance. 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.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 doubleIntVariance. computeVarianceOrStd(UInt128 sumSq, Int128 sum, long n, boolean biased, boolean std)Compute the variance (or standard deviation).(package private) static doubleLongVariance. computeVarianceOrStd(UInt192 sumSq, Int128 sum, long n, boolean biased, boolean std)Compute the variance (or standard deviation).(package private) static doubleIntMath. divide(Int128 x, long n)Divide valuexby the countn.Constructors in org.apache.commons.statistics.descriptive with parameters of type Int128 Constructor Description IntMean(Int128 sum, int n)Create an instance.IntStandardDeviation(UInt128 sumSq, Int128 sum, int n)Create an instance.IntSum(Int128 sum)Create an instance.IntVariance(UInt128 sumSq, Int128 sum, int n)Create an instance.LongMean(Int128 sum, int n)Create an instance.LongStandardDeviation(UInt192 sumSq, Int128 sum, int n)Create an instance.LongSum(Int128 sum)Create an instance.LongVariance(UInt192 sumSq, Int128 sum, int n)Create an instance.
-