Generating a vector with a pattern?
显示 更早的评论
How do I generate the following vector efficiently for large lengths?
A=[1^1 2^2 3^3 4^4 5^5 6^6]
采纳的回答
更多回答(2 个)
the cyclist
2011-2-4
>> v = 1:6;
>> A = v.^v;
Stylistically even better? ;-)
3 个评论
Andrew Newell
2011-2-4
Definitely!
Walter Roberson
2011-2-4
Now how would we do tetration, v^^v?
http://en.wikipedia.org/wiki/Tetration
Walter Roberson
2011-2-4
Nevermind; 4^4^4^4 is the largest that fits within realmax.
Jan
2011-2-4
This job overflows fast for large lengths and computing 200^200 is a waste of time.
EDITED: With Matt Fig's further improvements:
function x = XpowerX(n)
v = 1:min(n,143);
x = inf(1,n);
x(v) = v.^v;
This much faster than the direct 1:n approach:
tic; for i = 1:15000; y = XpowerX(i); end; toc
% 1.8 sec
tic; for i = 1:15000; v = 1:i; y = v.^v; end; toc
% 60 sec
类别
在 帮助中心 和 File Exchange 中查找有关 Language Fundamentals 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!