chore: sync content to repo (#10263)

Co-authored-by: nilbuild <4921183+nilbuild@users.noreply.github.com>
This commit is contained in:
github-actions[bot]
2026-09-03 10:18:35 +02:00
committed by GitHub
co-authored by nilbuild
parent 460c514de3
commit e9bfc3fa02
@@ -0,0 +1,8 @@
# @ (Matrix Multiplication Operator)
The @ symbol is a binary operator used to perform matrix multiplication between two objects, such as NumPy arrays or standard Python lists converted into matrices. Introduced in PEP 465, it provides a clean and readable syntax that distinguishes matrix multiplication from standard element-wise multiplication, which is typically handled by the asterisk (*) operator.
Visit the following resources to learn more:
- [@official@A dedicated infix operator for matrix multiplication](https://peps.python.org/pep-0465/)
- [@article@Matrix Multiplication in Python: The Complete Decision Guide](https://roadmap.sh/python-data-analysis/matrix-multiplication)