public class BooleanMatrixToken extends MatrixToken
_nils, DO_COPY, DO_NOT_COPY
Constructor and Description |
---|
BooleanMatrixToken()
Construct an BooleanMatrixToken with a one by one matrix.
|
BooleanMatrixToken(boolean[][] value)
Construct a BooleanMatrixToken with the specified 2-D matrix.
|
BooleanMatrixToken(java.lang.String init)
Construct a BooleanMatrixToken from the specified string.
|
BooleanMatrixToken(Token[] tokens,
int rows,
int columns)
Construct an BooleanMatrixToken from the specified array of
tokens.
|
Modifier and Type | Method and Description |
---|---|
protected boolean[][] |
_createIdentity(int dim)
Return an new identity matrix with the specified dimension.
|
boolean[][] |
booleanMatrix()
Return a copy of the contained 2-D matrix.
|
static BooleanMatrixToken |
convert(Token token)
Convert the specified token into an instance of BooleanMatrixToken.
|
MatrixToken |
crop(int rowStart,
int colStart,
int rowSpan,
int colSpan)
Return a new matrix that is a sub-matrix of this matrix.
|
boolean |
equals(java.lang.Object object)
Return true if the argument is an instance of BooleanMatrixToken
of the same dimensions and the corresponding elements of the matrices
are equal.
|
int |
getColumnCount()
Return the number of columns in the matrix.
|
Token |
getElementAsToken(int row,
int column)
Return the element of the matrix at the specified
row and column in a BooleanToken.
|
boolean |
getElementAt(int row,
int column)
Return the element of the contained matrix at the specified
row and column.
|
Type |
getElementType()
Return the Type of the tokens contained in this matrix token.
|
int |
getRowCount()
Return the number of rows in the matrix.
|
Type |
getType()
Return the type of this token.
|
int |
hashCode()
Return a hash code value for this token.
|
MatrixToken |
join(MatrixToken[][] matrices)
Join a matrix of matrices into a single matrix by tiling.
|
Token |
one()
Return a new Token representing the left multiplicative
identity.
|
Token |
oneRight()
Return a new Token representing the right multiplicative
identity.
|
MatrixToken[][] |
split(int[] rows,
int[] columns)
Split this matrix into multiple matrices.
|
Token |
zero()
Return a new Token representing the additive identity.
|
_add, _addElement, _divideElement, _elementIsNil, _isCloseTo, _isEqualTo, _moduloElement, _multiply, _multiplyElement, _subtract, _subtractElement, _subtractElementReverse, add, addReverse, arrayToMatrix, arrayToMatrix, arrayToMatrixReturnType, complexMatrix, create, createSequence, createSequenceReturnType, createTokenSequence, determineSequenceLength, divide, divideReverse, doubleMatrix, fixMatrix, intMatrix, isCloseTo, isEqualTo, longMatrix, matrixToArray, matrixToArrayReturnType, modulo, moduloReverse, multiply, multiplyReverse, subtract, subtractReverse, toArray, toArrayColumnMajor, toArrayReturnType, toString
isCloseTo, isNil, notSupportedConversionMessage, notSupportedIncomparableConversionMessage, notSupportedIncomparableMessage, notSupportedMessage, notSupportedNullNilStringMessage, pow, zeroReturnType
public BooleanMatrixToken()
public BooleanMatrixToken(boolean[][] value) throws IllegalActionException
value
- The 2-D boolean matrix.IllegalActionException
- If the specified matrix
is null.public BooleanMatrixToken(java.lang.String init) throws IllegalActionException
init
- A string expression of a boolean matrix.IllegalActionException
- If the string does
not contain a parsable boolean matrix.public BooleanMatrixToken(Token[] tokens, int rows, int columns) throws IllegalActionException
tokens
- The array of tokens, which must contains
rows*columns BooleanTokens.rows
- The number of rows in the matrix to be created.columns
- The number of columns in the matrix to be
created.IllegalActionException
- If the array of tokens is
null, or the length of the array is not correct, or if one of
the elements of the array is null, or if one of the elements
of the array cannot be losslessly converted to a boolean.public boolean[][] booleanMatrix()
booleanMatrix
in class MatrixToken
public static BooleanMatrixToken convert(Token token) throws IllegalActionException
token
- The token to be converted to a BooleanMatrixToken.IllegalActionException
- If the conversion cannot
be carried out.public MatrixToken crop(int rowStart, int colStart, int rowSpan, int colSpan) throws IllegalActionException
crop
in class MatrixToken
rowStart
- The row to start on.colStart
- The column to start on.rowSpan
- The number of rows to copy.colSpan
- The number of columns to copy.IllegalActionException
- If the returned matrix is empty or if the specified
parameters result in out of bounds accesses.public boolean equals(java.lang.Object object)
equals
in class java.lang.Object
object
- An instance of Object.public int getColumnCount()
getColumnCount
in class MatrixToken
public Token getElementAsToken(int row, int column) throws java.lang.ArrayIndexOutOfBoundsException
getElementAsToken
in class MatrixToken
row
- The row index of the desired element.column
- The column index of the desired element.java.lang.ArrayIndexOutOfBoundsException
- If the specified
row or column number is outside the range of the matrix.public boolean getElementAt(int row, int column)
row
- The row index of the desired element.column
- The column index of the desired element.java.lang.ArrayIndexOutOfBoundsException
- If the specified
row or column number is outside the range of the matrix.public Type getElementType()
getElementType
in class MatrixToken
public int getRowCount()
getRowCount
in class MatrixToken
public Type getType()
public int hashCode()
hashCode
in class java.lang.Object
public MatrixToken join(MatrixToken[][] matrices) throws IllegalActionException
join
in class MatrixToken
matrices
- A two-dimensional array of matrix tokens.IllegalActionException
- If the types of the matrices
in the input are not all the same, or if tiling fails due
to size incompatibilities, or if the input matrix has no
tokens.public MatrixToken[][] split(int[] rows, int[] columns)
split
in class MatrixToken
rows
- The number of rows per submatrix.columns
- The number of columns per submatrix.public Token one()
public Token oneRight()
oneRight
in class MatrixToken
public Token zero()
protected boolean[][] _createIdentity(int dim)
dim
- The dimension