Interface ByteMatrix

All Superinterfaces:
BaseGenericMatrix<Byte>, BaseMatrix, BaseMatrixProperties, BasicDoubleCalculations, BasicEntrywiseDoubleCalculations, BooleanCalculations, CanPerformCalculations, Clearable, Cloneable, Comparable<Matrix>, Conversions, CoordinateFunctions, CoreObject, CreatorDoubleCalculations, DecompositionDoubleCalculations, DenseGenericMatrix<Byte>, DenseGenericMatrix2D<Byte>, DenseGenericMatrixMultiD<Byte>, DenseMatrix, DenseMatrix2D, DenseMatrixMultiD, DiscretizeCalculations, DistanceMeasures, DoubleCalculations, EntrywiseDoubleCalculations, ExtendedMatrixProperties, GeneralDoubleCalculations, GenericMatrix<Byte>, GenericMatrix2D<Byte>, GenericMatrixMultiD<Byte>, GettersAndSetters, HasDescription, HasGUIObject, HasId, HasLabel, HasMetaData, HyperbolicDoubleCalculations, IntCalculations, Matrix, Matrix2D, MatrixMultiD, MiscEntrywiseDoubleCalculations, MiscGeneralDoubleCalculations, MissingValueDoubleCalculations, ObjectCalculations, RoundingDoubleCalculations, Serializable, SparseGenericMatrix<Byte>, SparseGenericMatrix2D<Byte>, SparseGenericMatrixMultiD<Byte>, SparseMatrix, SparseMatrix2D, SparseMatrixMultiD, StatisticalDoubleCalculations, StringCalculations, TrigonometricDoubleCalculations
All Known Subinterfaces:
ByteMatrix2D, DenseByteMatrix, DenseByteMatrix2D, SparseByteMatrix, SparseByteMatrix2D
All Known Implementing Classes:
AbstractByteMatrix, AbstractDenseByteMatrix, AbstractDenseByteMatrix2D, AbstractSparseByteMatrix, AbstractSparseByteMatrix2D, ArrayDenseByteMatrix2D, ByteCalculationMatrix, DefaultDenseByteMatrix2D, DefaultSparseByteMatrix

public interface ByteMatrix extends GenericMatrix<Byte>
  • Method Details

    • getByte

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

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