func_1.Rd
A dummy function for demo of wrapper function with
...
arguments. This function adds two numeric values / vectors.
func_1(x = 1, y = 2)
x | (numeric) a single numeric value or vector,
needs to be compatible with the other argument |
---|---|
y | (numeric) a single numeric value or vector,
needs to be compatible with the other argument |
a numeric vector as addition result of inputs x
and y
.
Its dimension is determined according to basting rules.
func_1(x = 1, y = 2)#> [1] 3