C# Class natix.SimilaritySearch.DocumentDB.Tdoc

A document vector representation
Mostrar archivo Open project: sadit/natix

Public Properties

Property Type Description
doc Tvoc[]

Public Methods

Method Description
Load ( BinaryReader b ) : Tdoc

Load a document's vector from stream

Save ( BinaryWriter b ) : void

Save this document's vector

Tdoc ( IList keywords, IList weigths ) : System

Builds the Tdoc from two vectors

Tdoc ( Tvoc d ) : System

Constructor

Method Details

Load() public static method

Load a document's vector from stream
public static Load ( BinaryReader b ) : Tdoc
b System.IO.BinaryReader
return Tdoc

Save() public method

Save this document's vector
public Save ( BinaryWriter b ) : void
b System.IO.BinaryWriter
return void

Tdoc() public method

Builds the Tdoc from two vectors
public Tdoc ( IList keywords, IList weigths ) : System
keywords IList
weigths IList
return System

Tdoc() public method

Constructor
public Tdoc ( Tvoc d ) : System
d Tvoc
return System

Property Details

doc public_oe property

The document vector
public Tvoc[] doc
return Tvoc[]