JadynHax / sympy-extensions

A module created to extend SymPy and provide a higher-level interface for manipulating expressions and equations.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

SymPy Extensions

SymPy Extensions is a module created to extend SymPy and provide a higher-level interface for manipulating expressions and equations.

Installation

SymPy Extensions can be installed quite easily using pip like so:

pip install sympy-extensions

Usage

To use SymPy Extensions within Python code, you must first import the module. For ease of use, we suggest using an import statement somewhat like this:

import sympy_extensions as sympext

We feel this is a compact enough name for usage in the rest of your code, although we've come up with a few alternatives for you, should you prefer them:

# Alternative 1
import sympy_extensions as extensions
# Alternative 2
import sympy_extensions as sympy_ext
# Alternative 3 for those who REALLY love to type long names with underscores
import sympy_extensions

About

A module created to extend SymPy and provide a higher-level interface for manipulating expressions and equations.

License:MIT License