Writing a loop to create a matrix
조회 수: 1 (최근 30일)
이전 댓글 표시
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
채택된 답변
Davide Masiello
2022년 5월 2일
편집: Davide Masiello
2022년 5월 2일
Example
A = rand(3)
n = 10;
lambda = [];
for i = 1:n
lambda = [lambda;A.^i];
end
lambda
댓글 수: 0
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!