Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions roadmaps/python/content/@tbR_h9NpZ5tBTYuCfwkcY.md
Original file line number Diff line number Diff line change
@@ -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)