]> www.ginac.de Git - ginac.git/blobdiff - ginac/numeric.cpp
- fixed differentiation of gamma(x)
[ginac.git] / ginac / numeric.cpp
index 165ce594c106e6fd66d69415202c9fb7339c9673..ef2784172107f22965381b271e2fafcd92d7bbca 100644 (file)
@@ -1063,10 +1063,18 @@ numeric atanh(numeric const & x)
 }
 
 /** The gamma function.
- *  stub stub stub stub stub stub! */
+ *  This is only a stub! */
 numeric gamma(numeric const & x)
 {
-    clog << "gamma(): Nobody expects the Spanish inquisition" << endl;
+    clog << "gamma(): Does anybody know good way to calculate this numerically?" << endl;
+    return numeric(0);
+}
+
+/** The psi function (aka polygamma function).
+ *  This is only a stub! */
+numeric psi(numeric const & n, numeric const & x)
+{
+    clog << "psi(): Does anybody know good way to calculate this numerically?" << endl;
     return numeric(0);
 }