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 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.1.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.1.tar.gz.
File metadata
- Download URL: matrixHandler-0.1.1.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 |
b29ee1d6d7df7bfb2d0ae4bc873278162869d7279cef67e33c04cc61979c12ea
|
|
| MD5 |
35fa038d2fd15fc901e38da5b4930fe4
|
|
| BLAKE2b-256 |
5f0d52e12deea7025d28e1a1c71913ac12acbcc7c00b90ecca1366ac2f234643
|
File details
Details for the file matrixHandler-0.1.1-py3-none-any.whl.
File metadata
- Download URL: matrixHandler-0.1.1-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 |
909d538df4426fc9290f2743aa49b847c30c9696fa410067e2d450879cdb9dfb
|
|
| MD5 |
04bfc37fd0a84ab469b0b4130037daa3
|
|
| BLAKE2b-256 |
ba284e33ad878dd815bc5d16c98f09bd19733076f5f135b7ea76090365eca683
|