Package org.ejml.data

Examples of org.ejml.data.MatrixIterator


     * @param maxCol last column it will stop at.
     * @return A new MatrixIterator
     */
    public MatrixIterator iterator(boolean rowMajor, int minRow, int minCol, int maxRow, int maxCol)
    {
        return new MatrixIterator(mat,rowMajor, minRow, minCol, maxRow, maxCol);
    }
View Full Code Here


  }

  @Override
  public MatrixIterator iterator(boolean rowMajor, int minRow, int minCol,
      int maxRow, int maxCol) {
    return new MatrixIterator(this, rowMajor, minRow, minCol, maxRow,
        maxCol);
  }
View Full Code Here

TOP

Related Classes of org.ejml.data.MatrixIterator

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.