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 Int128
IntMean. sum
Sum of the values.private Int128
IntStandardDeviation. sum
Sum of the values.private Int128
IntSum. sum
Sum of the values.private Int128
IntVariance. sum
Sum of the values.private Int128
LongMean. sum
Sum of the values.private Int128
LongStandardDeviation. sum
Sum of the values.private Int128
LongSum. sum
Sum of the values.private Int128
LongVariance. sum
Sum of the values.Methods in org.apache.commons.statistics.descriptive that return Int128 Modifier and Type Method Description (package private) static Int128
Int128. create()
Create an instance.(package private) Int128
IntSum. getSum()
Gets the sum.(package private) Int128
LongSum. getSum()
Gets the sum.(package private) static Int128
Int128. of(long x)
Create an instance of thelong
value.Methods in org.apache.commons.statistics.descriptive with parameters of type Int128 Modifier and Type Method Description (package private) void
Int128. add(Int128 x)
Adds the value.(package private) static double
IntMean. computeMean(Int128 sum, long n)
Compute the mean.(package private) static double
LongMean. computeMean(Int128 sum, long n)
Compute the mean.private static double
IntVariance. 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 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
IntVariance. computeVarianceOrStd(UInt128 sumSq, Int128 sum, long n, boolean biased, boolean std)
Compute the variance (or standard deviation).(package private) static double
LongVariance. computeVarianceOrStd(UInt192 sumSq, Int128 sum, long n, boolean biased, boolean std)
Compute the variance (or standard deviation).(package private) static double
IntMath. divide(Int128 x, long n)
Divide valuex
by 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.
-