forked from SciSharp/NumSharp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNDArray.Std.cs
More file actions
59 lines (54 loc) · 1.87 KB
/
NDArray.Std.cs
File metadata and controls
59 lines (54 loc) · 1.87 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace NumSharp.Core.Extensions
{
public static partial class NDArrayExtensions
{
public static NDArray<double> Std(this NDArray<double> np, int axis = -1)
{
var std = new NDArray<double>();
var mean = np.Mean(axis);
// axis == -1: DEFAULT; to compute the standard deviation of the flattened array.
if (axis == -1)
{
var sum = np.Data.Select(d => Math.Pow(Math.Abs(d - mean.Data[0]), 2)).Sum();
std.Data = new double[]{ Math.Sqrt(sum / np.Size) };
}
// to compute mean by compressing row and row
else if (axis == 0)
{
double[] sumVec = new double[np.Shape.Shapes[1]];
for (int d = 0; d < np.Shape.Shapes[0]; d++)
{
for (int p = 0; p < np.Shape.Shapes[1]; p++)
{
sumVec[p] += np[d,p];
}
}
var puffer = mean.Data.ToList();
for (int d = 0; d < np.Shape.Shapes[1]; d++)
{
puffer.Add(sumVec[d] / np.Shape.Shapes[0]);
}
mean.Data = puffer.ToArray();
}
else if (axis == 1)
{
var puffer = mean.Data.ToList();
for (int d = 0; d < np.Shape.Shapes[0]; d++)
{
double rowSum = 0;
for (int p = 0; p < np.Shape.Shapes[1]; p++)
{
rowSum += np[d,p];
}
puffer.Add(rowSum / np.Shape.Shapes[1]);
}
mean.Data = puffer.ToArray();
}
return std;
}
}
}