Linear algebra utilities for Python, providing efficient vector and matrix operations built on numpy. Current version 0.6.8, updated June 2024. Release cadence is irregular, with several minor releases per year.
pip install pylinalgNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Basic vector and matrix operations using pylinalg.
Use functions like vec.set(index, value) or create new vectors instead of index assignment.
For element-wise multiplication, use numpy.multiply(a, b) or the * operator on underlying numpy arrays.
Use theta=... instead of angle=... in rotation constructors.