Math: How to sum each row of a matrix
- by macek
I have a 1x8 matrix of students where each student is a 4x1 matrix of scores.
Something like:
SCORES
S [62, 91, 74, 14]
T [59, 7 , 59, 21]
U [44, 9 , 69, 6 ]
D [4 , 32, 28, 53]
E [78, 99, 53, 83]
N [48, 86, 89, 60]
T [56, 71, 15, 80]
S [47, 67, 79, 40]
Main question:
Using sigma notation, or some other mathematical function, how can I…