Skip to main content

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 hashes)

Uploaded Source

Built Distribution

matrixHandler-0.1.0-py3-none-any.whl (2.4 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page