Writing a loop to create a matrix
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
Kent Doan
il 2 Mag 2022
Modificato: Davide Masiello
il 2 Mag 2022
if N==1
Lambda = A;
elseif N==2
Lambda = [A A^2]';
elseif N==3
Lambda = [A A^2 A^3]';
elseif N==4
Lambda = [A A^2 A^3 A^4]';
elseif N==5
Lambda = [A A^2 A^3 A^4 A^5]';
end
Given that A is a matrix, how do I create a loop that creates:
Lambda = [A A^2 A^3... A^(N-2) A^(N-1) A^N]';
0 Commenti
Risposta accettata
Davide Masiello
il 2 Mag 2022
Modificato: Davide Masiello
il 2 Mag 2022
Example
A = rand(3)
n = 10;
lambda = [];
for i = 1:n
lambda = [lambda;A.^i];
end
lambda
0 Commenti
Più risposte (0)
Vedere anche
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!