Stats() public static method

Statistics.
public static Stats ( Matrix x, VectorType t = VectorType.Row ) : Matrix[]
x Matrix Matrix x.
t VectorType (Optional) Row or Column sum.
return Matrix[]
Example #1
0
 /// <summary>A Matrix extension method that statistics.</summary>
 /// <param name="m">Matrix.</param>
 /// <param name="t">Row or Column sum.</param>
 /// <returns>A Matrix[].</returns>
 public static Matrix[] Stats(this Matrix m, VectorType t)
 {
     return(Matrix.Stats(m, t));
 }
Example #2
0
 /// <summary>A Matrix extension method that statistics.</summary>
 /// <param name="m">Matrix.</param>
 /// <returns>A Matrix[].</returns>
 public static Matrix[] Stats(this Matrix m)
 {
     return(Matrix.Stats(m, VectorType.Row));
 }