Borrar filtros
Borrar filtros

How can I do this matrix ?

1 visualización (últimos 30 días)
zeezo
zeezo el 20 de Feb. de 2018
Comentada: zeezo el 21 de Feb. de 2018
I have this Matrix
A=[1;6;9;4;2;8]
I would like to generate a matrix as follow
the first row has only 1 and the rest zeros.
the seconds row has 1 and 6 and the rest zeros
the third has 1 , 6 and 9 and the rest zeros and so one
B=
1 0 0 0 0 0
1 6 0 0 0 0
1 6 9 0 0 0
1 6 9 4 0 0
1 6 9 4 2 0
1 6 9 4 2 8
How can I do it ?

Respuesta aceptada

Stephen23
Stephen23 el 20 de Feb. de 2018
Editada: Stephen23 el 20 de Feb. de 2018
>> A = [1;6;9;4;2;8];
>> M = tril(repmat(A.',6,1))
M =
1 0 0 0 0 0
1 6 0 0 0 0
1 6 9 0 0 0
1 6 9 4 0 0
1 6 9 4 2 0
1 6 9 4 2 8
  4 comentarios
Stephen23
Stephen23 el 20 de Feb. de 2018
zeezo
zeezo el 21 de Feb. de 2018
Thanks a lot

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Creating and Concatenating Matrices 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