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

3 lines
66 B
Matlab

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