A lightweight matrix object with support for basic linear algebra operations.
Project description
A lightweight matrix object in pure Python. Supports basic linear algebra operations.
Sample syntax:
from pymatrix import matrix
m = matrix([
[1, 2],
[3, 4]
])
a = m + m * 2
b = m * m
c = m ** 3
d = m.det()
e = m.inv()
See the package documentation or the project’s Github homepage for further details.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
pymatrix-1.2.0.tar.gz
(5.6 kB
view details)
File details
Details for the file pymatrix-1.2.0.tar.gz.
File metadata
- Download URL: pymatrix-1.2.0.tar.gz
- Upload date:
- Size: 5.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7533ce4a8d6e58b005d9b10ecdb865aff013905bd36af096b55d1d16beb9a01d
|
|
| MD5 |
51a942d6a8c0d6cef723f96fbf720bcc
|
|
| BLAKE2b-256 |
704f923ec0d44949f51392f3710b071d84dbee30a0238f105948cbd264df0737
|