Matrix with gradually increasing!

1 visualización (últimos 30 días)
Omar
Omar el 20 de Nov. de 2017
Comentada: Omar el 20 de Nov. de 2017
Hi everyone! Can somebody help me to write a code to return a matrix with the following form: [1 1 1 1 1;1 1 1 1 0;1 1 1 0 0;1 1 0 0 0;1 0 0 0 0]? it's 5x5 square matrix Thanks in advance

Respuesta aceptada

John D'Errico
John D'Errico el 20 de Nov. de 2017
flip(tril(ones(5)))
ans =
1 1 1 1 1
1 1 1 1 0
1 1 1 0 0
1 1 0 0 0
1 0 0 0 0
  1 comentario
Omar
Omar el 20 de Nov. de 2017
You're awesome :) Thanks a lot

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Logical 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!

Translated by