HomeSort by relevance Sort by last modified time
    Searched refs:computeCorrelationMatrix (Results 1 - 2 of 2) sorted by null

  /external/apache-commons-math/src/main/java/org/apache/commons/math/stat/correlation/
SpearmansCorrelation.java 117 public RealMatrix computeCorrelationMatrix(RealMatrix matrix) {
120 return new PearsonsCorrelation().computeCorrelationMatrix(matrixCopy);
131 public RealMatrix computeCorrelationMatrix(double[][] matrix) {
132 return computeCorrelationMatrix(new BlockRealMatrix(matrix));
PearsonsCorrelation.java 84 correlationMatrix = computeCorrelationMatrix(matrix);
190 public RealMatrix computeCorrelationMatrix(RealMatrix matrix) {
212 public RealMatrix computeCorrelationMatrix(double[][] data) {
213 return computeCorrelationMatrix(new BlockRealMatrix(data));

Completed in 460 milliseconds