TABLE_QUALITY is an executable C++ program, using double precision arithmetic, which reads a data file containg the coordinates of N points in an M dimensional region, and computes some measures of the quality of dispersion of the points.
The program assumes that the pointset lies in the unit hypercube. However, it is easy to modify the program to handle other regions. A single routine, named sample_routine, is required to return sample points in the region. To handle a different region, simply modify this routine, and rebuild the program. One other built-in routine is already available, for sampling the unit sphere.
The unit hypercube in M dimensional space is simply the set of all vectors whose entries are between 0 and 1. It is a natural abstraction of the unit line segment, the unit square, and the unit cube, and represents a very simple chunk of M dimensional space.
The quality measures computed include:
The program also prints:
QUALITY is a C++ library of routines which is used to make the computations needed by TABLE_QUALITY. To build a copy of TABLE_QUALITY, a compiled copy of the QUALITY library must be available.
TABLE is a file format which is used for the input file.
TABLE_BORDER is a C++ program that can read a TABLE file and add zero entries corresponding to a single layer of boundary data.
TABLE_DELAUNAY is an executable C++ program that reads a file of 2d point coordinates and computes the Delaunay triangulation.
TABLE_DISCREPANCY is a C++ program that bounds the star discrepancy of a point set.
TABLE_IO is a C++ library of routines that can read or write a TABLE file.
TABLE_LATINIZE is a C++ program that can read a TABLE file and write out a "latinized" version.
TABLE_QUALITY is also available in a FORTRAN90 version and a MATLAB version.
TABLE_UNBORDER is a C++ program can be used to remove the border from a table file.
TABLE_VORONOI is a C++ program that can read a TABLE file describing a set of 2D points, and print out information describing the Voronoi diagram of those points.
You can go up one level to the C++ source codes.