Help you calculate matrix.
Project description
Xmatrix
- A python package to calculate Matrix math problems.
- python version: 3.6 and above.
Usage
install
pip install xmatrix
Add import in your file
import xmatrix as Mx
from xmatrix import * # This would be better.
create a matrix
- Matrix("row ; row ...")
my_matrix = Mx.Matrix("1,2;3,4")
#result:
[1, 2]
[3, 4]
we also support bigger matrix
my_matrix = Mx.Matrix("1,2,3;4,5,6;7,8,9")
#result:
[1, 2, 3]
[4, 5, 6]
[7, 8, 9]
simple calculate
my_matrix = Mx.Matrix("1,2;3,4")
my_matrix2 = Mx.Matrix("4,6;2,9")
print(my_matrix + my_matrix2)
#result:
[5, 8]
[5, 13]
print(my_matrix - my_matrix2)
#result:
[-3, -4]
[1, -5]
print(my_matrix * my_matrix2)
#result:
[8, 24]
[20, 54]
print(my_matrix * 87)
#result:
[87, 174]
[261, 348]
print(my_matrix ** 7)
#result:
[30853, 44966]
[67449, 98302]
print(my_matrix == my_matrix2)
#result:
False
Transpose Matrix
my_matrix = Mx.Matrix("1,2,3;4,5,6;7,8,9")
print(my_matrix)
#result:
[1, 2, 3]
[4, 5, 6]
[7, 8, 9]
print(my_matrix.transpose)
#result:
[1, 4, 7]
[2, 5, 8]
[3, 6, 9]
my_matrix2 = Matrix("1,2,3,4;5,6,7,8;9,10,11,12;13.1,14.2,15.3,16.4")
print(my_matrix2)
#result:
[1, 2, 3, 4]
[5, 6, 7, 8]
[9, 10, 11, 12]
[13.1, 14.2, 15.3, 16.4]
print(my_matrix2.transpose)
#result:
[1, 5, 9, 13.1]
[2, 6, 10, 14.2]
[3, 7, 11, 15.3]
[4, 8, 12, 16.4]
Inverse
my_matrix = Mx.Matrix("1,2;3,4")
print(my_matrix)
#result:
[1, 2]
[3, 4]
print(my_matrix.inverse)
#result:
[-2, 1]
[1.5, -0.5]
#special use by '**' power operator:
print(my_matrix ** -1)
#result:
[-2, 1]
[1.5, -0.5]
my_matrix2 = Mx.Matrix("1,2,3;4,5,6;7,8,9")
print(my_matrix2)
#result:
[1, 2, 3]
[4, 5, 6]
[7, 8, 9]
print(my_matrix2.inverse)
#result:
#The determinant is zero, can't be inverse.
#None
my_matrix3 = Mx.Matrix("1,1,1;1,2,3;1,4,5")
print(my_matrix3)
#result:
[1, 1, 1]
[1, 2, 3]
[1, 4, 5]
print(my_matrix3.inverse)
#result:
[1, 0.5, -0.5]
[1, -2, 1]
[-1, 1.5, -0.5]
my_matrix4 = Mx.Matrix("1,1,2,1;1,1,0,0;1,1,0,1;1,0,1,0")
print(my_matrix4)
#result:
[1, 1, 2, 1]
[1, 1, 0, 0]
[1, 1, 0, 1]
[1, 0, 1, 0]
print(my_matrix4.inverse)
#result:
[-0.5, 0, 0.5, 1]
[0.5, 1, -0.5, -1]
[0.5, 0, -0.5, 0]
[0, -1, 1, 0]
#and more...
get the matrix by list
my_matrix = Mx.Matrix("1,2,3;4,5,6;7,8,9")
print(my_matrix.raw)
#result:
[[1, 2, 3], [4, 5, 6], [7, 8, 9]]
get identity Matrix
i = Mx.IdentityMatrix(3)
#result:
print(i)
[1, 0, 0]
[0, 1, 0]
[0, 0, 1]
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
xmatrix-1.2.0.tar.gz
(6.1 kB
view details)
Built Distribution
File details
Details for the file xmatrix-1.2.0.tar.gz
.
File metadata
- Download URL: xmatrix-1.2.0.tar.gz
- Upload date:
- Size: 6.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.8.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 201ac4a4d87e7779314bcb18b69564655a969b79a151ae2fa0aaf6e5d38cf455 |
|
MD5 | 9c8464933f42751b4791ff4f83ba9812 |
|
BLAKE2b-256 | 7c4b473b2a6b53a33efb438a84097ae3e2a07333c59096e01f1c3ce67a6383e7 |
File details
Details for the file xmatrix-1.2.0-py3-none-any.whl
.
File metadata
- Download URL: xmatrix-1.2.0-py3-none-any.whl
- Upload date:
- Size: 6.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.8.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 507b5884eda572763305a477011569fe2614a6803aea4d056a509a1cfc10bb61 |
|
MD5 | 52401af8aa906bb881300a2095884837 |
|
BLAKE2b-256 | 0aad8c0aa0bbd86e8af94c81629f592ac5e287200aa9565b32358061f62fdcbc |