MATLAB: How to add rows and display the result

matrix addition

c = 8 7 9; 6 5 14; 12 15 10;
for C how to add rows separately and display the result and also if C has m number of rows what should be done..
and

Best Answer

sum(C,2)
will show the addition of rows separately.
Related Question