Consider two system of nonlinear equations. In this case we will get F(x1, x2)=[c1 c2] ^T; Based on my problem, I need to calculate inverse of F. Also, I have try pinv(F), inv(F) but code gives

............................................

??? Error using ==> sym.svd

Too many input arguments.

Error in ==> pinv at 29

[U,S,V] = svd(A,0);

Error in ==> sys_4th_kt at 48

t=f(y)*pinv(f(x0));

............................

The following one:

ux = Df(x0)\f(x0); %System of linear equation Ax = b, x = inv(A)*b, but better way is x=A\b.

y = x0 - (1)*ux;

t=f(y)*pinv(f(x0));

p=Df(x0)*(I-t)^2;

ux1 = f(y)*pinv(p);

x1 = y-ux1; % 4th order Kung and Traub 

More Kalyanasundaram Madhu's questions See All
Similar questions and discussions