Search in sources :

Example 16 with Range

use of edu.rit.util.Range in project ffx by mjschnie.

the class BooleanBuf method colSliceBuffer.

/**
 * Create a buffer for one column slice of the given Boolean 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 BooleanBuf colSliceBuffer(boolean[][] theMatrix, Range theColRange) {
    if (theMatrix == null) {
        throw new NullPointerException("BooleanBuf.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("BooleanBuf.colSliceBuffer(): theMatrix column index range = 0.." + (nc - 1) + ", theColRange = " + theColRange);
    }
    if (theColRange.stride() == 1) {
        return new BooleanMatrixBuf_1(theMatrix, new Range(0, nr - 1), theColRange);
    } else {
        return new BooleanMatrixBuf(theMatrix, new Range(0, nr - 1), theColRange);
    }
}
Also used : BooleanMatrixBuf(edu.rit.mp.buf.BooleanMatrixBuf) Range(edu.rit.util.Range) BooleanMatrixBuf_1(edu.rit.mp.buf.BooleanMatrixBuf_1)

Example 17 with Range

use of edu.rit.util.Range in project ffx by mjschnie.

the class ByteBuf method colSliceBuffer.

/**
 * Create a buffer for one column slice of the given byte 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 ByteBuf colSliceBuffer(byte[][] theMatrix, Range theColRange) {
    if (theMatrix == null) {
        throw new NullPointerException("ByteBuf.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("ByteBuf.colSliceBuffer(): theMatrix column index range = 0.." + (nc - 1) + ", theColRange = " + theColRange);
    }
    if (theColRange.stride() == 1) {
        return new ByteMatrixBuf_1(theMatrix, new Range(0, nr - 1), theColRange);
    } else {
        return new ByteMatrixBuf(theMatrix, new Range(0, nr - 1), theColRange);
    }
}
Also used : ByteMatrixBuf_1(edu.rit.mp.buf.ByteMatrixBuf_1) ByteMatrixBuf(edu.rit.mp.buf.ByteMatrixBuf) Range(edu.rit.util.Range)

Example 18 with Range

use of edu.rit.util.Range in project ffx by mjschnie.

the class ByteBuf method rowSliceBuffer.

/**
 * Create a buffer for one row slice of the given byte 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 ByteBuf rowSliceBuffer(byte[][] theMatrix, Range theRowRange) {
    if (theMatrix == null) {
        throw new NullPointerException("ByteBuf.rowSliceBuffer(): theMatrix is null");
    }
    int nr = Arrays.rowLength(theMatrix);
    if (0 > theRowRange.lb() || theRowRange.ub() >= nr) {
        throw new IndexOutOfBoundsException("ByteBuf.rowSliceBuffer(): theMatrix row index range = 0.." + (nr - 1) + ", theRowRange = " + theRowRange);
    }
    int nc = Arrays.colLength(theMatrix, theRowRange.lb());
    if (theRowRange.stride() == 1) {
        return new ByteMatrixBuf_1(theMatrix, theRowRange, new Range(0, nc - 1));
    } else {
        return new ByteMatrixBuf(theMatrix, theRowRange, new Range(0, nc - 1));
    }
}
Also used : ByteMatrixBuf_1(edu.rit.mp.buf.ByteMatrixBuf_1) ByteMatrixBuf(edu.rit.mp.buf.ByteMatrixBuf) Range(edu.rit.util.Range)

Example 19 with Range

use of edu.rit.util.Range in project ffx by mjschnie.

the class ByteBuf method buffer.

/**
 * Create a buffer for the entire given byte 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 ByteBuf buffer(byte[][] theMatrix) {
    if (theMatrix == null) {
        throw new NullPointerException("ByteBuf.buffer(): theMatrix is null");
    }
    int nr = Arrays.rowLength(theMatrix);
    int nc = Arrays.colLength(theMatrix, 0);
    return new ByteMatrixBuf_1(theMatrix, new Range(0, nr - 1), new Range(0, nc - 1));
}
Also used : ByteMatrixBuf_1(edu.rit.mp.buf.ByteMatrixBuf_1) Range(edu.rit.util.Range)

Example 20 with Range

use of edu.rit.util.Range in project ffx by mjschnie.

the class DoubleBuf method rowSliceBuffer.

/**
 * Create a buffer for one row slice of the given double 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 DoubleBuf rowSliceBuffer(double[][] theMatrix, Range theRowRange) {
    if (theMatrix == null) {
        throw new NullPointerException("DoubleBuf.rowSliceBuffer(): theMatrix is null");
    }
    int nr = Arrays.rowLength(theMatrix);
    if (0 > theRowRange.lb() || theRowRange.ub() >= nr) {
        throw new IndexOutOfBoundsException("DoubleBuf.rowSliceBuffer(): theMatrix row index range = 0.." + (nr - 1) + ", theRowRange = " + theRowRange);
    }
    int nc = Arrays.colLength(theMatrix, theRowRange.lb());
    if (theRowRange.stride() == 1) {
        return new DoubleMatrixBuf_1(theMatrix, theRowRange, new Range(0, nc - 1));
    } else {
        return new DoubleMatrixBuf(theMatrix, theRowRange, new Range(0, nc - 1));
    }
}
Also used : Range(edu.rit.util.Range) DoubleMatrixBuf(edu.rit.mp.buf.DoubleMatrixBuf) DoubleMatrixBuf_1(edu.rit.mp.buf.DoubleMatrixBuf_1)

Aggregations

Range (edu.rit.util.Range)76 LongRange (edu.rit.util.LongRange)6 BooleanMatrixBuf_1 (edu.rit.mp.buf.BooleanMatrixBuf_1)3 ByteMatrixBuf_1 (edu.rit.mp.buf.ByteMatrixBuf_1)3 CharacterMatrixBuf_1 (edu.rit.mp.buf.CharacterMatrixBuf_1)3 DoubleMatrixBuf_1 (edu.rit.mp.buf.DoubleMatrixBuf_1)3 FloatMatrixBuf_1 (edu.rit.mp.buf.FloatMatrixBuf_1)3 IntegerMatrixBuf_1 (edu.rit.mp.buf.IntegerMatrixBuf_1)3 LongMatrixBuf_1 (edu.rit.mp.buf.LongMatrixBuf_1)3 ObjectMatrixBuf_1 (edu.rit.mp.buf.ObjectMatrixBuf_1)3 ShortMatrixBuf_1 (edu.rit.mp.buf.ShortMatrixBuf_1)3 Signed16BitIntegerMatrixBuf_1 (edu.rit.mp.buf.Signed16BitIntegerMatrixBuf_1)3 Signed8BitIntegerMatrixBuf_1 (edu.rit.mp.buf.Signed8BitIntegerMatrixBuf_1)3 Unsigned16BitIntegerMatrixBuf_1 (edu.rit.mp.buf.Unsigned16BitIntegerMatrixBuf_1)3 Unsigned8BitIntegerMatrixBuf_1 (edu.rit.mp.buf.Unsigned8BitIntegerMatrixBuf_1)3 BooleanMatrixBuf (edu.rit.mp.buf.BooleanMatrixBuf)2 ByteMatrixBuf (edu.rit.mp.buf.ByteMatrixBuf)2 CharacterMatrixBuf (edu.rit.mp.buf.CharacterMatrixBuf)2 DoubleMatrixBuf (edu.rit.mp.buf.DoubleMatrixBuf)2 FloatMatrixBuf (edu.rit.mp.buf.FloatMatrixBuf)2