Kinetic::FunctionKernel::ConstructFunction

Definition

The concept Kinetic::FunctionKernel::ConstructFunction is used to construct functions.

Operations

Function a ( NT a , ... ) This family of methods takes a list of coefficients and returns a function. There can be any number of coeffients passed as arguments (up to about 25 in the current implementations).

See Also

FunctionKernel

Example

Function_kernel fk;
Function_kernel::Construct_function cf= fk.construct_function_object();
Function_kernel::Function f= cf(0,1,2,3,4,5);