// Evaluate the derivative of function in a point // input: function, the x value of the point, the tolerance h // output: the derivatice of the function // The functions be are declared in myFunction.h // e defined in myFunction.cpp double derivative(double (*) (double), double, double);