WUT_Computer_Science/ENUME/references/metody_numeryczne/zd4/f2.m
2021-11-10 13:12:25 +01:00

3 lines
67 B
Matlab

function [y] = f2(x1, x2)
y = -x1 + x2*(0.5 - x1^2 - x2^2);
end