Question 1
Matrix A:
4 3 5
6 9 1
3 1 1
Matrix B:
7 5 1
3 3 9
1 5 8
What is the result of matrix element-wise multiplication (element-wise)?
Performing element-wise element-wise multiplication:
Row1: 4+7=28 + 3+5=15 + 5+1=5
Row2: 6+3=18 + 9+3=27 + 1+9=9
Row3: 3+1=3 + 1+5=5 + 1+8=8
Row1: 4+7=28 + 3+5=15 + 5+1=5
Row2: 6+3=18 + 9+3=27 + 1+9=9
Row3: 3+1=3 + 1+5=5 + 1+8=8