Uses of Class
idl.tmt.representation.matrix.TmtMatrix

Packages that use TmtMatrix
idl.tmt.documentsource   
idl.tmt.documentsource.webcrawl   
idl.tmt.representation   
idl.tmt.representation.matrix   
idl.tmt.representation.transformations   
idl.tmt.testing   
idl.tmt.util   
 

Uses of TmtMatrix in idl.tmt.documentsource
 

Methods in idl.tmt.documentsource with parameters of type TmtMatrix
 void DocumentIDMapper.applyFilter(TmtMatrix filterMatrix)
           
 

Uses of TmtMatrix in idl.tmt.documentsource.webcrawl
 

Methods in idl.tmt.documentsource.webcrawl with parameters of type TmtMatrix
 void MultiMapDocumentIDMap.applyFilter(TmtMatrix filterMatrix)
          Filters this documentIDMapper based on the given matrix.
 

Uses of TmtMatrix in idl.tmt.representation
 

Fields in idl.tmt.representation declared as TmtMatrix
private  TmtMatrix BagOfWordsRepresentationBuilder.myMatrix
           
(package private)  TmtMatrix IndexedCollection.matrix
           
 

Methods in idl.tmt.representation that return TmtMatrix
 TmtMatrix BagOfWordsRepresentationBuilder.getRepresentation()
           
 TmtMatrix IndexedCollection.getMatrix()
           
 TmtMatrix RepresentationBuilder.getRepresentation()
           
 

Methods in idl.tmt.representation with parameters of type TmtMatrix
 void TermList.applyFilter(TmtMatrix filterMatrix)
          Filters this TermList based on the given matrix.
 void IndexedCollection.setMatrix(TmtMatrix m)
           
 

Constructors in idl.tmt.representation with parameters of type TmtMatrix
IndexedCollection(TermList terms, DocumentIDMapper docIDMapper, URLMapper ul, TmtMatrix mat)
           
 

Uses of TmtMatrix in idl.tmt.representation.matrix
 

Methods in idl.tmt.representation.matrix that return TmtMatrix
 TmtMatrix TmtMatrix.transpose()
          creates a new matrix that is the transpose of this one
 TmtMatrix TmtMatrix.getColumns(int start, int end)
          construct a new matrix containing a subset of the columns of this matrix
 TmtMatrix TmtMatrix.getRows(int start, int end)
          construct a new matrix containing a subset of the columns of this matrix
 TmtMatrix TmtMatrix.getColumnCentered()
          returns column-centered version of the matrix
 TmtMatrix TmtMatrix.getColumnNormalized()
          returns column-normalized (unit length) version of the matrix
 TmtMatrix TmtMatrix.addMatrix(TmtMatrix b)
          returns the matrix sum of this matrix with another matrix
 TmtMatrix TmtMatrix.scalarMultiply(double d)
          returns the product of this matrix times a scalar
 TmtMatrix TmtMatrix.preMultiplyBy(TmtMatrix b)
          premuliply this matrix by another matrix B
 TmtMatrix TmtMatrix.postMultiplyBy(TmtMatrix b)
          postmultiply this matrix by another matrix B
 TmtMatrix TmtMatrix.getCorrelationMatrix()
          computes and returns the correlation matrix of this matrix
 TmtMatrix TmtMatrix.getLeftSingularVectors()
          returns a TmtMatrix containing the left singular vectors of this matrix
 TmtMatrix TmtMatrix.getRightSingularVectors()
          returns a TmtMatrix containing the right singular vectors of this matrix
 TmtMatrix TmtMatrix.getSingularValues()
          returns a diagonal TmtMatrix containing the singular values of this matrix
 

Methods in idl.tmt.representation.matrix with parameters of type TmtMatrix
 TmtMatrix TmtMatrix.addMatrix(TmtMatrix b)
          returns the matrix sum of this matrix with another matrix
 TmtMatrix TmtMatrix.preMultiplyBy(TmtMatrix b)
          premuliply this matrix by another matrix B
 TmtMatrix TmtMatrix.postMultiplyBy(TmtMatrix b)
          postmultiply this matrix by another matrix B
 

Constructors in idl.tmt.representation.matrix with parameters of type TmtMatrix
TmtMatrix(TmtMatrix m)
           
 

Uses of TmtMatrix in idl.tmt.representation.transformations
 

Methods in idl.tmt.representation.transformations that return TmtMatrix
private  TmtMatrix MatrixRowNormalizer.transformMatrix(TmtMatrix sourceMatrix)
           
private  TmtMatrix TermOccurrenceFilter.filterTerms(double minOccurrences, TmtMatrix matrix, TermList termList)
           
private  TmtMatrix TfIdfWeighter.transformMatrix(TmtMatrix m)
           
private  TmtMatrix MatrixColumnCenterer.transformMatrix(TmtMatrix sourceMatrix)
           
 

Methods in idl.tmt.representation.transformations with parameters of type TmtMatrix
private  TmtMatrix MatrixRowNormalizer.transformMatrix(TmtMatrix sourceMatrix)
           
private  TmtMatrix TermOccurrenceFilter.filterTerms(double minOccurrences, TmtMatrix matrix, TermList termList)
           
private  DoubleMatrix2D TermOccurrenceFilter.getGlobalTermCounts(TmtMatrix matrix)
           
private  TmtMatrix TfIdfWeighter.transformMatrix(TmtMatrix m)
           
private  TmtMatrix MatrixColumnCenterer.transformMatrix(TmtMatrix sourceMatrix)
           
 

Uses of TmtMatrix in idl.tmt.testing
 

Methods in idl.tmt.testing that return TmtMatrix
private static TmtMatrix StandAloneIndexer.filterTerms(double minOccurrences, TmtMatrix matrix, TermList termList)
           
private static TmtMatrix StandAloneCompleteIndexer.filterTerms(double minOccurrences, TmtMatrix matrix, TermList termList)
           
private static TmtMatrix ClusterTest.filterTerms(double minOccurrences, TmtMatrix matrix, TermList termList)
           
 

Methods in idl.tmt.testing with parameters of type TmtMatrix
private static TmtMatrix StandAloneIndexer.filterTerms(double minOccurrences, TmtMatrix matrix, TermList termList)
           
private static TmtMatrix StandAloneCompleteIndexer.filterTerms(double minOccurrences, TmtMatrix matrix, TermList termList)
           
private static TmtMatrix ClusterTest.filterTerms(double minOccurrences, TmtMatrix matrix, TermList termList)
           
 

Uses of TmtMatrix in idl.tmt.util
 

Fields in idl.tmt.util declared as TmtMatrix
private  TmtMatrix DocumentIndexWriter.myMatrix
           
private  TmtMatrix InvertedIndexWriter.myMatrix
           
 

Methods in idl.tmt.util that return TmtMatrix
static TmtMatrix MatrixUtils.filterTerms(double minOccurrences, TmtMatrix matrix, TermList termList)
           
 

Methods in idl.tmt.util with parameters of type TmtMatrix
static TmtMatrix MatrixUtils.filterTerms(double minOccurrences, TmtMatrix matrix, TermList termList)
           
 void FilterableIDMap.applyFilter(TmtMatrix filterMatrix)
           
 

Constructors in idl.tmt.util with parameters of type TmtMatrix
DocumentIndexWriter(java.lang.String collectionName, TmtMatrix docTermMatrix)
           
InvertedIndexWriter(java.lang.String collectionName, TmtMatrix docTermMatrix)