Bonjour, J’aimerai savoir comment représenter une fonction f(x) en fonction de x dans Freefem?
Pour une fonction dépendant de deux variables f(x, t) comment représenter cette fonction f en fonction de x et de t ?
Merci d’avance, pour votre attention.
Cordialement !
Hi,
I have translated your passage through google translate and my answer might not be the thing you required. By the way, defining a function is as follows:
func real f(real x,real t)
{
real temp=x+t;
return temp;
}
cout<<f(2,3)<<endl;
Can you be more specific about what kind of plot you want?
In answer to your second question, here’s a code to plot a function f(x,y).
int L = 20;
int H = 10;
int nn = 2;
int nnL = nn*L;
int nnH = nn*H;
mesh Th = square(L,H,[x*nnL,y*nnH]);
func Myfunc = x+y;
fespace SpaceP1(Th,P1);
SpaceP1 u0 = Myfunc;
plot(u0,value = true,wait = true, fill = true);