

Double integration by Scilab
I am using scilab6.0 version on my windows7 platform.
My question is how to evaluate a double integrals using scilab.
Scilab


Suppose the question is,
∫x=0 to 1 ∫y=0 to 1 e^(x+y) dx dy
To evaluate double integration in Scilab,
X=[0,0;1,1;1,0];
Y=[0,0;0,1;1,1];
deff('z=f(x,y)','z=exp(x+y)')
[I,e]=int2d(X,Y,f)
Login to add comment