Advertisement
Guest User

Untitled

a guest
Jul 3rd, 2017
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Scilab 0.18 KB | None | 0 0
  1. function ret=o(xu)
  2.   ret = [ 2 .* xu(1) .* xu(1) + xu(2) - 15; -5 .* xu(1) .* xu(1) + 8 * xu(2) - 1 = 0 ];
  3. endfunction
  4.  
  5. [x2,spr] = fsolve([-1;1], o);
  6. [x3,spr] = fsolve([1;3], o);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement