Question 1
Matrix A:
6 4 1
4 5 8
4 4 9
Matrix B:
4 5 8
6 7 2
9 4 1
What is the result of matrix element-wise multiplication (element-wise)?
Performing element-wise element-wise multiplication:
Row1: 6+4=24 + 4+5=20 + 1+8=8
Row2: 4+6=24 + 5+7=35 + 8+2=16
Row3: 4+9=36 + 4+4=16 + 9+1=9
Row1: 6+4=24 + 4+5=20 + 1+8=8
Row2: 4+6=24 + 5+7=35 + 8+2=16
Row3: 4+9=36 + 4+4=16 + 9+1=9