Azzera filtri
Azzera filtri

need help in matlab coding

1 visualizzazione (ultimi 30 giorni)
Ali Asghar
Ali Asghar il 14 Ott 2018
Commentato: Stephen23 il 16 Ott 2018
How do I write coding for
x(i+1) = x(i) + 0.05(2*x(i) - t);
for i= 0:0.05:1
x(0) = 2.
For 1st iteration t = 0. For 2nd iteration t=0.05. For 3rd iteration t=0.1 and so on....
The answer will be: 2.2, 2.4175, 2.6542.......
  3 Commenti
Kevin Chng
Kevin Chng il 14 Ott 2018
Have you tried out any code?
Stephen23
Stephen23 il 16 Ott 2018
Earlier question:
@Ali Asghar: remember to accept the answer that best helped to resolve your question.

Accedi per commentare.

Risposte (1)

Image Analyst
Image Analyst il 14 Ott 2018
This works:
x(1) = 2;
t = 0:0.05:1
for k = 1 : length(t) - 1
x(k+1) = x(k) + 0.05 * (2 * x(k) - t(k));
end
% Show in command window:
x
  2 Commenti
Ali Asghar
Ali Asghar il 16 Ott 2018
thank you very much dear
Image Analyst
Image Analyst il 16 Ott 2018
I'm not sure if you will get any more answers after all this time, so do you want to go ahead and "Accept this answer"? Thanks in advance.

Accedi per commentare.

Categorie

Scopri di più su Get Started with MATLAB in Help Center e File Exchange

Tag

Non è stata ancora inserito alcun tag.

Prodotti


Release

R2017b

Community Treasure Hunt

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

Start Hunting!

Translated by