Uses of Class
infomat.vectorspace.IMatrix

Packages that use IMatrix
infomat.algorithms   
infomat.io   
infomat.vectorspace   
infomat.view   
infomat.view.picture   
 

Uses of IMatrix in infomat.algorithms
 

Methods in infomat.algorithms with parameters of type IMatrix
 IObjectGrouping RelativeClusterer.cluster(IMatrix matrix, IObjectSet ioset)
           
 IObjectGrouping RandomClusterer.cluster(IMatrix matrix, IObjectSet set)
           
 IObjectGrouping KMeans.cluster(IMatrix matrix, IObjectSet ioset)
           
abstract  IObjectGrouping GroupingAlgorithm.cluster(IMatrix matrix, IObjectSet set)
           
 

Uses of IMatrix in infomat.io
 

Methods in infomat.io that return IMatrix
 IMatrix IMatrixIO.load(java.io.File file)
          Loads a IMatrix from file in XML format
 IMatrix IMatrixIO.loadCompressed(java.io.File file)
           
 

Methods in infomat.io with parameters of type IMatrix
 IObjectGrouping IObjectGroupingIO.load(boolean row, IMatrix matrix, java.io.File file)
           
 IObjectGrouping IObjectGroupingIO.loadCompressed(boolean row, IMatrix matrix, java.io.File file)
           
 void IMatrixIO.save(IMatrix m, java.io.File file)
          Exports the IMatrix in XML format
 void IObjectGroupingIO.save(IObjectGrouping grouping, IMatrix matrix, java.io.File file)
          Exports the IMatrix in XML format
 void IMatrixIO.saveCompressed(IMatrix m, java.lang.String fileName)
          Exports the IMatrix in XML format The file is saved in compressed .zip-format.
 void IObjectGroupingIO.saveCompressed(IObjectGrouping grouping, IMatrix matrix, java.lang.String fileName)
          Exports the IMatrix in XML format The file is saved in compressed .zip-format.
 

Uses of IMatrix in infomat.vectorspace
 

Methods in infomat.vectorspace that return IMatrix
 IMatrix CorpusIO.load(java.io.File file)
          Loads a corpus from file in XML format
 IMatrix CorpusIO.loadCompressed(java.io.File file)
           
 

Methods in infomat.vectorspace with parameters of type IMatrix
 java.util.HashMap<IObject,java.lang.Float> IObjectGroup.getRepresentation(IMatrix matrix)
          Returns a centroid in the form of a HashMap, mapping IObject to a Float value.
 java.util.HashMap<IObject,java.lang.Float> IObject.getRepresentation(IMatrix myIMatrix)
          Returns the representation in the form of a HashMap, mapping IObject to a Float value.
static IObjectGrouping Sorter.makeWeightGroupingRelativeGroupingOfOtherSet(IObjectSet set, IObjectGrouping grouping, IMatrix matrix)
           
static void Sorter.sortInSimOrderWithinClusters(IMatrix matrix, java.util.Vector<IObjectGroup> groups)
           
 

Uses of IMatrix in infomat.view
 

Methods in infomat.view that return IMatrix
 IMatrix InfomatModel.getIMatrix()
           
 

Constructors in infomat.view with parameters of type IMatrix
AlgorithmFrame(GroupingAlgorithm algorithm, IMatrix matrix, InfomatModel model, InfomatView view)
           
 

Uses of IMatrix in infomat.view.picture
 

Methods in infomat.view.picture with parameters of type IMatrix
static SparsePicture SparsePictureConstructor.zoom(InfomatView v, IMatrix m, java.awt.Dimension d, int cFrom, int cTo, int rFrom, int rTo)
           
 

Constructors in infomat.view.picture with parameters of type IMatrix
SparsePicture(IMatrix matrix, java.awt.Dimension imageDimension, int colFrom, int colTo, int rowFrom, int rowTo)