Lines Matching refs:startRow

209                               final int startRow, final int endRow,
242 final int startRow, final int endRow,
261 public RealMatrix getSubMatrix(final int startRow, final int endRow,
265 MatrixUtils.checkSubMatrixIndex(this, startRow, endRow, startColumn, endColumn);
268 createMatrix(endRow - startRow + 1, endColumn - startColumn + 1);
269 for (int i = startRow; i <= endRow; ++i) {
271 subMatrix.setEntry(i - startRow, j - startColumn, getEntry(i, j));
304 public void copySubMatrix(final int startRow, final int endRow,
310 MatrixUtils.checkSubMatrixIndex(this, startRow, endRow, startColumn, endColumn);
311 final int rowsCount = endRow + 1 - startRow;
324 private int startRow;
332 final int startRow, final int endRow,
334 this.startRow = startRow;
341 destination[row - startRow][column - startColumn] = value;
344 }, startRow, endRow, startColumn, endColumn);
812 final int startRow, final int endRow,
815 MatrixUtils.checkSubMatrixIndex(this, startRow, endRow, startColumn, endColumn);
817 startRow, endRow, startColumn, endColumn);
818 for (int row = startRow; row <= endRow; ++row) {
831 final int startRow, final int endRow,
834 MatrixUtils.checkSubMatrixIndex(this, startRow, endRow, startColumn, endColumn);
836 startRow, endRow, startColumn, endColumn);
837 for (int row = startRow; row <= endRow; ++row) {
878 final int startRow, final int endRow,
881 MatrixUtils.checkSubMatrixIndex(this, startRow, endRow, startColumn, endColumn);
883 startRow, endRow, startColumn, endColumn);
885 for (int row = startRow; row <= endRow; ++row) {
897 final int startRow, final int endRow,
900 MatrixUtils.checkSubMatrixIndex(this, startRow, endRow, startColumn, endColumn);
902 startRow, endRow, startColumn, endColumn);
904 for (int row = startRow; row <= endRow; ++row) {
925 final int startRow, final int endRow,
928 return walkInRowOrder(visitor, startRow, endRow, startColumn, endColumn);
933 final int startRow, final int endRow,
936 return walkInRowOrder(visitor, startRow, endRow, startColumn, endColumn);