rotate_parameter_space: Rotate the parameter space of a SOO function.

Description Usage Arguments Details Value Examples

View source: R/rotate_parameter_space.R

Description

This function is a simple parameter space transformation. Given a function f(x) it returns a new function f_r(x) = f(Rx), where R is a random rotation matrix.

Usage

1

Arguments

fn

A soo_function object.

Details

If you want repeatable results, make sure you explicitly set a seed before calling rotate_parameter_space.

Value

A new soo_function object where the parameter space has been randomly rotated.

Examples

1
2
3
4
5
f <- generate_ackley_function(2)
f_r <- rotate_parameter_space(f)
par(mfrow=c(1, 2))
plot(f)
plot(f_r)

soobench documentation built on Feb. 9, 2020, 5:08 p.m.