]> www.ginac.de Git - ginac.git/blobdiff - ginac/inifcns_trans.cpp
- changed function::diff() to be more tolerant by checking first if the
[ginac.git] / ginac / inifcns_trans.cpp
index 70eccdceaff8cda1f902d812c8d95379606fdd1b..db502ca9568faa90f14676ce17af4fb5b547055d 100644 (file)
@@ -468,10 +468,10 @@ static ex atan2_diff(ex const & y, ex const & x, unsigned diff_param)
     
     if (diff_param==0) {
         // d/dy atan(y,x)
     
     if (diff_param==0) {
         // d/dy atan(y,x)
-        return pow(x*(1+y*y/(x*x)),-1);
+        return x*pow(pow(x,2)+pow(y,2),-1);
     }
     // d/dx atan(y,x)
     }
     // d/dx atan(y,x)
-    return -y*pow(x*x+y*y,-1);
+    return -y*pow(pow(x,2)+pow(y,2),-1);
 }
 
 REGISTER_FUNCTION(atan2, atan2_eval, atan2_evalf, atan2_diff, NULL);
 }
 
 REGISTER_FUNCTION(atan2, atan2_eval, atan2_evalf, atan2_diff, NULL);