Liepy
Computes representation matrices for Lie groups
Install / Use
/learn @gutfeeling/LiepyREADME
LiePy
Computes representation matrices for Lie groups.
How do I get set up?
Clone the repo
git clone https://github.com/gutfeeling/liepy.git
cd liepy
Install dependencies
- Create a virtualenv
-
If you want to use python 2
virtualenv venv -
If you want to use python 3
virtualenv -p python3 venv
- Activate the virtualenv
source venv/bin/activate
- Install the python modules
pip install -r requirements.txt
You are good to go
- Fire up an interpreter and import the important classes
>>> from groups import LieGroup
>>> from representations import Representation
