Search in sources :

Example 1 with Signed8BitIntegerMatrixBuf_1

use of edu.rit.mp.buf.Signed8BitIntegerMatrixBuf_1 in project ffx by mjschnie.

the class Signed8BitIntegerBuf method colSliceBuffer.

/**
 * Create a buffer for one column slice of the given integer matrix. The
 * returned buffer encompasses all the rows, and <TT>theColRange</TT> of
 * columns, in <TT>theMatrix</TT>. The range's stride may be 1 or greater
 * than 1.
 *
 * @param theMatrix Matrix.
 * @param theColRange Range of columns to include.
 * @return Buffer.
 * @exception NullPointerException (unchecked exception) Thrown if
 * <TT>theMatrix</TT> is null or
 * <TT>theColRange</TT> is null.
 * @exception IndexOutOfBoundsException (unchecked exception) Thrown if
 * <TT>theMatrix</TT>'s allocation does not include <TT>theColRange</TT>.
 */
public static Signed8BitIntegerBuf colSliceBuffer(int[][] theMatrix, Range theColRange) {
    if (theMatrix == null) {
        throw new NullPointerException("Signed8BitIntegerBuf.colSliceBuffer(): theMatrix is null");
    }
    int nr = Arrays.rowLength(theMatrix);
    int nc = Arrays.colLength(theMatrix, 0);
    if (0 > theColRange.lb() || theColRange.ub() >= nc) {
        throw new IndexOutOfBoundsException("Signed8BitIntegerBuf.colSliceBuffer(): theMatrix column index range = 0.." + (nc - 1) + ", theColRange = " + theColRange);
    }
    if (theColRange.stride() == 1) {
        return new Signed8BitIntegerMatrixBuf_1(theMatrix, new Range(0, nr - 1), theColRange);
    } else {
        return new Signed8BitIntegerMatrixBuf(theMatrix, new Range(0, nr - 1), theColRange);
    }
}
Also used : Signed8BitIntegerMatrixBuf_1(edu.rit.mp.buf.Signed8BitIntegerMatrixBuf_1) Signed8BitIntegerMatrixBuf(edu.rit.mp.buf.Signed8BitIntegerMatrixBuf) Range(edu.rit.util.Range)

Example 2 with Signed8BitIntegerMatrixBuf_1

use of edu.rit.mp.buf.Signed8BitIntegerMatrixBuf_1 in project ffx by mjschnie.

the class Signed8BitIntegerBuf method rowSliceBuffer.

/**
 * Create a buffer for one row slice of the given integer matrix. The
 * returned buffer encompasses <TT>theRowRange</TT> of rows, and all the
 * columns, in <TT>theMatrix</TT>. The range's stride may be 1 or greater
 * than 1.
 *
 * @param theMatrix Matrix.
 * @param theRowRange Range of rows to include.
 * @return Buffer.
 * @exception NullPointerException (unchecked exception) Thrown if
 * <TT>theMatrix</TT> is null or
 * <TT>theRowRange</TT> is null.
 * @exception IndexOutOfBoundsException (unchecked exception) Thrown if
 * <TT>theMatrix</TT>'s allocation does not include <TT>theRowRange</TT>.
 */
public static Signed8BitIntegerBuf rowSliceBuffer(int[][] theMatrix, Range theRowRange) {
    if (theMatrix == null) {
        throw new NullPointerException("Signed8BitIntegerBuf.rowSliceBuffer(): theMatrix is null");
    }
    int nr = Arrays.rowLength(theMatrix);
    if (0 > theRowRange.lb() || theRowRange.ub() >= nr) {
        throw new IndexOutOfBoundsException("Signed8BitIntegerBuf.rowSliceBuffer(): theMatrix row index range = 0.." + (nr - 1) + ", theRowRange = " + theRowRange);
    }
    int nc = Arrays.colLength(theMatrix, theRowRange.lb());
    if (theRowRange.stride() == 1) {
        return new Signed8BitIntegerMatrixBuf_1(theMatrix, theRowRange, new Range(0, nc - 1));
    } else {
        return new Signed8BitIntegerMatrixBuf(theMatrix, theRowRange, new Range(0, nc - 1));
    }
}
Also used : Signed8BitIntegerMatrixBuf_1(edu.rit.mp.buf.Signed8BitIntegerMatrixBuf_1) Signed8BitIntegerMatrixBuf(edu.rit.mp.buf.Signed8BitIntegerMatrixBuf) Range(edu.rit.util.Range)

Example 3 with Signed8BitIntegerMatrixBuf_1

use of edu.rit.mp.buf.Signed8BitIntegerMatrixBuf_1 in project ffx by mjschnie.

the class Signed8BitIntegerBuf method buffer.

/**
 * Create a buffer for the entire given integer matrix. The returned buffer
 * encompasses all the rows and all the columns in
 * <TT>theMatrix</TT>.
 *
 * @param theMatrix Matrix.
 * @return Buffer.
 * @exception NullPointerException (unchecked exception) Thrown if
 * <TT>theMatrix</TT> is null.
 */
public static Signed8BitIntegerBuf buffer(int[][] theMatrix) {
    if (theMatrix == null) {
        throw new NullPointerException("Signed8BitIntegerBuf.buffer(): theMatrix is null");
    }
    int nr = Arrays.rowLength(theMatrix);
    int nc = Arrays.colLength(theMatrix, 0);
    return new Signed8BitIntegerMatrixBuf_1(theMatrix, new Range(0, nr - 1), new Range(0, nc - 1));
}
Also used : Signed8BitIntegerMatrixBuf_1(edu.rit.mp.buf.Signed8BitIntegerMatrixBuf_1) Range(edu.rit.util.Range)

Aggregations

Signed8BitIntegerMatrixBuf_1 (edu.rit.mp.buf.Signed8BitIntegerMatrixBuf_1)3 Range (edu.rit.util.Range)3 Signed8BitIntegerMatrixBuf (edu.rit.mp.buf.Signed8BitIntegerMatrixBuf)2