C# 클래스 natix.SimilaritySearch.StringSpace

String space
상속: MetricDB
파일 보기 프로젝트 열기: sadit/natix 1 사용 예제들

공개 프로퍼티들

프로퍼티 타입 설명
seqs List

보호된 프로퍼티들

프로퍼티 타입 설명
numdist long

공개 메소드들

메소드 설명
Add ( object u ) : int
Build ( string seqlist ) : void
Build ( string outname, IList seqs ) : void
Dice ( string a, string b ) : double

Hamming distance

Dist ( object a, object b ) : double

Wrapper to the real string distance

Hamming ( string a, string b ) : double

Hamming distance for Generic Datatype

Intersection ( string a, string b ) : double

Knr Intersection distance

Jaccard ( string a, string b ) : double

Jaccard's distance

LCS ( string a, string b ) : double

LCS over Levenshtein

Levenshtein ( string a, string b ) : double

Edit distance

Levenshtein ( string a, string b, byte inscost, byte delcost, byte repcost ) : int

Levenshtein distance for generic datatype. It has customizable costs

LexicographicCompare ( string a, int aStart, int aEnd, string b, int bStart, int bEnd ) : int

Compare to arrays lexicographically, returns an integer representing something like a - b

LexicographicCompare ( string a, string b ) : int

lexicographic comparison, starting always at position 0 of every sequence

Load ( BinaryReader Input ) : void
Parse ( string s ) : object

Parse an string into the object representation

PrefixLength ( string a, string b ) : double

Knr prefix length distance

Save ( BinaryWriter Output ) : void
StringSpace ( ) : System

Constructor

this ( int docid ) : object

Retrieves the object associated to object id docid

비공개 메소드들

메소드 설명
minimum3 ( int a, int b, int c ) : int

메소드 상세

Add() 공개 메소드

public Add ( object u ) : int
u object
리턴 int

Build() 공개 메소드

public Build ( string seqlist ) : void
seqlist string
리턴 void

Build() 공개 메소드

public Build ( string outname, IList seqs ) : void
outname string
seqs IList
리턴 void

Dice() 공개 정적인 메소드

Hamming distance
public static Dice ( string a, string b ) : double
a string
b string
리턴 double

Dist() 공개 메소드

Wrapper to the real string distance
public Dist ( object a, object b ) : double
a object
b object
리턴 double

Hamming() 공개 정적인 메소드

Hamming distance for Generic Datatype
public static Hamming ( string a, string b ) : double
a string
b string
리턴 double

Intersection() 공개 정적인 메소드

Knr Intersection distance
public static Intersection ( string a, string b ) : double
a string
b string
리턴 double

Jaccard() 공개 정적인 메소드

Jaccard's distance
public static Jaccard ( string a, string b ) : double
a string
b string
리턴 double

LCS() 공개 정적인 메소드

LCS over Levenshtein
public static LCS ( string a, string b ) : double
a string
b string
리턴 double

Levenshtein() 공개 정적인 메소드

Edit distance
public static Levenshtein ( string a, string b ) : double
a string
b string
리턴 double

Levenshtein() 공개 정적인 메소드

Levenshtein distance for generic datatype. It has customizable costs
public static Levenshtein ( string a, string b, byte inscost, byte delcost, byte repcost ) : int
a string
b string
inscost byte
delcost byte
repcost byte
리턴 int

LexicographicCompare() 공개 정적인 메소드

Compare to arrays lexicographically, returns an integer representing something like a - b
public static LexicographicCompare ( string a, int aStart, int aEnd, string b, int bStart, int bEnd ) : int
a string
aStart int
aEnd int
b string
bStart int
bEnd int
리턴 int

LexicographicCompare() 공개 정적인 메소드

lexicographic comparison, starting always at position 0 of every sequence
public static LexicographicCompare ( string a, string b ) : int
a string
b string
리턴 int

Load() 공개 메소드

public Load ( BinaryReader Input ) : void
Input System.IO.BinaryReader
리턴 void

Parse() 공개 메소드

Parse an string into the object representation
public Parse ( string s ) : object
s string
리턴 object

PrefixLength() 공개 정적인 메소드

Knr prefix length distance
public static PrefixLength ( string a, string b ) : double
a string
b string
리턴 double

Save() 공개 메소드

public Save ( BinaryWriter Output ) : void
Output System.IO.BinaryWriter
리턴 void

StringSpace() 공개 메소드

Constructor
public StringSpace ( ) : System
리턴 System

this() 공개 메소드

Retrieves the object associated to object id docid
public this ( int docid ) : object
docid int
리턴 object

프로퍼티 상세

numdist 보호되어 있는 프로퍼티

protected long numdist
리턴 long

seqs 공개적으로 프로퍼티

public List seqs
리턴 List