Lower Triangle of Matrix

8 visualizaciones (últimos 30 días)
Alex Baham
Alex Baham el 2 de Abr. de 2020
Comentada: John D'Errico el 2 de Abr. de 2020
I know that if you have a matrix A, triu(A) will fill the lower triangular matrix with zeros, but is there a way to make that ones instead of zeros? Thanks!

Respuesta aceptada

John D'Errico
John D'Errico el 2 de Abr. de 2020
No. You cannot tell triu to fill with ones instead of zeros. That does not mean what you are asking is impossible, just that you need to be creative in how you use these tools.
A = magic(5)
A =
17 24 1 8 15
23 5 7 14 16
4 6 13 20 22
10 12 19 21 3
11 18 25 2 9
triu(A) + tril(ones(size(A)),-1)
ans =
17 24 1 8 15
1 5 7 14 16
1 1 13 20 22
1 1 1 21 3
1 1 1 1 9
  2 comentarios
Alex Baham
Alex Baham el 2 de Abr. de 2020
thanks so much! that worked perfectly!!
John D'Errico
John D'Errico el 2 de Abr. de 2020
:)

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Loops and Conditional Statements en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by