plotting a tower power of square root of 2
1 回表示 (過去 30 日間)
古いコメントを表示
hello i am plotting the convergence of some tower powers,i have written the following code:
x=2^0.5;
g=x;
for (i=0:24)
g=x^g;
plot(i,g,'*')
hold on
end
i don't know why but i am only getting the points(*) without the line connecting the points,this infinite power tower converges to 2,i want to draw the line connecting the points.
0 件のコメント
回答 (1 件)
KSSV
2018 年 11 月 6 日
x=2^0.5;
g=x;
i = 0:24 ;
g = zeros(length(i),1) ;
g(1) = x^g(1) ;
for (i=2:25)
g(i)=x^g(i-1);
end
i = 0:24 ;
plot(i,g)
0 件のコメント
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!