TestFunctions (version 0.2.0)

add_linear_terms: add_linear_terms: Add linear terms to another function. Allows you to easily change an existing function to include linear terms.

Description

add_linear_terms: Add linear terms to another function. Allows you to easily change an existing function to include linear terms.

Usage

add_linear_terms(func, coeffs)

Value

Function with added linear terms

Arguments

func

Function to add linear terms to

coeffs

Linear coefficients, should have same length as function has dimensions

Examples

Run this code
banana(c(.1,.2))
add_linear_terms(banana, coeffs=c(10,1000))(c(.1,.2))

Run the code above in your browser using DataLab