Merge branch 'kjvdh/features/PhylogenyViewer_tabbedsupport' into merge/2_11_2/kjvdh...
[jalview.git] / src / jalview / math / MatrixI.java
index e98007e..4fe31ea 100644 (file)
@@ -52,7 +52,7 @@ public interface MatrixI
   double getValue(int i, int j);
 
   /**
-   * Sets the value at row i, colum j
+   * Sets the value at row i, column j
    * 
    * @param i
    * @param j
@@ -75,6 +75,14 @@ public interface MatrixI
   MatrixI copy();
 
   /**
+   * Answers all values present in the Matrix ordered by row,column
+   * 
+   * @return the double array containing the values ordered in {row values} per
+   *         column
+   */
+  double[][] getValues();
+
+  /**
    * Returns a new matrix which is the transpose of this one
    * 
    * @return