Comment on A Visual Intro to NumPy and Data RepresentationComments−iandanforth7yIt would be good to mention the @ operator in the matrix multiplication section.https://alysivji.github.io/python-matrix-multiplication-oper...−improbable227yA warning sign that your faith in 0-based indexing may be faltering -- catching yourself writing comments like this :) # element at the top right. i.e. (1, 2) aka (0, 1) in python A[0, 0] * B[0, 1] + A[0, 1] * B[1, 1]−iandanforth7yThat's called the "Matlab Hangover"
Comments
It would be good to mention the @ operator in the matrix multiplication section.
https://alysivji.github.io/python-matrix-multiplication-oper...
A warning sign that your faith in 0-based indexing may be faltering -- catching yourself writing comments like this :)
That's called the "Matlab Hangover"