Package elki.data.model
Class BiclusterWithInversionsModel
- java.lang.Object
-
- elki.data.model.BiclusterModel
-
- elki.data.model.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 DBIDs
invertedRows
The ids of inverted rows.
-
Constructor Summary
Constructors Constructor Description BiclusterWithInversionsModel(int[] colIDs, DBIDs invertedRows)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DBIDs
getInvertedRows()
Provides a copy of the inverted column IDs.void
setInvertedRows(DBIDs invertedRows)
Sets the ids of the inverted rows.-
Methods inherited from class elki.data.model.BiclusterModel
getColumnIDs
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface elki.data.model.Model
writeToText
-
-
-
-
Field Detail
-
invertedRows
private DBIDs invertedRows
The ids of inverted rows.
-
-
Constructor Detail
-
BiclusterWithInversionsModel
public BiclusterWithInversionsModel(int[] colIDs, DBIDs invertedRows)
- Parameters:
colIDs
- Col IDs
-
-
Method Detail
-
setInvertedRows
public void setInvertedRows(DBIDs invertedRows)
Sets the ids of the inverted rows.- Parameters:
invertedRows
- the ids of the inverted rows
-
getInvertedRows
public DBIDs getInvertedRows()
Provides a copy of the inverted column IDs.- Returns:
- a copy of the inverted column IDs.
-
-