Guest User

Untitled

a guest
Apr 27th, 2015
343
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. //Ф(j) with integer j
  2. double Elem(int j);
  3.  
  4. //Ф(j) with half-integer j
  5. double Elem(double j);
  6.  
  7. // d/dx Ф(j) with integer j
  8. double diffElem(int j);
  9.  
  10. // d/dx Ф(j) with half-integer j
  11. double diffElem(double j);
  12.  
  13. double Solution()
  14. {
  15.     Elem(1) + Elem(0.5)
  16. }
  17.  
  18. double diffSolution()
  19. {
  20.     diffElem(1) + diffElem(0.5)
  21. }
Advertisement
Add Comment
Please, Sign In to add comment