Skip to content

Computes representation matrices for Lie groups

Notifications You must be signed in to change notification settings

gutfeeling/liepy

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

34 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

  1. Create a virtualenv
  • If you want to use python 2

    virtualenv venv
    
  • If you want to use python 3

    virtualenv -p python3 venv
    
  1. Activate the virtualenv
source venv/bin/activate
  1. Install the python modules
pip install -r requirements.txt

You are good to go

  1. Fire up an interpreter and import the important classes
>>> from groups import LieGroup
>>> from representations import Representation