Re: [Scilab-users] Calculus and Scilab

2014-09-29 Thread Serge Steer


You can use the int2d function

For yopur example, the domain is defined by a single triangle:
function z=f(x,y),z=3-x-y,endfunction

X=[0;1;1];
Y=[0;0;1];
[I,e]=int2d(X,Y,f);

Le 29/09/2014 00:15, Reinaldo a écrit :

Hi Scilab users,

I would like to plot the following 3D function in order to calculate 
the volume of that prism.


Let f(x,y) be a real function defined to f(x,y) = 3 - x - y, which 
domain region on OXY plain is limited by those functions: y = x; 
X-axis; and x = 1.


Plot f(x,y).

Do you know if there is a Scilab tutorial for Calculus?

Thank you in advance.

All best,
Reinaldo.


___
users mailing list
users@lists.scilab.org
http://lists.scilab.org/mailman/listinfo/users


___
users mailing list
users@lists.scilab.org
http://lists.scilab.org/mailman/listinfo/users


[Scilab-users] Calculus and Scilab

2014-09-28 Thread Reinaldo
Hi Scilab users,

I would like to plot the following 3D function in order to calculate the volume 
of that prism.

Let f(x,y) be a real function defined to f(x,y) = 3 - x - y, which domain 
region on OXY plain is limited by those functions: y = x; X-axis; and x = 1. 

Plot f(x,y).

Do you know if there is a Scilab tutorial for Calculus? 

Thank you in advance.

All best,
Reinaldo.___
users mailing list
users@lists.scilab.org
http://lists.scilab.org/mailman/listinfo/users