Interface FloatMatrix

All Superinterfaces:
BaseGenericMatrix<Float>, BaseMatrix, BaseMatrixProperties, BasicDoubleCalculations, BasicEntrywiseDoubleCalculations, BooleanCalculations, CanPerformCalculations, Clearable, Cloneable, Comparable<Matrix>, Conversions, CoordinateFunctions, CoreObject, CreatorDoubleCalculations, DecompositionDoubleCalculations, DenseGenericMatrix<Float>, DenseGenericMatrix2D<Float>, DenseGenericMatrixMultiD<Float>, DenseMatrix, DenseMatrix2D, DenseMatrixMultiD, DiscretizeCalculations, DistanceMeasures, DoubleCalculations, EntrywiseDoubleCalculations, ExtendedMatrixProperties, GeneralDoubleCalculations, GenericMatrix<Float>, GenericMatrix2D<Float>, GenericMatrixMultiD<Float>, GettersAndSetters, HasDescription, HasGUIObject, HasId, HasLabel, HasMetaData, HyperbolicDoubleCalculations, IntCalculations, Matrix, Matrix2D, MatrixMultiD, MiscEntrywiseDoubleCalculations, MiscGeneralDoubleCalculations, MissingValueDoubleCalculations, ObjectCalculations, RoundingDoubleCalculations, Serializable, SparseGenericMatrix<Float>, SparseGenericMatrix2D<Float>, SparseGenericMatrixMultiD<Float>, SparseMatrix, SparseMatrix2D, SparseMatrixMultiD, StatisticalDoubleCalculations, StringCalculations, TrigonometricDoubleCalculations
All Known Subinterfaces:
DenseFloatMatrix, DenseFloatMatrix2D, FloatMatrix2D, SparseFloatMatrix, SparseFloatMatrix2D
All Known Implementing Classes:
AbstractDenseFloatMatrix, AbstractDenseFloatMatrix2D, AbstractFloatMatrix, AbstractSparseFloatMatrix, AbstractSparseFloatMatrix2D, ArrayDenseFloatMatrix2D, DefaultDenseFloatMatrix2D, DefaultSparseFloatMatrix, FloatCalculationMatrix

public interface FloatMatrix extends GenericMatrix<Float>
  • Method Details

    • getFloat

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

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