Construct Power of Matrix without for loop
1 次查看(过去 30 天)
显示 更早的评论
Hi, everyone:
Suppose I have a 2 by 2 matrix A, if I want construct a larger matrix B that is defined as:
B=[A, A^2, A^3, A^4, ... A^N];
is it possible to do it without for loop?
Thanks
0 个评论
采纳的回答
Azzi Abdelmalek
2013-8-11
编辑:Azzi Abdelmalek
2013-8-11
Example
A=magic(2);
N=3;
B=cell2mat(arrayfun(@(x) A^x,1:N,'un',0))
0 个评论
更多回答(2 个)
Jan
2013-8-12
Azzi's suggestion is fine for N=3. If you are talking about larger N, neither the repeated power operator nor arrayfun nor cell2mat are efficient:
N = 10000
A = rand(2, 2);
tic;
B = cell2mat(arrayfun(@(x) A^x,1:N,'un',0));
toc
tic;
B = zeros(2, 2, N);
P = 1;
for k = 1:N
P=P*A;
B(:,:,k) = P;
end
B = reshape(B, 2, N * 2);
toc
Elapsed time is 0.199776 seconds.
Elapsed time is 0.039983 seconds.
So I'd prefer the more efficient FOR loop.
2 个评论
Ming
2013-8-11
编辑:Ming
2013-8-11
1 个评论
Walter Roberson
2013-8-11
Note: arrayfun() just hides the "for" loop. If you are willing to use it, then Azzi's example does what you ask.
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Matrix Indexing 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!