+15 XP
Code It: Matrix Multiply
Question 1 of 2
We have the weight matrix W (2Γ3) and retinal activity R (3Γ2). Compute the LGN activity G = WΒ·R. In NumPy, @ does matrix multiplication. Fill in the second matrix.
python
G = W @
Code It: Matrix Multiply
Question 1 of 2
We have the weight matrix W (2Γ3) and retinal activity R (3Γ2). Compute the LGN activity G = WΒ·R. In NumPy, @ does matrix multiplication. Fill in the second matrix.
G = W @