Plot a test function in 1D.
plot_1d_soo_function(
fn,
lower = lower_bounds(fn),
upper = upper_bounds(fn),
n = 1001L,
xlab,
ylab,
main = function_name(fn),
log = FALSE,
rank = FALSE,
...
)
[soo_function
] Function to plot.
[numeric
] Lower bounds of x1 and x2.
[numeric
] Upper bounds of x1 and x2.
[integer(1)
] Number of locations at which to sample the function.
[character(1)
] Label of x (x1) axes.
[character(1)
] Label of y (x2) axes.
[character(1)
] Main title of plot.
[boolean(1)
] If TRUE
, the z axes is plotted on log scale.
[boolean(1)
] If TRUE
, instead of the y values, their ranks are drawn.
Ignored.