Go to the source code of this file.
|
Func1 & | newSumFunction (Func1 &f1, Func1 &f2) |
|
shared_ptr< Func1 > | newSumFunction (shared_ptr< Func1 > f1, shared_ptr< Func1 > f2) |
| Sum of two functions.
|
|
Func1 & | newDiffFunction (Func1 &f1, Func1 &f2) |
|
shared_ptr< Func1 > | newDiffFunction (shared_ptr< Func1 > f1, shared_ptr< Func1 > f2) |
| Difference of two functions.
|
|
Func1 & | newProdFunction (Func1 &f1, Func1 &f2) |
|
shared_ptr< Func1 > | newProdFunction (shared_ptr< Func1 > f1, shared_ptr< Func1 > f2) |
| Product of two functions.
|
|
Func1 & | newRatioFunction (Func1 &f1, Func1 &f2) |
|
shared_ptr< Func1 > | newRatioFunction (shared_ptr< Func1 > f1, shared_ptr< Func1 > f2) |
| Ratio of two functions.
|
|
Func1 & | newCompositeFunction (Func1 &f1, Func1 &f2) |
|
shared_ptr< Func1 > | newCompositeFunction (shared_ptr< Func1 > f1, shared_ptr< Func1 > f2) |
| Composite of two functions.
|
|
Func1 & | newTimesConstFunction (Func1 &f, double c) |
|
shared_ptr< Func1 > | newTimesConstFunction (shared_ptr< Func1 > f1, double c) |
| Product of function and constant.
|
|
Func1 & | newPlusConstFunction (Func1 &f, double c) |
|
shared_ptr< Func1 > | newPlusConstFunction (shared_ptr< Func1 > f1, double c) |
| Sum of function and constant.
|
|