This commit is contained in:
2026-04-07 13:28:01 +02:00
parent a5eefd7b57
commit 6b74495b31
8 changed files with 159 additions and 1 deletions
+6
View File
@@ -0,0 +1,6 @@
function y = pointFixe(x0,n)
y = x0;
for i = 1:n
y = // A completer
end
endfunction