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

7 lines
91 B
Scilab
Raw Normal View History

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