Interface ShortMatrix

All Superinterfaces:
BaseGenericMatrix<Short>, BaseMatrix, BaseMatrixProperties, BaseNumberMatrix<Short>, BasicDoubleCalculations, BasicEntrywiseDoubleCalculations, BooleanCalculations, CanPerformCalculations, Clearable, Cloneable, Comparable<Matrix>, Conversions, CoordinateFunctions, CoreObject, CreatorDoubleCalculations, DecompositionDoubleCalculations, DenseGenericMatrix<Short>, DenseGenericMatrix2D<Short>, DenseGenericMatrixMultiD<Short>, DenseMatrix, DenseMatrix2D, DenseMatrixMultiD, DenseNumberMatrix<Short>, DenseNumberMatrix2D<Short>, DenseNumberMatrixMultiD<Short>, DiscretizeCalculations, DistanceMeasures, DoubleCalculations, EntrywiseDoubleCalculations, ExtendedMatrixProperties, GeneralDoubleCalculations, GenericMatrix<Short>, GenericMatrix2D<Short>, GenericMatrixMultiD<Short>, GettersAndSetters, HasDescription, HasGUIObject, HasId, HasLabel, HasMetaData, HyperbolicDoubleCalculations, IntCalculations, Matrix, Matrix2D, MatrixMultiD, MiscEntrywiseDoubleCalculations, MiscGeneralDoubleCalculations, MissingValueDoubleCalculations, NumberMatrix<Short>, NumberMatrix2D<Short>, NumberMatrixMultiD<Short>, ObjectCalculations, RoundingDoubleCalculations, Serializable, SparseGenericMatrix<Short>, SparseGenericMatrix2D<Short>, SparseGenericMatrixMultiD<Short>, SparseMatrix, SparseMatrix2D, SparseMatrixMultiD, SparseNumberMatrix<Short>, SparseNumberMatrix2D<Short>, SparseNumberMatrixMultiD<Short>, StatisticalDoubleCalculations, StringCalculations, TrigonometricDoubleCalculations
All Known Subinterfaces:
DenseShortMatrix, DenseShortMatrix2D, ShortMatrix2D, SparseShortMatrix, SparseShortMatrix2D
All Known Implementing Classes:
AbstractDenseShortMatrix, AbstractDenseShortMatrix2D, AbstractShortMatrix, AbstractSparseShortMatrix, AbstractSparseShortMatrix2D, ArrayDenseShortMatrix2D, DefaultDenseShortMatrix2D, DefaultSparseShortMatrix, ShortCalculationMatrix

public interface ShortMatrix extends NumberMatrix<Short>
  • Method Details

    • getShort

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

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