BOX_BEHNKEN
Box-Behnken Sampling


BOX_BEHNKEN is a FORTRAN90 library, using double precision arithmetic, 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.

Related Data and Programs:

CVT is a FORTRAN90 library which computes elements of a Centroidal Voronoi Tessellation.

FAURE is a FORTRAN90 library which computes elements of a Faure sequence.

GRID is a FORTRAN90 library which computes elements of a grid sequence.

HALTON is a FORTRAN90 library which computes elements of a Halton sequence.

HAMMERSLEY is a FORTRAN90 library of routines which compute elements of a Hammersley sequence.

HEX_GRID is a FORTRAN90 library which computes elements of a hexagonal grid dataset.

HEX_GRID_ANGLE is a FORTRAN90 library which computes elements of an angled hexagonal grid dataset.

IHS is a FORTRAN90 library which computes elements of an improved distributed Latin hypercube dataset.

LATIN_CENTER is a FORTRAN90 library which computes elements of a Latin Hypercube dataset, choosing center points.

LATIN_EDGE is a FORTRAN90 library which computes elements of a Latin Hypercube dataset, choosing edge points.

LATIN_RANDOM is a FORTRAN90 library which computes elements of a Latin Hypercube dataset, choosing points at random.

LATINIZE is a FORTRAN90 library which can "latinize" a dataset.

LCVT is a FORTRAN90 library which computes a latinized Centroidal Voronoi Tessellation.

NIEDERREITER2 is a FORTRAN90 library which computes elements of a Niederreiter sequence using base 2.

SOBOL is a FORTRAN90 library which computes elements of a Sobol sequence.

TABLE_LATINIZE is an FORTRAN90 program which reads a table file containing a set of data, and writes out a corresponding "latinized" version.

TOMS647 is a FORTRAN90 library which implements a version of ACM TOMS algorithm 647, for evaluating Faure, Halton and Sobol sequences.

UNIFORM is a FORTRAN90 library which computes elements of a uniform pseudorandom sequence.

VAN_DER_CORPUT is a FORTRAN90 library which computes elements of a (1 dimensional) van der Corput sequence.

Reference:

  1. George Box, Donald Behnken,
    Some new three level designs for the study of quantitative variables,
    Technometrics,
    Volume 2, pages 455-475, 1960.

Source Code:

Examples and Tests:

List of Routines:

You can go up one level to the FORTRAN90 source codes.


Last revised on 13 December 2005.