Design
irds.txt
Associated article: Information Retrieval & Computational Geometry
Tags: Design
Published data accompanying the article by D. Ryan Stephens in which he uses techniques borrowed from the field of Information Retrieval to measure the similarity between data sets efficiently, accurately, and with minimal development. Also see IRDS.ZIP.
Information Retrieval & Computational Geometry
by D. Ryan Stephens
Listing One
while (reader.Read())
{
for (int j = 0; j < reader.FieldCount; j++)
{
name = reader.GetName( j );
val = reader.GetValue( j ).ToString();
key = name + "|" + val;
idxDict = dict.IndexOf( key );
...


