Add image processing - 2

This commit is contained in:
Edward Emelianov
2021-12-12 15:00:57 +03:00
parent 3648795f0c
commit ef040e5ebd
14 changed files with 529 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
function A = test(x)
A(1) = 2*(x(1) - 4).^2 + 7*(x(2)-8).^2 - x(3).^2;
A(2) = 5*(x(1) - 1).^2 - 4*(x(2)+3).^2 + 2* x(3).^2 + 1;
A(3) = x(1).^2 + x(2)^2 + x(3)^2;
endfunction

View File

@@ -0,0 +1 @@
9.54, 3.44, -7.91