A Python library for linear algebra matrix operations.
Project description
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
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
linear_matrix-1.0.tar.gz
(2.2 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 linear_matrix-1.0.tar.gz.
File metadata
- Download URL: linear_matrix-1.0.tar.gz
- Upload date:
- Size: 2.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4397bf58df84df22717443b102d9d9631e66ff129bf43002447e5c9612d701ff
|
|
| MD5 |
4203158643cd5d9609e32f6ef5513062
|
|
| BLAKE2b-256 |
7720bc3d49b651743b63f220b4ba8553bc74c87f40f2a522eeee892b2269a667
|
File details
Details for the file linear_matrix-1.0-py3-none-any.whl.
File metadata
- Download URL: linear_matrix-1.0-py3-none-any.whl
- Upload date:
- Size: 2.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
553cfc6b833ffb342c9cc1805847d9fddbae5cc00a6ba51cef46b2fb41229fec
|
|
| MD5 |
720422f4e2e142cffa5703a86bbcb59f
|
|
| BLAKE2b-256 |
ee1ec1ca80bc8d86975dd0a6d9489d648dbb948838e841a1df84793b8ad6ce8c
|