Uses of Interface
org.la4j.matrix.functor.MatrixPredicate
-
Packages that use MatrixPredicate Package Description org.la4j -
-
Uses of MatrixPredicate in org.la4j
Fields in org.la4j declared as MatrixPredicate Modifier and Type Field Description static MatrixPredicate
Matrices. DIAGONAL_MATRIX
Checks whether the matrix is a diagonal matrix.static MatrixPredicate
Matrices. IDENTITY_MATRIX
Checks whether the matrix is an identity matrix.static MatrixPredicate
Matrices. LOWER_BIDIAGONAL_MATRIX
Checks whether the matrix is a lower bi-diagonal matrix.static MatrixPredicate
Matrices. LOWER_TRIANGULAR_MATRIX
Checks whether the matrix is a lower triangular matrix.static MatrixPredicate
Matrices. NEGATIVE_MATRIX
Checks whether the matrix is a negative matrix.static MatrixPredicate
Matrices. POSITIVE_MATRIX
Checks whether the matrix is a positive matrix.static MatrixPredicate
Matrices. TRIDIAGONAL_MATRIX
Checks whether the matrix is a tridiagonal matrix.static MatrixPredicate
Matrices. UPPER_BIDIAGONAL_MATRIX
Checks whether the matrix is an upper bidiagonal matrix.static MatrixPredicate
Matrices. UPPER_TRIANGULAR_MATRIX
Checks whether the matrix is an upper triangular matrix.static MatrixPredicate
Matrices. ZERO_MATRIX
Checks whether the matrix is a zero matrix.Methods in org.la4j with parameters of type MatrixPredicate Modifier and Type Method Description boolean
Matrix. is(MatrixPredicate predicate)
Checks whether this matrix compiles with givenpredicate
or not.boolean
Matrix. non(MatrixPredicate predicate)
Checks whether this matrix compiles with givenpredicate
or not.
-