A Python package for Matrix Operations
Project description
pymatops - A Python package for Matrix Operations
Package Details
The pymatops package is available on the official Python Package Index (PyPi) repository.
It can be installed and used in your projects by running the following command using pip
pip install pymatops
Package Operations
1. visualize - visualize a matrix
import pymatops as pmo
mat = [[1,2,3], [4,5,6], [7,8,9]]
pmo.visualize(mat)
2. dim - returns a tuple with the dimensions of the matrix
import pymatops as pmo
mat = [[1,2,3], [4,5,6], [7,8,9]]
print("The dimension of the matrix is ", pmo.dim(mat))
3. randomMatrix - returns a matrix of random dimensions with random values if the function is called with no arguments
import pymatops as pmo
print("The randomly generated matrix: ")
pmo.randomMatrix()
4. randomMatrix - you can pass dimensions to get a matrix of specified dimensions with random values. Both row and col dimensions are required
import pymatops as pmo
print("The random matrix of dimension 6*8 generated: ")
pmo.randomMatrix(6,8)
5. matSum - returns the sum of all elements in the matrix passed
import pymatops as pmo
print("The random matrix generated: ")
mat = pmo.randomMatrix(6,8) # retuns a 6*8 matrix with random values
print("The sum of the matrix: ", pmo.matSum(mat))
6. matAdd - returns the resultant matrix of the sum of matrix A and B
import pymatops as pmo
mat = [[1, 2, 3], [4, 5, 6], [7, 8, 9]]
mat1 =[[1, 2, 3], [4, 5, 6], [7, 8, 9]] # returns a 6*8 matrix with random values
print("Matrix 1:")
pmo.visualize(mat)
print("Matrix 2:")
pmo.visualize(mat1)
print("The resultant matrix of the matrix addition operation: ")
pmo.matAdd(mat, mat1)
7. matMul - returns the resultant matrix of the multiplication of matrix A and B
import pymatops as pmo
mat = [[1, 2, 3], [4, 5, 6], [7, 8, 9], [10, 11, 12]] # matrix of dimensions 4*3
mat1 =[[1, 2, 3, 4], [5, 6, 7, 8], [9, 10, 11, 12]] # matrix of dimensions 3*4
print("Matrix 1:")
pmo.visualize(mat)
print("Matrix 2:")
pmo.visualize(mat1)
print("The resultant matrix of the matrix multiplication operation: ")
pmo.matMul(mat, mat1)
8. scalarMul - returns the resultant matrix of the multiplication of matrix A with scalar c
import pymatops as pmo
mat = [[1, 2, 3], [4, 5, 6], [7, 8, 9]]
print("Original Matrix: ")
pmo.visualize(mat)
print("Matrix after scalar multiplication operation: ")
pmo.scalarMul(mat, 3)
9. transpose - returns transpose of matrix
import pymatops as pmo
mat = [[1, 2, 3], [4, 5, 6], [7, 8, 9], [10, 11, 12]]
print("Original Matrix: ")
pmo.visualize(mat)
print("Matrix after transpose operation: ")
pmo.transpose(mat)
10. zeroElements - returns the number of zero elements in the matrix
import pymatops as pmo
mat = [[1, 0, 3], [0, 5, 6], [7, 8, 0], [10, 11, 12]]
print("Original Matrix: ")
pmo.visualize(mat)
print("Number of zeros in the matrix: ", end = " ")
print(pmo.zeroElements(mat))
11. evenCheck - returns a tuple with the first element as the number of even numbers in the matrix and the second element being the number of odd numbers in the matrix
import pymatops as pmo
mat = [[1, 0, 3], [0, 5, 6], [7, 8, 0], [10, 11, 12]]
print("Original Matrix: ")
pmo.visualize(mat)
print("Number of even numbers in the matrix: ", end = " ")
print(pmo.evenCheck(mat)[0])
print("Number of odd numbers in the matrix: ", end = " ")
print(pmo.evenCheck(mat)[1])
Developed by Yash Seth (c) 2022
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
pymatops-1.2.0.tar.gz
(4.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 pymatops-1.2.0.tar.gz.
File metadata
- Download URL: pymatops-1.2.0.tar.gz
- Upload date:
- Size: 4.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c48bfbdeb1cc36aa4f76d4158d7f4809213b3906467b2a8735e0828edc12959c
|
|
| MD5 |
9d5e0244516047b550375186490c311c
|
|
| BLAKE2b-256 |
fb8231991ad9e1c626b7ad82bc351c30578bd9f914555ac554b780abcbb2102c
|
File details
Details for the file pymatops-1.2.0-py3-none-any.whl.
File metadata
- Download URL: pymatops-1.2.0-py3-none-any.whl
- Upload date:
- Size: 4.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7c5e1f494e2e320011a31919bc82e20391a595369cf28096f85cd190518189e3
|
|
| MD5 |
72d9d34ac1344a0a60ea4e581198f1a8
|
|
| BLAKE2b-256 |
fc30fe0718a09c1d6e450915d89bcad368a48d9313ed4dcc5a13f755eeeb986b
|