maximin.remove | R Documentation |
This function sequentially removes design points one-at-a-time from a design while maintaining low reciprocal distance criterion as possible.
maximin.remove(D, n.remove, r = 2 * p)
D |
the design matrix. |
n.remove |
number of design points to remove. |
r |
the power parameter in the |
maximin.remove
sequentially removes design points from a design in a greedy way while maintaining low reciprocal distance criterion (see maximin.crit
) as possible. In each iteration, the design point with the largest sum of reciprocal distances with the other design points is removed, that is, k^* = \arg\max_k \sum_{i\neq k}\frac{1}{\|\bm x_k - \bm x_i\|^r}
.
the updated design.
n = 20
p = 3
n.remove = 5
D = maximinLHD(n, p)$design
D = maximin.remove(D, n.remove)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.