Interface ByteArrayMatrix

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:
ByteArrayMatrix2D, DenseByteArrayMatrix, DenseByteArrayMatrix2D, SparseByteArrayMatrix, SparseByteArrayMatrix2D
All Known Implementing Classes:
AbstractByteArrayMatrix, AbstractDenseByteArrayMatrix, AbstractDenseByteArrayMatrix2D, AbstractSparseByteArrayMatrix, AbstractSparseByteArrayMatrix2D

public interface ByteArrayMatrix extends GenericMatrix<byte[]>
  • Method Details

    • getByteArray

      byte[] getByteArray(long... coordinates)
      Returns a byte array 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 array representation of the entry @
    • setByteArray

      void setByteArray(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 array value
      coordinates - location of the entry @