* "x-1"
* "-sin(sqrt(x^2+y^2))"
* "sqrt(XCoord*XCoord + YCoord*YCoord)"
- *
* @endverbatim
*
+ * For a wrapper of the FunctionParser class that supports ParameterHandler,
+ * see ParsedFunction.
+ *
* Vector-valued functions can either be declared using strings where the
* function components are separated by semicolons, or using a vector of
* strings each defining one vector component.
*
* An example of time dependent scalar function is the following:
* @code
- *
* // Empty constants object
* std::map<std::string> constants;
*
* // it is a time-dependent function
* // and there is another variable
* // to be taken into account (t).
- *
* @endcode
*
* The following is another example of how to instantiate a vector valued
* function by using a single string:
* @code
- *
* // Empty constants object
* std::map<std::string> constants;
*
* function.initialize(variables,
* expression,
* constants);
- *
* @endcode
*
*