Home | History | Annotate | Download | only in linear

Lines Matching refs:startColumn

593      * @param startColumn Initial column index
600 int startColumn, int endColumn)
610 MatrixUtils.checkColumnIndex(this, startColumn);
612 if (startColumn > endColumn) {
614 startColumn, endColumn);
618 new BigDecimal[endRow - startRow + 1][endColumn - startColumn + 1];
620 System.arraycopy(data[i], startColumn,
622 endColumn - startColumn + 1);