A pure-Python matrix module with support for basic linear algebra operations.
Project description
A lightweight, easy-to-use matrix module in pure Python. Supports a range of 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 library’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.1.tar.gz
(5.6 kB
view details)
File details
Details for the file pymatrix-1.2.1.tar.gz.
File metadata
- Download URL: pymatrix-1.2.1.tar.gz
- Upload date:
- Size: 5.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c3ce3b93fc3b5bee1be29c164706a327bc33d2a9fd0a61d0a65b4d10d8c117b5
|
|
| MD5 |
849abb04a8251574ce04797905304c17
|
|
| BLAKE2b-256 |
63daa9dfaa9a26e6ca0549fb7ab971c2fa086bd79b76c8423632efa9f8c4d824
|