generateX0: Generate some initial points for the hybrid explore phase

Description Usage Arguments Value Author(s) References See Also Examples

Description

A function to randomly generate n0-many points within requested bounds, lb, ub. The points selected are to have the largest, minimum distance between any two points.

Usage

1
generateX0 (lb, ub, n0 = 10, npool = 100)

Arguments

lb

Lower (finite) bounds for points generated.

ub

Upper (finite) bounds for points generated.

n0

The number of points to be generated.

npool

The size of the pool of sets of randomly generated points in determining the best set of points.

Value

A matrix is returned which can then be supplied to hybrid.explore.

Author(s)

Mark James Fielding <mark.fielding@gmx.com>

References

"Efficient MCMC Schemes for Computationally Expensive Posterior Distributions", Fielding, Nott and Liong (2011).

See Also

hybrid.explore,

Examples

1
2
3
lb <- c(-3,-3)
ub <- c(3,3)
X0 <- generateX0(lb, ub)

MCMChybridGP documentation built on Nov. 13, 2020, 1:13 a.m.