How to insert different size matrices into each row of a zero matrix
Mostra commenti meno recenti
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
Walter Roberson
il 10 Apr 2023
newvalues = as appropriate
M(end+1, 1:length(newvalues)) = newvalues;
syms x [1 10]
n = 10;
for k = 1:n
M(k,1:k) = x(1:k);
end
M
Categorie
Scopri di più su MATLAB in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
