a small module which adds a Matrix class to be used as a new data type
Project description
MATRIXHANDLER
A small module which adds you to manipulate matrixes in Python3. Code is still under development,features such as matrix division and power TBA.
The code is made for Python3
Installation
$ pip install -i https://test.pypi.org/simple/ matrixHandler
Example
from pymatrix import matrix
# creates a 2x3 matrix based on a list
matrix1 = Matrice([[1, 2],[3, 4],[5, 6]])
# creates another 3x2 matrix
matrix2 = Matrice([[10, 9, 8], [7, 6, 5]])
# multiples both matrixes
multMatrix = matrix1 * matrix2
# displays the result
print(multMatrix)
Output:
[14, 12]
[28, 24]
[42, 36]
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
matrixHandler-0.1.0.tar.gz
(1.5 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file matrixHandler-0.1.0.tar.gz.
File metadata
- Download URL: matrixHandler-0.1.0.tar.gz
- Upload date:
- Size: 1.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.42.1 CPython/2.7.17
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
db14789ae8536bd648026423458a966a75ff76f0c8c8c248e5fee16c614becb0
|
|
| MD5 |
4dc25cdc29b6914810f4387c6500511d
|
|
| BLAKE2b-256 |
136a07f6742db48b78cf99edfed2f75d0c003d1d6cef382d1a535477da7e97fb
|
File details
Details for the file matrixHandler-0.1.0-py3-none-any.whl.
File metadata
- Download URL: matrixHandler-0.1.0-py3-none-any.whl
- Upload date:
- Size: 2.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.42.1 CPython/2.7.17
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
71e37c0ba202f02dccbd706c312c846036932a1aaf67dff43df06ebd4b494546
|
|
| MD5 |
b55a771eea78340fe15252d69705cc70
|
|
| BLAKE2b-256 |
ef29d31b79bef6296b6f24e95551510f98ca0a231f30b73d413252b993dbf1d0
|