lhs (version 1.0.1)

createBusht: Create an orthogonal array using the Bush algorithm with alternate strength

Description

Create an orthogonal array using the Bush algorithm with alternate strength

Usage

createBusht(q, ncol, strength, bRandom = TRUE)

Arguments

q

the number of symbols in the array

ncol

number of parameters or columns

strength

the strength of the array to be created

bRandom

should the array be randomized

Value

an orthogonal array

See Also

Other methods to create orthogonal arrays [createBoseBush()], [createBose()], [createAddelKemp()], [createAddelKemp3()], [createAddelKempN()], [createBoseBushl()]

Examples

Run this code
# NOT RUN {
set.seed(1234)
A <- createBusht(3, 4, 2, TRUE)
B <- createBusht(3, 4, 3, FALSE)
G <- createBusht(3, 4, 3, TRUE)
# }

Run the code above in your browser using DataCamp Workspace