mirror of
https://github.com/kuhyx/WUT_Computer_Science.git
synced 2026-07-06 16:03:18 +02:00
3 lines
67 B
Matlab
3 lines
67 B
Matlab
function [y] = f2(x1, x2)
|
|
y = -x1 + x2*(0.5 - x1^2 - x2^2);
|
|
end |