函数文件1: function b=F(f,x0,u,h) b(1,1)=x0(1)-h*x0(2)-u(1); b(2,1)=x0(2)+h*x0(1)^2-u(2)-h*f; 函数文件2: function g=Jacobian(x0,u,h) g(1,1)=1; g(1,2)=-h; g(2,1)=2*h*x0(1); g(2,2)=1; 函数文件3: function x=newton_Iterative_method(f,u,h) % u:上一节点的数值解或者初值 % x0 每次迭代的…