Question: Sum of matrix line

I have a 3x3 matrix called test, I am trying to compute the sum of all the elements of the first line.

 

sum(test[1,j],j=1..3)

Error, bad index into Matrix
 

how to do?

 

thank you

Please Wait...