public static double SumOfSquaredDeviations(
ReadOnlyDoubleMatrix data
)
Public Shared Function SumOfSquaredDeviations (
data As ReadOnlyDoubleMatrix
) As Double
public:
static double SumOfSquaredDeviations(
ReadOnlyDoubleMatrix^ data
)
static member SumOfSquaredDeviations :
data : ReadOnlyDoubleMatrix -> float
This method returns the sum of squared deviations
of data entries from their arithmetic mean.
Let us define
where is the
data length.
Then the returned value
can be represented by the expression
where
is the data arithmetic mean.
In the following example, the sum of squared deviations of a data matrix is computed.
using System;
namespace Novacta.Analytics.CodeExamples
{
public class SumOfSquaredDeviationsExample1
{
public void Main()
{
// Create a matrix.
var data = new double[6] {
1, 2,
2, 3,
3, 4
};
var matrix = DoubleMatrix.Dense(3, 2, data, StorageOrder.RowMajor);
Console.WriteLine("The data matrix:");
Console.WriteLine(matrix);
// Compute the data sum of squared deviations.
var sumOfSquaredDevs = Stat.SumOfSquaredDeviations(matrix);
Console.WriteLine();
Console.WriteLine("Data sum of squared deviations is:");
Console.WriteLine(sumOfSquaredDevs);
// SumOfSquaredDeviations is overloaded to accept data as a read-only matrix:
// compute the sum of squared deviations using a read-only wrapper of the data matrix.
ReadOnlyDoubleMatrix readOnlyMatrix = matrix.AsReadOnly();
var sumOfSquaredDevsOfReadOnlyData = Stat.SumOfSquaredDeviations(readOnlyMatrix);
Console.WriteLine();
Console.WriteLine("Using read-only data. The sum of squared deviations is:");
Console.WriteLine(sumOfSquaredDevsOfReadOnlyData);
}
}
}
// Executing method Main() produces the following output:
//
// The data matrix:
// 1 2
// 2 3
// 3 4
//
//
//
// Data sum of squared deviations is:
// 5.5
//
// Using read-only data. The sum of squared deviations is:
// 5.5
ArgumentNullException | data is null. |