Linear Matrix
Linear Matrix is a Python library for performing linear algebra matrix operations.
Features
- Matrix Addition
- Matrix Multiplication
- Determinants
- Inverse Matrices
- Transposition
- Eigenvalues & Eigenvectors
Installation
pip install linear-matrix
Usage
from linear_matrix.matrix import Matrix
A = Matrix([[1, 2], [3, 4]])
B = Matrix([[5, 6], [7, 8]])
# Matrix addition
C = A + B
print(C)
# Matrix multiplication
D = A * B
print(D)
# Transpose
print(A.transpose())
# Determinant
print(A.determinant())
# Inverse
print(A.inverse())
License
MIT License
Release files for linear-matrix 1.0
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| linear_matrix-1.0.tar.gz | 2.2 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| linear_matrix-1.0-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 4.4 kB
Release files / linear_matrix-1.0.tar.gz
| Download URL | linear_matrix-1.0.tar.gz |
|---|---|
| Size | 2.2 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
4397bf58df84df22717443b102d9d9631e66ff129bf43002447e5c9612d701ff
|
|
BLAKE2b-256 checksum How to use checksums |
7720bc3d49b651743b63f220b4ba8553bc74c87f40f2a522eeee892b2269a667
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.12.5
|
Release files / linear_matrix-1.0-py3-none-any.whl
| Download URL | linear_matrix-1.0-py3-none-any.whl |
|---|---|
| Size | 2.2 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
553cfc6b833ffb342c9cc1805847d9fddbae5cc00a6ba51cef46b2fb41229fec
|
|
BLAKE2b-256 checksum How to use checksums |
ee1ec1ca80bc8d86975dd0a6d9489d648dbb948838e841a1df84793b8ad6ce8c
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.12.5
|