Uses of Class
org.apache.commons.statistics.descriptive.SumOfSquares
Packages that use SumOfSquares
Package
Description
Implementations of univariate statistics.
-
Uses of SumOfSquares in org.apache.commons.statistics.descriptive
Classes in org.apache.commons.statistics.descriptive that implement interfaces with type arguments of type SumOfSquaresModifier and TypeClassDescriptionfinal classReturns the sum of the squares of the available values.Fields in org.apache.commons.statistics.descriptive declared as SumOfSquaresModifier and TypeFieldDescriptionprivate final SumOfSquaresDoubleStatistics.sumOfSquaresTheSumOfSquaresimplementation.Fields in org.apache.commons.statistics.descriptive with type parameters of type SumOfSquaresModifier and TypeFieldDescriptionprivate RangeFunction<double[], SumOfSquares> DoubleStatistics.Builder.sumOfSquaresTheSumOfSquaresconstructor.Methods in org.apache.commons.statistics.descriptive that return SumOfSquaresModifier and TypeMethodDescriptionSumOfSquares.combine(SumOfSquares other) static SumOfSquaresSumOfSquares.create()Creates an instance.(package private) static SumOfSquaresSumOfSquares.createFromRange(double[] values, int from, int to) Create an instance using the specified range ofvalues.static SumOfSquaresSumOfSquares.of(double... values) Returns an instance populated using the inputvalues.static SumOfSquaresSumOfSquares.ofRange(double[] values, int from, int to) Returns an instance populated using the specified range ofvalues.Methods in org.apache.commons.statistics.descriptive with parameters of type SumOfSquaresConstructors in org.apache.commons.statistics.descriptive with parameters of type SumOfSquaresModifierConstructorDescription(package private)DoubleStatistics(long count, Min min, Max max, FirstMoment moment, Sum sum, Product product, SumOfSquares sumOfSquares, SumOfLogs sumOfLogs, StatisticsConfiguration config) Create an instance.