2025-11-11 16:11:16 +01:00
2025-11-11 15:12:29 +01:00
2025-11-11 15:12:29 +01:00
2025-11-02 22:17:12 +01:00
2025-11-11 16:11:16 +01:00
2025-11-04 20:53:08 +01:00
yo2
2025-10-28 15:31:55 +01:00

MatrixMania

A small teaching package for basic linear algebra operations.

Overview

MatrixMania is a lightweight educational package for performing basic linear algebra operations such as matrix multiplication, transposition, and generating 2D or 3D rotation matrices.
It is intended for learning and demonstration purposes.


Functions

matmul(A, B)

Performs matrix multiplication between two 2D lists (matrices).

Parameters

  • A (List[List[float]]): The first matrix.
  • B (List[List[float]]): The second matrix.

Returns

  • List[List[float]]: The resulting matrix product.

Example

from matrixmania import matmul

print(matmul([[1, 2]], [[3], [4]]))
# [[11]]
Description
Prog3A Matrizenlibrary in Python
Readme 66 KiB
Languages
Python 100%