add_zoom | R Documentation |
add_zoom: Zoom in on region of another function. Allows you to easily change an existing function so that [0,1]^n refers to a subregion of the original function
add_zoom(func, scale_low, scale_high)
func |
Function to add linear terms to |
scale_low |
Vector of low end of scale values for each dimension |
scale_high |
Vector of high end of scale values for each dimension |
Function with added linear terms
banana(c(.5,.85))
add_zoom(banana, c(0,.5), c(1,1))(c(.5,.7))
add_zoom(banana, c(.2,.5), c(.8,1))(matrix(c(.5,.7),ncol=2))
ContourFunctions::cf(banana)
ContourFunctions::cf(add_zoom(banana, c(0,.5), c(1,1)))
ContourFunctions::cf(add_zoom(banana, c(.2,.5), c(.8,1)))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.