frbs (version 3.2-0)

data.gen3d: A data generator

Description

The purpose of this function is to generate data, which contains two input variables and one output variable, automatically for all values on a plane.

Usage

data.gen3d(range.input, num.grid = 10)

Arguments

range.input

the range of the input variables, as a matrix (\(2 \times n\)).

num.grid

a number representing the size of the grid on the plane.

Value

the data

Examples

Run this code
# NOT RUN {
range.input <- matrix(c(0, 100, 0, 100), nrow=2)
num.grid <- 10
data.test <- data.gen3d(range.input, num.grid)
# }

Run the code above in your browser using DataCamp Workspace