Interface StringMatrix

All Superinterfaces:
BaseGenericMatrix<String>, BaseMatrix, BaseMatrixProperties, BasicDoubleCalculations, BasicEntrywiseDoubleCalculations, BooleanCalculations, CanPerformCalculations, Clearable, Cloneable, Comparable<Matrix>, Conversions, CoordinateFunctions, CoreObject, CreatorDoubleCalculations, DecompositionDoubleCalculations, DenseGenericMatrix<String>, DenseGenericMatrix2D<String>, DenseGenericMatrixMultiD<String>, DenseMatrix, DenseMatrix2D, DenseMatrixMultiD, DiscretizeCalculations, DistanceMeasures, DoubleCalculations, EntrywiseDoubleCalculations, ExtendedMatrixProperties, GeneralDoubleCalculations, GenericMatrix<String>, GenericMatrix2D<String>, GenericMatrixMultiD<String>, GettersAndSetters, HasDescription, HasGUIObject, HasId, HasLabel, HasMetaData, HyperbolicDoubleCalculations, IntCalculations, Matrix, Matrix2D, MatrixMultiD, MiscEntrywiseDoubleCalculations, MiscGeneralDoubleCalculations, MissingValueDoubleCalculations, ObjectCalculations, RoundingDoubleCalculations, Serializable, SparseGenericMatrix<String>, SparseGenericMatrix2D<String>, SparseGenericMatrixMultiD<String>, SparseMatrix, SparseMatrix2D, SparseMatrixMultiD, StatisticalDoubleCalculations, StringCalculations, TrigonometricDoubleCalculations
All Known Subinterfaces:
DenseStringMatrix, DenseStringMatrix2D, SparseStringMatrix, SparseStringMatrix2D, StringMatrix2D
All Known Implementing Classes:
AbstractDenseStringMatrix, AbstractDenseStringMatrix2D, AbstractSparseStringMatrix, AbstractSparseStringMatrix2D, AbstractStringMatrix, ArrayDenseStringMatrix2D, DefaultDenseStringMatrix2D, DefaultSparseStringMatrix, DenseCSVStringMatrix2D, IrisMatrix, MatrixLibraries, SparseCSVMatrix, StringCalculationMatrix, TextContentMatrix, UJMPPluginsMatrix

public interface StringMatrix extends GenericMatrix<String>
  • Field Details

  • Method Details

    • getString

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

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