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, viewStrides
aggregate, aggregate, aggregate, aggregate, assign, assign, assign, copy, equals, get, getNonZeros, like, set, toArray, toString, viewSelection, viewSorted
checkShape, checkShape, columns, columnStride, index, rows, rowStride, size, toStringShort
ensureCapacity, isView, trimToSize
clone
public 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)
ObjectMatrix2D
Example:
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.350783For further examples, see the package doc.
assign
in class ObjectMatrix2D
function
- a function object taking as argument the current cell's value.DoubleFunctions
public ObjectMatrix2D assign(Object value)
ObjectMatrix2D
assign
in class ObjectMatrix2D
value
- the value to be filled into the cells.public ObjectMatrix2D assign(Object[] values)
ObjectMatrix2D
The values are copied. So subsequent changes in values are not reflected in the matrix, and vice-versa.
assign
in class WrapperObjectMatrix2D
values
- the values to be filled into the cells.public ObjectMatrix2D assign(Object[][] values)
ObjectMatrix2D
The values are copied. So subsequent changes in values are not reflected in the matrix, and vice-versa.
assign
in class ObjectMatrix2D
values
- the values to be filled into the cells.public ObjectMatrix2D assign(ObjectMatrix2D source)
ObjectMatrix2D
assign
in class ObjectMatrix2D
source
- the source matrix to copy from (may be identical to the
receiver).public ObjectMatrix2D assign(ObjectMatrix2D y, ObjectObjectFunction function)
ObjectMatrix2D
assign
in class WrapperObjectMatrix2D
y
- 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,DoubleFunctions
public int cardinality()
ObjectMatrix2D
cardinality
in class ObjectMatrix2D
public Object[] elements()
ObjectMatrix2D
elements
in class WrapperObjectMatrix2D
public boolean equals(Object obj)
ObjectMatrix2D
equals
in class WrapperObjectMatrix2D
obj
- the Object to be compared for equality with the receiver.public ObjectMatrix2D forEachNonZero(IntIntObjectFunction function)
ObjectMatrix2D
forEachNonZero
in class ObjectMatrix2D
function
- 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)
ObjectMatrix2D
Provided 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 WrapperObjectMatrix2D
row
- the index of the row-coordinate.column
- the index of the column-coordinate.public ObjectMatrix2D like(int rows, int columns)
ObjectMatrix2D
like
in class WrapperObjectMatrix2D
rows
- the number of rows the matrix shall have.columns
- the number of columns the matrix shall have.public ObjectMatrix1D like1D(int size)
ObjectMatrix2D
like1D
in class WrapperObjectMatrix2D
size
- the number of cells the matrix shall have.public void setQuick(int row, int column, Object value)
ObjectMatrix2D
Provided 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 WrapperObjectMatrix2D
row
- 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