Class BiclusterWithInversionsModel

  • All Implemented Interfaces:
    Model

    public class BiclusterWithInversionsModel
    extends BiclusterModel
    This code was factored out of the Bicluster class, since not all biclusters have inverted rows.
    Since:
    0.2
    Author:
    Erich Schubert
    • Field Summary

      Fields 
      Modifier and Type Field Description
      private elki.database.ids.DBIDs invertedRows
      The ids of inverted rows.
      • Fields inherited from interface elki.data.model.Model

        TYPE
    • Constructor Summary

      Constructors 
      Constructor Description
      BiclusterWithInversionsModel​(int[] colIDs, elki.database.ids.DBIDs invertedRows)  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      elki.database.ids.DBIDs getInvertedRows()
      Provides a copy of the inverted column IDs.
      void setInvertedRows​(elki.database.ids.DBIDs invertedRows)
      Sets the ids of the inverted rows.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • invertedRows

        private elki.database.ids.DBIDs invertedRows
        The ids of inverted rows.
    • Constructor Detail

      • BiclusterWithInversionsModel

        public BiclusterWithInversionsModel​(int[] colIDs,
                                            elki.database.ids.DBIDs invertedRows)
        Parameters:
        colIDs - Col IDs
    • Method Detail

      • setInvertedRows

        public void setInvertedRows​(elki.database.ids.DBIDs invertedRows)
        Sets the ids of the inverted rows.
        Parameters:
        invertedRows - the ids of the inverted rows
      • getInvertedRows

        public elki.database.ids.DBIDs getInvertedRows()
        Provides a copy of the inverted column IDs.
        Returns:
        a copy of the inverted column IDs.