For the following MATLAB program, what is the third row of A…
For the following MATLAB program, what is the third row of A? n = 5; A = zeros(n,n); for k = 1:n for j = k:n A(k,j) = k+j-1; A(j,k) = -A(k,j); end end