2
0
mirror of https://github.com/esiur/esiur-dotnet.git synced 2025-05-06 11:32:59 +00:00
esiur-dotnet/Esiur.Analysis/Statistics/StatisticalFunctions.cs
2022-11-05 17:48:30 +03:00

51 lines
1.2 KiB
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Esiur.Analysis.Statistics
{
public static class Statistics
{
public static double Mean(this double[] values) => values.Sum() / values.Length;
public static double Variance(this double[] x)
{
var mean = x.Mean();
return x.Sum(x => Math.Pow(x - mean, 2)) / x.Length;
}
public static double StdDiv(this double[] x) => Math.Sqrt(x.Variance());
public static double Covariance(this double[] x, double[] y)
{
var n = x.Length < y.Length ? x.Length : y.Length;
var X = x.Mean();
var Y = y.Mean();
double rt = 0;
for (var i = 0; i < n; i++)
rt += (x[i] - X) * (y[i] - Y);
return rt / n;
}
public static double RMS(this double[] x)
{
var r = Math.Sqrt(x.Sum(x => x * x) / x.Length);
if (double.IsNaN(r))
Console.WriteLine();
return r;
}
public static double Correlation(this double[] x, double[] y)
{
return Covariance(x, y) / (StdDiv(x) * StdDiv(y));
}
}
}