Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/erictleung/lalg
:recycle: Python library to experiment with Linear Algebra concepts (work in progress)
https://github.com/erictleung/lalg
learning linear-algebra linear-algebra-concepts python python-3-5 python-3-6 python-library
Last synced: 18 days ago
JSON representation
:recycle: Python library to experiment with Linear Algebra concepts (work in progress)
- Host: GitHub
- URL: https://github.com/erictleung/lalg
- Owner: erictleung
- Created: 2016-11-25T22:25:18.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2017-05-29T03:10:24.000Z (over 7 years ago)
- Last Synced: 2024-10-15T03:21:43.476Z (2 months ago)
- Topics: learning, linear-algebra, linear-algebra-concepts, python, python-3-5, python-3-6, python-library
- Language: Python
- Homepage:
- Size: 17.6 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
Awesome Lists containing this project
README
# lalg
[![Build Status](https://travis-ci.org/erictleung/lalg.svg?branch=master)](https://travis-ci.org/erictleung/lalg)
Python library to experiment with Linear Algebra concepts
`lalg` stands for "**L**inear **Alg**ebra."
## Overview
- [Prerequisites](#prerequisites)
- [Installation](#installation)
- [Interactively](#interactively)## Prerequisites
- [Python](https://www.python.org/) (`>= 3.3.0`)
- [numpy](http://www.numpy.org/) (`>= 1.11`)## Installation
### Interactively
From the terminal
```sh
$ git clone https://github.com/erictleung/lalg.git
$ cd lalg
$ python # Python 3
```Then from within Python
```py
>>> import lalg
```