Matrices (4 pts):

matA = 5*ones(3,4);
matA(:,4) = 10
matA(2,:) = 2
matB = [0 -35; -25 8]
matA([2 3],[1 3]) = matB;

What are the contents of matA?