add_linear_terms {TestFunctions} | R Documentation |
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)
Arguments
func |
Function to add linear terms to |
coeffs |
Linear coefficients, should have same length as function has dimensions |
Value
Function with added linear terms
Examples
banana(c(.1,.2))
add_linear_terms(banana, coeffs=c(10,1000))(c(.1,.2))
[Package TestFunctions version 0.2.1 Index]