How to make Triu in reverse axis for triangular matrices ?
6 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Ramesh Bala
el 2 de Dic. de 2020
Comentada: Ramesh Bala
el 2 de Dic. de 2020
The function triu makes the upper triangular matrix in the shape of L . How shall I reverse it like to make it run in opposite diirection.
The below function make triu in the top to bottom,i wanna to make it bottom to top and thus reversing it ?
A = ones(6);
idx = ( A(:,3:end) );
A(:,3:end) = triu(idx,-1)
0 comentarios
Respuesta aceptada
John D'Errico
el 2 de Dic. de 2020
Are you asking to do no more than this?
A = magic(6)
A = flip(tril(flip(A)))
That is a simple way to do it. There would be others.
Más respuestas (0)
Ver también
Categorías
Más información sobre Linear Algebra 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!