Advertisement
Guest User

commons.math

a guest
Mar 6th, 2012
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.48 KB | None | 0 0
  1.     /**
  2.      * Returns the entries in column number <code>col</code> as an array.
  3.      * <p>
  4.      * Column indices start at 0.  A <code>MatrixIndexException</code> is thrown
  5.      * unless <code>0 <= column < columnDimension.</code></p>
  6.      *
  7.      * @param column the column to be fetched
  8.      * @return array of entries in the column
  9.      * @throws MatrixIndexException if the specified column index is not valid
  10.      */
  11.     double[] getColumn(int column) throws MatrixIndexException;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement