A simple package for matrix operations
Project description
# Matrix Operations
A simple Python package for matrix operations including addition and multiplication.
## Installation
sh pip install matrix_operations
## Usage
python from matrix_operations import add_matrices, multiply_matrices
matrix1 = [[1, 2], [3, 4]] matrix2 = [[5, 6], [7, 8]]
Add matrices
result_add = add_matrices(matrix1, matrix2) print(result_add) # Output: [[6, 8], [10, 12]]
Multiply matrices
result_multiply = multiply_matrices(matrix1, matrix2) print(result_multiply) # Output: [[19, 22], [43, 50]]
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 Distributions
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 loserchen_4_lesson_matrix_operations-1.0.0-py3-none-any.whl.
File metadata
- Download URL: loserchen_4_lesson_matrix_operations-1.0.0-py3-none-any.whl
- Upload date:
- Size: 3.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.9.20
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6a04bc268724de0a8f2997438740ff85c824957b13bf20b921c4a19933f7d69b
|
|
| MD5 |
7c70c223960524c24d9fc37834a2a6fb
|
|
| BLAKE2b-256 |
3f7c77426aa3e2287ea60e398e4fff4521e2b0171791cf8958e4ec537f38926b
|