Is this possible to solve a nonlinear system of n equation, n unknowns on Matlab, using graphical processor?
I can't think of any parallel solution for such an application, and solve
function seems not implemented for GPU arrays in Matlab.
Update
Example:
syms x y z;
f1= x+y+z;
f2= x^2+y^2+z^2;
f3= x+y+z;
system=[f1;f2;f3];
solve(system)
vpasolve(system)