Effacer les filtres
Effacer les filtres

use a Loop to repeat an equation using the previous answer as the new variable.

13 vues (au cours des 30 derniers jours)
I want to write a loop to do the below all the way up to p340....I do not want to change the name of the variable each time but instead would like all variables in one array. I have been searching and trying to figure this out for hours. I've written so many different forms of a for loop I don't know what to include here.
xt = 100:440
p1 = 99977
p2 = p1./(exp((50)./(29.3.*((xt)))))
p3 = p2./(exp((50)./(29.3.*((xt)))))
p4 = p3./(exp((50)./(29.3.*((xt)))))
....etc
  4 commentaires
madhan ravi
madhan ravi le 4 Mai 2019
So anyhow you have wasted one of the answerers effort.
Adam Kevin Francis Baker
Adam Kevin Francis Baker le 4 Mai 2019
I would have closed the question sooner if i knew how...maybe the site should make it easier to close a question and efforst would not have been wasted.

Connectez-vous pour commenter.

Réponse acceptée

KALYAN ACHARJYA
KALYAN ACHARJYA le 4 Mai 2019
Modifié(e) : KALYAN ACHARJYA le 4 Mai 2019
xt=100:440;
p={};
p{1}=99977;
for i=2:340;
p_iter=p{i-1};
deno=exp(50./(29.3*(xt)));
p{i}=p_iter./deno;
end
  3 commentaires
Adam Kevin Francis Baker
Adam Kevin Francis Baker le 4 Mai 2019
Ok so one small change and it's solved...thanks!
xt=100:440;
p={};
p{1}=99977;
for i=2:340;
p_iter=p{i-1};
deno=exp(50./(29.3*(xt(i))));
p{i}=p_iter./deno;
end
Stephen23
Stephen23 le 4 Mai 2019
Modifié(e) : Stephen23 le 4 Mai 2019
".the first value of the array in that cell is the correct value for that iteration.."
That is quite interesting, because the first values of each vector corresponds to the first value of the xt vector. So effectively you want to ignore all of the other xt values. Is this correct?
EDIT: you have now accepted KALYAN ACHARJYA's complex answer, which according to your own comment does not do what you want. You wrote: ".the first value of the array in that cell is the correct value for that iteration" and now you have shown in your own comment (by the addition of xt(i) indexing) that what you described is not what you want at all.
Also note that KALYAN ACHARJYA does not provide a numeric vector, as you requested.
Simpler answer:

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

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

Community Treasure Hunt

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

Start Hunting!

Translated by