Guest User

Untitled

a guest
May 22nd, 2018
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. from sympy.interactive import printing
  2. printing.init_printing()
  3. import sympy as sp
  4.  
  5.  
  6. qvec = sp.Function('qvec')
  7. x = sp.Symbol('x')
  8. qvec = 3*x**2+5
  9. sp.Integral(qvec,x)
  10.  
  11. g = sp.Function('g')
  12. g = x+5
  13. sp.integrate(g,x)
Add Comment
Please, Sign In to add comment