bernstein function

Fit a Bernstein polynomial approximation.

Fit a Bernstein polynomial approximation.

Fits the basis of Bernstein polynomial functions to given real-valued function f of [0,1]d[0,1]^d where d=d=dims, against a regular lattice of k+1k+1 points in each dimension for given k. Note the approximation is not the iterated variant.

bernstein(f, dims, k = 10)

Arguments

  • f: a function to be approximated.
  • dims: the function f's domain dimension.
  • k: the lattice resolution of approximation.

Returns

an S3 object of class bernstein.

Examples

f <- function(x) x * sin(x*10) b <- bernstein(f, dims = 1) xs <- seq(from=0, to=1, length=50) mean((f(xs) - predict(b,xs))^2)

References

Francesco Aldà and Benjamin I. P. Rubinstein. "The Bernstein Mechanism: Function Release under Differential Privacy", in Proceedings of the 31st AAAI Conference on Artificial Intelligence (AAAI'2017), pp. 1705-1711, Feb 2017.

See Also

predict.bernstein for subsequent evaluation.