function xout = example4(x) % % continuous example from section 3.2 % xout = x; % make sure shapes agree xout(1) = x(1)*x(1) + x(2)*x(2) - 1; xout(2) = x(1)-x(2);