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!