plotting a tower power of square root of 2

1 visualización (últimos 30 días)
Amjad Green
Amjad Green el 6 de Nov. de 2018
Respondida: KSSV el 6 de Nov. de 2018
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.

Respuestas (1)

KSSV
KSSV el 6 de Nov. de 2018
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)

Categorías

Más información sobre Scatter Plots en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by