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)
Show older comments
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
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.
Answers (2)
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
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
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
See Also
Categories
Find more on Whos in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!