7 lines
91 B
Scilab
7 lines
91 B
Scilab
|
|
function y = pointFixe(x0,n)
|
||
|
|
y = x0;
|
||
|
|
for i = 1:n
|
||
|
|
y = // A completer
|
||
|
|
end
|
||
|
|
endfunction
|