All Samples(191) | Call(0) | Derive(0) | Import(191)
SymPy is a Python library for symbolic mathematics. It aims to become a
full-featured computer algebra system (CAS) while keeping the code as simple as
possible in order to be comprehensible and easily extensible. SymPy is written
entirely in Python and does not require any external libraries, except
optionally for plotting support.
See the webpage for more information and documentation:
http://code.google.com/p/sympy/src/s/y/sympy-tensor-HEAD/sympy/galgebra/examples/testsymbolicGA.py sympy-tensor(Download)
#!/usr/bin/python import sys import os,sympy,time from sympy.galgebra.GA import set_main, make_symbols, types, MV, ZERO, ONE, HALF from sympy import collect set_main(sys.modules[__name__])
src/s/y/sympy-tensor-HEAD/sympy/galgebra/examples/coords.py sympy-tensor(Download)
#!/usr/bin/python #EandM.py import sys import sympy.galgebra.GA as GA import sympy.galgebra.latex_ex as tex import sympy,numpy,time
src/s/y/sympy-HEAD/sympy/galgebra/examples/testsymbolicGA.py sympy(Download)
#!/usr/bin/python import sys import os,sympy,time from sympy.galgebra.GA import set_main, make_symbols, types, MV, ZERO, ONE, HALF from sympy import collect set_main(sys.modules[__name__])
src/s/y/sympy-HEAD/sympy/galgebra/examples/coords.py sympy(Download)
#!/usr/bin/python #EandM.py import sys import sympy.galgebra.GA as GA import sympy.galgebra.latex_ex as tex import sympy,numpy,time
src/s/y/sympy-old-HEAD/sympy/galgebra/examples/testsymbolicGA.py sympy-old(Download)
#!/usr/bin/python import sys import os,sympy,time from sympy.galgebra.GA import set_main, make_symbols, types, MV, ZERO, ONE, HALF from sympy import collect set_main(sys.modules[__name__])
src/s/y/sympy-old-HEAD/sympy/galgebra/examples/coords.py sympy-old(Download)
#!/usr/bin/python #EandM.py import sys import sympy.galgebra.GA as GA import sympy.galgebra.latex_ex as tex import sympy,numpy,time
src/s/y/sympy-tensor-HEAD/examples/beginner/substitution.py sympy-tensor(Download)
#!/usr/bin/env python """Substitution example Demonstrates substitution. """ import sympy
src/s/y/sympy-tensor-HEAD/examples/beginner/precision.py sympy-tensor(Download)
#!/usr/bin/env python """Precision Example Demonstrates SymPy's arbitrary precision abilities """ import sympy
src/s/y/sympy-tensor-HEAD/examples/beginner/functions.py sympy-tensor(Download)
#!/usr/bin/env python """Functions example Demonstrates sympy defined functions. """ import sympy
src/s/y/sympy-tensor-HEAD/examples/beginner/expansion.py sympy-tensor(Download)
#!/usr/bin/env python """Expansion Example Demonstrates how to expand expressions. """ import sympy
1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 Next