public class WrapperIntMatrix2D extends IntMatrix2D
| Constructor and Description |
|---|
WrapperIntMatrix2D(IntMatrix2D newContent) |
| Modifier and Type | Method and Description |
|---|---|
IntMatrix2D |
assign(int[] values)
Sets all cells to the state specified by values.
|
IntMatrix2D |
assign(IntMatrix2D y,
IntIntFunction function)
Assigns the result of a function to each cell;
x[row,col] = function(x[row,col],y[row,col]).
|
Object |
elements()
Returns the elements of this matrix.
|
boolean |
equals(int value)
Returns whether all cells are equal to the given value.
|
boolean |
equals(Object obj)
Compares this object against the specified object.
|
int |
getQuick(int row,
int column)
Returns the matrix cell value at coordinate [row,column].
|
IntMatrix2D |
like(int rows,
int columns)
Construct and returns a new empty matrix of the same dynamic type
as the receiver, having the specified number of rows and columns.
|
IntMatrix1D |
like1D(int size)
Construct and returns a new 1-d matrix of the corresponding dynamic
type, entirelly independent of the receiver.
|
void |
setQuick(int row,
int column,
int value)
Sets the matrix cell at coordinate [row,column] to the specified
value.
|
IntMatrix1D |
vectorize()
Returns a vector obtained by stacking the columns of the matrix on top of
one another.
|
IntMatrix1D |
viewColumn(int column)
Constructs and returns a new slice view representing the rows of
the given column.
|
IntMatrix2D |
viewColumnFlip()
Constructs and returns a new flip view aint the column axis.
|
IntMatrix2D |
viewDice()
Constructs and returns a new dice (transposition) view; Swaps
axes; example: 3 x 4 matrix --> 4 x 3 matrix.
|
IntMatrix2D |
viewPart(int row,
int column,
int height,
int width)
Constructs and returns a new sub-range view that is a
height x width sub matrix starting at [row,column].
|
IntMatrix1D |
viewRow(int row)
Constructs and returns a new slice view representing the columns
of the given row.
|
IntMatrix2D |
viewRowFlip()
Constructs and returns a new flip view aint the row axis.
|
IntMatrix2D |
viewSelection(int[] rowIndexes,
int[] columnIndexes)
Constructs and returns a new selection view that is a matrix
holding the indicated cells.
|
IntMatrix2D |
viewStrides(int _rowStride,
int _columnStride)
Constructs and returns a new stride view which is a sub matrix
consisting of every i-th cell.
|
aggregate, aggregate, aggregate, aggregate, assign, assign, assign, assign, assign, assign, assign, cardinality, copy, forEachNonZero, get, getMaxLocation, getMinLocation, getNegativeValues, getNonZeros, getPositiveValues, like, set, toArray, toString, viewSelection, viewSelection, viewSorted, zMult, zMult, zMult, zMult, zSumcheckShape, checkShape, columns, columnStride, index, rows, rowStride, size, toStringShortensureCapacity, isView, trimToSizeclonepublic WrapperIntMatrix2D(IntMatrix2D newContent)
public IntMatrix2D assign(IntMatrix2D y, IntIntFunction function)
IntMatrix2DExample:
// assign x[row,col] = x[row,col]<sup>y[row,col]</sup> m1 = 2 x 2 matrix 0 1 2 3 m2 = 2 x 2 matrix 0 2 4 6 m1.assign(m2, cern.jet.math.Functions.pow); --> m1 == 2 x 2 matrix 1 1 16 729For further examples, see the package doc.
assign in class IntMatrix2Dy - the secondary matrix to operate on.function - a function object taking as first argument the current cell's
value of this, and as second argument the current
cell's value of y,IntFunctionspublic IntMatrix2D assign(int[] values)
IntMatrix2DThe values are copied. So subsequent changes in values are not reflected in the matrix, and vice-versa.
assign in class IntMatrix2Dvalues - the values to be filled into the cells.public Object elements()
IntMatrix2Delements in class IntMatrix2Dpublic int getQuick(int row,
int column)
IntMatrix2DProvided with invalid parameters this method may return invalid objects without throwing any exception. You should only use this method when you are absolutely sure that the coordinate is within bounds. Precondition (unchecked): 0 <= column < columns() && 0 <= row < rows().
getQuick in class IntMatrix2Drow - the index of the row-coordinate.column - the index of the column-coordinate.public boolean equals(int value)
IntMatrix2Dequals in class IntMatrix2Dvalue - the value to test against.public boolean equals(Object obj)
IntMatrix2Dtrue if and only if the argument is not null
and is at least a IntMatrix2D object that has the same
number of columns and rows as the receiver and has exactly the same
values at the same coordinates.equals in class IntMatrix2Dobj - the object to compare with.true if the objects are the same; false
otherwise.public IntMatrix2D like(int rows, int columns)
IntMatrix2Dlike in class IntMatrix2Drows - the number of rows the matrix shall have.columns - the number of columns the matrix shall have.public IntMatrix1D like1D(int size)
IntMatrix2Dlike1D in class IntMatrix2Dsize - the number of cells the matrix shall have.public void setQuick(int row,
int column,
int value)
IntMatrix2DProvided with invalid parameters this method may access illegal indexes without throwing any exception. You should only use this method when you are absolutely sure that the coordinate is within bounds. Precondition (unchecked): 0 <= column < columns() && 0 <= row < rows().
setQuick in class IntMatrix2Drow - the index of the row-coordinate.column - the index of the column-coordinate.value - the value to be filled into the specified cell.public IntMatrix1D vectorize()
IntMatrix2Dvectorize in class IntMatrix2Dpublic IntMatrix1D viewColumn(int column)
IntMatrix2DExample:
| 2 x 3 matrix: 1, 2, 3 4, 5, 6 |
viewColumn(0) ==> | Matrix1D of size 2: 1, 4 |
viewColumn in class IntMatrix2Dcolumn - the column to fix.IntMatrix2D.viewRow(int)public IntMatrix2D viewColumnFlip()
IntMatrix2DExample:
| 2 x 3 matrix: 1, 2, 3 4, 5, 6 |
columnFlip ==> | 2 x 3 matrix: 3, 2, 1 6, 5, 4 |
columnFlip ==> | 2 x 3 matrix: 1, 2, 3 4, 5, 6 |
viewColumnFlip in class IntMatrix2DIntMatrix2D.viewRowFlip()public IntMatrix2D viewDice()
IntMatrix2DExample:
| 2 x 3 matrix: 1, 2, 3 4, 5, 6 |
transpose ==> | 3 x 2 matrix: 1, 4 2, 5 3, 6 |
transpose ==> | 2 x 3 matrix: 1, 2, 3 4, 5, 6 |
viewDice in class IntMatrix2Dpublic IntMatrix2D viewPart(int row, int column, int height, int width)
IntMatrix2DNote that the view is really just a range restriction: The returned matrix is backed by this matrix, so changes in the returned matrix are reflected in this matrix, and vice-versa.
The view contains the cells from [row,column] to [row+height-1,column+width-1], all inclusive. and has view.rows() == height; view.columns() == width;. A view's legal coordinates are again zero based, as usual. In other words, legal coordinates of the view range from [0,0] to [view.rows()-1==height-1,view.columns()-1==width-1]. As usual, any attempt to access a cell at a coordinate column<0 || column>=view.columns() || row<0 || row>=view.rows() will throw an IndexOutOfBoundsException.
viewPart in class IntMatrix2Drow - The index of the row-coordinate.column - The index of the column-coordinate.height - The height of the box.width - The width of the box.public IntMatrix1D viewRow(int row)
IntMatrix2DExample:
| 2 x 3 matrix: 1, 2, 3 4, 5, 6 |
viewRow(0) ==> | Matrix1D of size 3: 1, 2, 3 |
viewRow in class IntMatrix2Drow - the row to fix.IntMatrix2D.viewColumn(int)public IntMatrix2D viewRowFlip()
IntMatrix2DExample:
| 2 x 3 matrix: 1, 2, 3 4, 5, 6 |
rowFlip ==> | 2 x 3 matrix: 4, 5, 6 1, 2, 3 |
rowFlip ==> | 2 x 3 matrix: 1, 2, 3 4, 5, 6 |
viewRowFlip in class IntMatrix2DIntMatrix2D.viewColumnFlip()public IntMatrix2D viewSelection(int[] rowIndexes, int[] columnIndexes)
IntMatrix2DExample:
this = 2 x 3 matrix: 1, 2, 3 4, 5, 6 rowIndexes = (0,1) columnIndexes = (1,0,1,0) --> view = 2 x 4 matrix: 2, 1, 2, 1 5, 4, 5, 4Note that modifying the index arguments after this call has returned has no effect on the view. The returned view is backed by this matrix, so changes in the returned view are reflected in this matrix, and vice-versa.
To indicate "all" rows or "all columns", simply set the respective parameter
viewSelection in class IntMatrix2DrowIndexes - The rows of the cells that shall be visible in the new view.
To indicate that all rows shall be visible, simply set
this parameter to null.columnIndexes - The columns of the cells that shall be visible in the new
view. To indicate that all columns shall be visible,
simply set this parameter to null.public IntMatrix2D viewStrides(int _rowStride, int _columnStride)
IntMatrix2DviewStrides in class IntMatrix2D_rowStride - the row step factor._columnStride - the column step factor.Jump to the Parallel Colt Homepage