Interface IntMatrix

All Superinterfaces:
BaseGenericMatrix<Integer>, BaseMatrix, BaseMatrixProperties, BasicDoubleCalculations, BasicEntrywiseDoubleCalculations, BooleanCalculations, CanPerformCalculations, Clearable, Cloneable, Comparable<Matrix>, Conversions, CoordinateFunctions, CoreObject, CreatorDoubleCalculations, DecompositionDoubleCalculations, DenseGenericMatrix<Integer>, DenseGenericMatrix2D<Integer>, DenseGenericMatrixMultiD<Integer>, DenseMatrix, DenseMatrix2D, DenseMatrixMultiD, DiscretizeCalculations, DistanceMeasures, DoubleCalculations, EntrywiseDoubleCalculations, ExtendedMatrixProperties, GeneralDoubleCalculations, GenericMatrix<Integer>, GenericMatrix2D<Integer>, GenericMatrixMultiD<Integer>, GettersAndSetters, HasDescription, HasGUIObject, HasId, HasLabel, HasMetaData, HyperbolicDoubleCalculations, IntCalculations, Matrix, Matrix2D, MatrixMultiD, MiscEntrywiseDoubleCalculations, MiscGeneralDoubleCalculations, MissingValueDoubleCalculations, ObjectCalculations, RoundingDoubleCalculations, Serializable, SparseGenericMatrix<Integer>, SparseGenericMatrix2D<Integer>, SparseGenericMatrixMultiD<Integer>, SparseMatrix, SparseMatrix2D, SparseMatrixMultiD, StatisticalDoubleCalculations, StringCalculations, TrigonometricDoubleCalculations
All Known Subinterfaces:
DenseIntMatrix, DenseIntMatrix2D, IntMatrix2D, SparseIntMatrix, SparseIntMatrix2D
All Known Implementing Classes:
AbstractDenseIntMatrix, AbstractDenseIntMatrix2D, AbstractIntMatrix, AbstractSparseIntMatrix, AbstractSparseIntMatrix2D, ArrayDenseIntMatrix2D, AvailableProcessorsMatrix, DefaultDenseIntMatrix2D, DefaultSparseIntMatrix, ImageMatrix, IntCalculationMatrix

public interface IntMatrix extends GenericMatrix<Integer>
  • Method Details

    • getInt

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

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