* @return The matrix.
* @throws IOException
*/
public static SimpleMatrix loadBinary( String fileName )
throws IOException {
Matrix64F mat = MatrixIO.loadBin(fileName);
// see if its a DenseMatrix64F
if( mat instanceof DenseMatrix64F ) {
return SimpleMatrix.wrap((DenseMatrix64F)mat);
} else {