#matlab vs #gnuoctave : try computing
f=@(x,y) log(2+x)./atan(x-y)
c=@(x) -x
d=@(x) sin(x)
integral2(f,0,2,c,d)
then you'll get :
7.453231792656116 % with matlab
7.453230816525963 % with octave
a more accurate calculation gives
integral2(f,0,2,c,d,'AbsTol',1e-12)
7.453230816525963 % with matlab
7.453230816525963 % with octave
so matlab integral2 has not 1e-10 absolute error as said in the manual 🙄

