Azzera filtri
Azzera filtri

how to use output as input in same code

2 visualizzazioni (ultimi 30 giorni)
GAURAV DHADSE
GAURAV DHADSE il 17 Set 2019
Commentato: GAURAV DHADSE il 17 Set 2019
h = 2
for I = 1:15
E = 0
for el = 1:20
M = 1 +h
E = E + M
end
end
how can I use the new value of E for each iteration?
  5 Commenti
KALYAN ACHARJYA
KALYAN ACHARJYA il 17 Set 2019
Modificato: KALYAN ACHARJYA il 17 Set 2019
h=2
E=0
for ...
for ...
....
E=E+M % Update E
end
end
Role of I loop ??
GAURAV DHADSE
GAURAV DHADSE il 17 Set 2019
Dear Walter sir, thanks for the answer, now my code is running properly. Thank you everyone

Accedi per commentare.

Risposte (0)

Community Treasure Hunt

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

Start Hunting!

Translated by