Correlation() public static method

Correlations.
public static Correlation ( Matrix source, VectorType t = VectorType.Col ) : Matrix
source Matrix Source for the.
t VectorType (Optional) Row or Column sum.
return Matrix
Example #1
0
 /// <summary>A Matrix extension method that correlations.</summary>
 /// <param name="source">The source to act on.</param>
 /// <param name="t">(Optional) Row or Column sum.</param>
 /// <returns>A Matrix.</returns>
 public static Matrix Correlation(this Matrix source, VectorType t = VectorType.Col)
 {
     return(Matrix.Correlation(source, t));
 }