Untitled

 avatar
unknown
plain_text
2 months ago
164 B
4
Indexable
fun = @(x) [x(1)^2 + x(2)^2 - 4;    % Prima equazione
            x(1) - x(2) - 1];        % Seconda equazione

x0 = [1; 1];  % Punto iniziale
sol = fsolve(fun, x0)
Editor is loading...
Leave a Comment