Matrices (2 pts):
rootbeer = [3 1; 2 5];
rootbeer'
rootbeer(2,:) = sum(rootbeer);
Two questions:
What are the values in rootbeer now?
What output does MATLAB generate?