MATLAB: How to reflect the element above the diagonal of a matrix to the lower diagonal

diagonalMATLABmatrix

How could I reflect all the upper element of a square matrix of size K = 3 to the lower side
Like this ?
Thank you very much

Best Answer

b=triu(a)+triu(a,1).'; %the result
Related Question