i want to write matlab code for x(i+1) = x(i) + 0.05*2*x(i), i=0:0.05:1, x(0) =2

17 views (last 30 days)
i want to write matlab code for
x(i+1) = x(i) + 0.05*2*x(i), i=0:0.05:1, x(0) =2
how can i do it in matlab?
  2 Comments
Stephen23
Stephen23 on 6 Oct 2018
Edited: Stephen23 on 6 Oct 2018
This will not work:
x(i+1) = x(i) + 0.05*2*x(i), i=0:0.05:1
The vector i contains fraction values and it is shown as an index into x. Indices must be integer or logical, so using a fractional value will throw an error.
What have you tried so far? Please show us your code attempt.
Ali Asghar
Ali Asghar on 6 Oct 2018
Edited: Stephen23 on 6 Oct 2018
Thank for reply. I just started this work and having problem in inner loop in writing formula.
I wrote this code till yet.
clc, clear all, close all
T = 0.05;
for i=0:1:19;
for j = 1:1:20
x(i,j) = ???
end
end

Sign in to comment.

Answers (2)

Stephen23
Stephen23 on 6 Oct 2018
Perhaps one of these does what you want:
>> i = 0:0.05:1;
>> x = cumsum(2+0.05*2*i)
x =
2.0000 4.0050 6.0150 8.0300 10.0500 12.0750 14.1050 16.1400 18.1800 20.2250 22.2750 24.3300 26.3900 28.4550 30.5250 32.6000 34.6800 36.7650 38.8550 40.9500 43.0500
>> x = 2+cumsum(0.05*2*i)
x =
2.0000 2.0050 2.0150 2.0300 2.0500 2.0750 2.1050 2.1400 2.1800 2.2250 2.2750 2.3300 2.3900 2.4550 2.5250 2.6000 2.6800 2.7650 2.8550 2.9500 3.0500
  3 Comments
Stephen23
Stephen23 on 6 Oct 2018
Edited: Stephen23 on 6 Oct 2018
>> 2*1.1.^(0:10)
ans =
2.0000 2.2000 2.4200 2.6620 2.9282 3.2210 3.5431 3.8974 4.2872 4.7159 5.1875
Please remember to accept my answer if this helps you.

Sign in to comment.


ARAVIND
ARAVIND on 6 Oct 2018
Edited: ARAVIND on 6 Oct 2018
ii = [0:0.05:1]; X = zeros(1,numel(ii)); X(1) = 2; for cnt = 1:numel(ii) X(cnt) = X(cnt)+ 0.05*2*ii(cnt); end
  2 Comments
ARAVIND
ARAVIND on 7 Oct 2018
Hello Stephen, Thank you for your simpler answer. Can you explain the your code. I want to modify your code for different value(0.06 instead of 0.05).
Kind Regards, Aravind

Sign in to comment.

Community Treasure Hunt

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

Start Hunting!