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