Bonjour, je souhaite utiliser MAPLE pour tracer une solution de l'equadiff suivante :
[1+y'²]y=k²
J'ai donc choisi k =1 pour simplifier et j'ai ecrit la procédure suivante :
> restart:with(plots):
> f:=x-> ( 1 - 1/x)
> x[0] := 1; y[0] := 5;
> for k to 10 do y[k + 1] := y[k] + 0.1 f(x[k]) od;
> l := [[x[n], y[n]] $ (n = 1 .. 10)];
> plot(l, style = line)
Alors, MAPLE me répond :
"Warning, unable to evaluate the function to numeric values in the region; see the plotting command's help page to ensure the calling sequence is correct
Error, empty plot"
Le probleme semble venir de ma fonction f mais je ne sais comment le corriger. Certains d'entre vous peuvent ils me venir en aide ?
Merci d'avance.
-----