Effacer les filtres
Effacer les filtres

How to iteratively increase the number of power operations

2 vues (au cours des 30 derniers jours)
patr chri
patr chri le 27 Jan 2022
Hello,
I want to write a loop in which I will iteratively increase the number of power operations I do.
For example:
Loop 1: x(1) = 2^(1/2)
Loop 2: x(2) = 2^(1/2)^(1/2)
Loop 3: x(3) = 2^(1/2)^(1/2)^(1/2)
... (and so on)
Is this possible to be done?

Réponse acceptée

David Hill
David Hill le 27 Jan 2022
n=10;%how many do you want
x=2.^((.5).^(1:n))

Plus de réponses (0)

Catégories

En savoir plus sur Loops and Conditional Statements dans Help Center et File Exchange

Produits


Version

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by