Files
maths_2025/num/tp2/src/pointFixeErreur.sci
T

7 lines
112 B
Scilab
Raw Normal View History

2026-04-07 13:28:01 +02:00
function err = pointFixeErreur(x0)
for i=1:50
y = pointFixe(x0,i)
err(i) = // A completer
end
endfunction