So I am trying to unify numerical integration, under numerical_integral and then create alias nintegral and nintegrate. But the problem here is that current numerical_integral and nintegral give different sets of output
for example sage: f(x)=x^2 sage: f.nintegral(x,0,1) (0.33333333333333343, 3.7007434154171903e-15, 21, 0) sage: numerical_integral(f,0,1) (0.33333333333333331, 3.7007434154171879e-15) The new numerical_integral function will be able take different algorithms as input. One option I have f.nintegral be same as before , but nintegral(f,...) be the new function. This is trac 7763 -- To post to this group, send an email to sage-devel@googlegroups.com To unsubscribe from this group, send an email to sage-devel+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/sage-devel URL: http://www.sagemath.org