How to reflect the element above the diagonal of a matrix to the lower diagonal ?
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Tuong Nguyen Minh
el 17 de Jul. de 2020
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
0 comentarios
Respuesta aceptada
Matt J
el 17 de Jul. de 2020
Editada: Matt J
el 17 de Jul. de 2020
b=triu(a)+triu(a,1).'; %the result
Más respuestas (0)
Ver también
Categorías
Más información sobre Operating on Diagonal Matrices en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!