Advertisement
feldman22

feuler.m

Sep 17th, 2018
311
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Octave 0.14 KB | None | 0 0
  1.  
  2. function [a,b,c,d] = feuler(u,v,p,q)
  3.     a = p;
  4.     b = q;
  5.     c = (((-2)*v*p*q)/(u*u + v*v + 1));
  6.     d = (((-2)*u*p*q)/(u*u + v*v + 1));
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement