BOX_BEHNKEN is a C++ library which returns a set of sample argument values to be used to analyze the behavior of a function.
Given DIM_NUM parameters, each of which is prescribed to lie between a minimum and maximum range, and a function taking these parameters as arguments, this program returns a table of sets of argument values that may be used to sample the function's behavior.
One sample point is the average. All other sample points are generated by setting a single spatial coordinate to its average value, and all other spatial coordinates to either the minimum or maximum. In this way, 1 + DIM_NUM*2^(DIM_NUM-1) points are generated.
The computer code and data files described and made available on this web page are distributed under the GNU LGPL license.
BOX_BEHNKEN is available in a C version and a C++ version and a FORTRAN90 version and a MATLAB version.
CVT, a C++ library which computes elements of a Centroidal Voronoi Tessellation.
FAURE, a C++ library which computes elements of a Faure sequence.
GRID, a C++ library which computes elements of a grid sequence.
HALTON, a C++ library which computes elements of a Halton sequence.
HAMMERSLEY, a C++ library which computes elements of a Hammersley sequence.
HEX_GRID, a C++ library which computes elements of a hexagonal grid dataset.
IHS, a C++ library which computes elements of an improved distributed Latin hypercube dataset.
LATIN_CENTER, a C++ library which computes elements of a Latin Hypercube dataset, choosing center points.
LATIN_EDGE, a C++ library which computes elements of a Latin Hypercube dataset, choosing edge points.
LATIN_RANDOM, a C++ library which computes elements of a Latin Hypercube dataset, choosing points at random.
LATINIZE, a C++ library which can "latinize" a dataset.
LCVT, a C++ library which computes a latinized Centroidal Voronoi Tessellation.
NIEDERREITER2, a C++ library which computes elements of a Niederreiter sequence using base 2.
SOBOL, a C++ library which computes elements of a Sobol sequence.
TABLE_LATINIZE, a C++ program which reads a table file containing a set of data, and writes out a corresponding "latinized" version.
UNIFORM, a C++ library which computes elements of a uniform pseudorandom sequence.
VAN_DER_CORPUT, a C++ library which computes elements of a (1 dimensional) van der Corput sequence.
You can go up one level to the C++ source codes.