// // Definicion de la funcion F que representa al // siguiente sistema de ecuaciones // F(x,y) = ! x^2 + y^2 - 4 ! // ! x^2 - 2 x - y + 0.5! // function Z = F(E) x= E(1); y= E(2); Z = [ x^2 + y^2 - 4; x^2 - 2*x - y + 0.5]; endfunction