Interface BooleanMatrix

All Superinterfaces:
BaseGenericMatrix<Boolean>, BaseMatrix, BaseMatrixProperties, BasicDoubleCalculations, BasicEntrywiseDoubleCalculations, BooleanCalculations, CanPerformCalculations, Clearable, Cloneable, Comparable<Matrix>, Conversions, CoordinateFunctions, CoreObject, CreatorDoubleCalculations, DecompositionDoubleCalculations, DenseGenericMatrix<Boolean>, DenseGenericMatrix2D<Boolean>, DenseGenericMatrixMultiD<Boolean>, DenseMatrix, DenseMatrix2D, DenseMatrixMultiD, DiscretizeCalculations, DistanceMeasures, DoubleCalculations, EntrywiseDoubleCalculations, ExtendedMatrixProperties, GeneralDoubleCalculations, GenericMatrix<Boolean>, GenericMatrix2D<Boolean>, GenericMatrixMultiD<Boolean>, GettersAndSetters, HasDescription, HasGUIObject, HasId, HasLabel, HasMetaData, HyperbolicDoubleCalculations, IntCalculations, Matrix, Matrix2D, MatrixMultiD, MiscEntrywiseDoubleCalculations, MiscGeneralDoubleCalculations, MissingValueDoubleCalculations, ObjectCalculations, RoundingDoubleCalculations, Serializable, SparseGenericMatrix<Boolean>, SparseGenericMatrix2D<Boolean>, SparseGenericMatrixMultiD<Boolean>, SparseMatrix, SparseMatrix2D, SparseMatrixMultiD, StatisticalDoubleCalculations, StringCalculations, TrigonometricDoubleCalculations
All Known Subinterfaces:
BooleanMatrix2D, DenseBooleanMatrix2D, SparseBooleanMatrix2D
All Known Implementing Classes:
AbstractBooleanMatrix, AbstractDenseBooleanMatrix, AbstractDenseBooleanMatrix2D, AbstractSparseBooleanMatrix, AbstractSparseBooleanMatrix2D, ArrayDenseBooleanMatrix2D, BitSetDenseBooleanMatrix2D, BooleanCalculationMatrix, DefaultSparseBooleanMatrix

public interface BooleanMatrix extends GenericMatrix<Boolean>
  • Method Details

    • getBoolean

      boolean getBoolean(long... coordinates)
      Returns a byte representation of an entry in the matrix. The stored value will be converted to a boolean as good as possible.
      Parameters:
      coordinates - location of the entry
      Returns:
      a boolean representation of the entry @
    • setBoolean

      void setBoolean(boolean value, long... coordinates)
      Sets an entry in the matrix to a boolean value. If the matrix cannot store byte values, the value will be represented as good as possible.
      Parameters:
      value - boolean value
      coordinates - location of the entry @