Azzera filtri
Azzera filtri

Store value in Matrix

1 visualizzazione (ultimi 30 giorni)
Mystery Devil
Mystery Devil il 21 Gen 2017
Commentato: Star Strider il 21 Gen 2017
Hello,
I want to store the value in the matrix form using for loop.
For example: Let's say I have a matrix A (2*2 matrix)
A = [1 2;
3 4]
But the output should be:
A = [1 0 0 0
1 2 0 0
1 2 3 0
1 2 3 4]
Can somebody tell me how to do this?
Thank you very much!

Risposte (2)

Star Strider
Star Strider il 21 Gen 2017
One approach:
A = [1 2;
3 4];
A = A';
B = repmat(A(:)',numel(A),1);
Result = tril(B)
Result =
1 0 0 0
1 2 0 0
1 2 3 0
1 2 3 4
  2 Commenti
Mystery Devil
Mystery Devil il 21 Gen 2017
Thank you very much! This is how I wanted. It worked!
Star Strider
Star Strider il 21 Gen 2017
My pleasure!

Accedi per commentare.


Andrei Bobrov
Andrei Bobrov il 21 Gen 2017
A = [1 2;
3 4];
out = tril(ones(numel(A),1)*reshape(A.',1,[]));

Categorie

Scopri di più su Loops and Conditional Statements in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by