How to insert different size matrices into each row of a zero matrix

I am using a for loop to solve multiple itterations of an equation. for each output, i wan it to store in a new row of a zero matrix, while keeping the output from the previous itteration as shown below
M = [ x1 0 0 0 ;
x1 x2 0 0 ;
x1 x2 x3 0;
x1 x2 x3 x4]

Risposte (3)

M = zeros(4) ;
for i = 1:4
M(i,1:i) = rand(1,i) ;
end
M
M = 4×4
0.3674 0 0 0 0.1426 0.9721 0 0 0.8203 0.1518 0.5443 0 0.9805 0.8734 0.5388 0.7684

Categorie

Scopri di più su MATLAB in Centro assistenza e File Exchange

Richiesto:

il 10 Apr 2023

Risposto:

il 10 Apr 2023

Community Treasure Hunt

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

Start Hunting!

Translated by