public class DiagonalObjectMatrix2D extends WrapperObjectMatrix2D
| Constructor and Description |
|---|
DiagonalObjectMatrix2D(int rows,
int columns,
int dindex)
Constructs a matrix with a given number of rows and columns.
|
DiagonalObjectMatrix2D(Object[][] values,
int dindex)
Constructs a matrix with a copy of the given values.
|
| Modifier and Type | Method and Description |
|---|---|
ObjectMatrix2D |
assign(Object value)
Sets all cells to the state specified by value.
|
ObjectMatrix2D |
assign(Object[] values)
Sets all cells to the state specified by values.
|
ObjectMatrix2D |
assign(Object[][] values)
Sets all cells to the state specified by values.
|
ObjectMatrix2D |
assign(ObjectFunction function)
Assigns the result of a function to each cell;
x[row,col] = function(x[row,col]).
|
ObjectMatrix2D |
assign(ObjectMatrix2D source)
Replaces all cell values of the receiver with the values of another
matrix.
|
ObjectMatrix2D |
assign(ObjectMatrix2D y,
ObjectObjectFunction function)
Assigns the result of a function to each cell;
x[row,col] = function(x[row,col],y[row,col]).
|
int |
cardinality()
Returns the number of cells having non-zero values; ignores tolerance.
|
int |
diagonalIndex()
Returns the index of the diagonal
|
int |
diagonalLength()
Returns the length of the diagonal
|
Object[] |
elements()
Returns the elements of this matrix.
|
boolean |
equals(Object obj)
Compares the specified Object with the receiver for equality.
|
ObjectMatrix2D |
forEachNonZero(IntIntObjectFunction function)
Assigns the result of a function to each non-zero cell;
x[row,col] = function(x[row,col]).
|
Object |
getQuick(int row,
int column)
Returns the matrix cell value at coordinate [row,column].
|
ObjectMatrix2D |
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.
|
ObjectMatrix1D |
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,
Object value)
Sets the matrix cell at coordinate [row,column] to the specified
value.
|
assign, vectorize, viewColumn, viewColumnFlip, viewDice, viewPart, viewRow, viewRowFlip, viewSelection, viewStridesaggregate, aggregate, aggregate, aggregate, assign, assign, assign, copy, equals, get, getNonZeros, like, set, toArray, toString, viewSelection, viewSortedcheckShape, checkShape, columns, columnStride, index, rows, rowStride, size, toStringShortensureCapacity, isView, trimToSizeclonepublic DiagonalObjectMatrix2D(Object[][] values, int dindex)
The values are copied. So subsequent changes in values are not reflected in the matrix, and vice-versa.
values - The values to be filled into the new matrix.dindex - index of the diagonal.IllegalArgumentException - if
for any 1 <= row < values.length: values[row].length != values[row-1].length || index < -rows+1 || index > columns - 1
.public DiagonalObjectMatrix2D(int rows,
int columns,
int dindex)
rows - the number of rows the matrix shall have.columns - the number of columns the matrix shall have.dindex - index of the diagonal.IllegalArgumentException - if size<0 (Object)size > Integer.MAX_VALUE.public ObjectMatrix2D assign(ObjectFunction function)
ObjectMatrix2DExample:
matrix = 2 x 2 matrix
0.5 1.5
2.5 3.5
// change each cell to its sine
matrix.assign(cern.jet.math.Functions.sin);
-->
2 x 2 matrix
0.479426 0.997495
0.598472 -0.350783
For further examples, see the package doc.assign in class ObjectMatrix2Dfunction - a function object taking as argument the current cell's value.DoubleFunctionspublic ObjectMatrix2D assign(Object value)
ObjectMatrix2Dassign in class ObjectMatrix2Dvalue - the value to be filled into the cells.public ObjectMatrix2D assign(Object[] values)
ObjectMatrix2DThe values are copied. So subsequent changes in values are not reflected in the matrix, and vice-versa.
assign in class WrapperObjectMatrix2Dvalues - the values to be filled into the cells.public ObjectMatrix2D assign(Object[][] values)
ObjectMatrix2DThe values are copied. So subsequent changes in values are not reflected in the matrix, and vice-versa.
assign in class ObjectMatrix2Dvalues - the values to be filled into the cells.public ObjectMatrix2D assign(ObjectMatrix2D source)
ObjectMatrix2Dassign in class ObjectMatrix2Dsource - the source matrix to copy from (may be identical to the
receiver).public ObjectMatrix2D assign(ObjectMatrix2D y, ObjectObjectFunction function)
ObjectMatrix2Dassign in class WrapperObjectMatrix2Dy - 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,DoubleFunctionspublic int cardinality()
ObjectMatrix2Dcardinality in class ObjectMatrix2Dpublic Object[] elements()
ObjectMatrix2Delements in class WrapperObjectMatrix2Dpublic boolean equals(Object obj)
ObjectMatrix2Dequals in class WrapperObjectMatrix2Dobj - the Object to be compared for equality with the receiver.public ObjectMatrix2D forEachNonZero(IntIntObjectFunction function)
ObjectMatrix2DforEachNonZero in class ObjectMatrix2Dfunction - a function object taking as argument the current non-zero
cell's row, column and value.public int diagonalLength()
public int diagonalIndex()
public Object getQuick(int row, int column)
ObjectMatrix2DProvided 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 WrapperObjectMatrix2Drow - the index of the row-coordinate.column - the index of the column-coordinate.public ObjectMatrix2D like(int rows, int columns)
ObjectMatrix2Dlike in class WrapperObjectMatrix2Drows - the number of rows the matrix shall have.columns - the number of columns the matrix shall have.public ObjectMatrix1D like1D(int size)
ObjectMatrix2Dlike1D in class WrapperObjectMatrix2Dsize - the number of cells the matrix shall have.public void setQuick(int row,
int column,
Object value)
ObjectMatrix2DProvided 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 WrapperObjectMatrix2Drow - the index of the row-coordinate.column - the index of the column-coordinate.value - the value to be filled into the specified cell.Jump to the Parallel Colt Homepage