Calculating the integral and it's 20-th term

1 Ansicht (letzte 30 Tage)
Michal Waligora
Michal Waligora am 6 Feb. 2020
Beantwortet: EmielH am 7 Feb. 2020
Dear Guys,
I want to formulate the following into a code. I want to calculate the values of I from 1 to 20. Where I know that for the
So I created the following code,
e = 2,7182818284590452353602874713527;
i(n==0)=e-1;
for n =1:20
i(n+1) = e-n*i(n)
end
I had no idea how to put the value of n=0 so I just totally improvised. Code created some values, but not the right ones. If you could spot the mistakes.
Thank you

Akzeptierte Antwort

EmielH
EmielH am 7 Feb. 2020
i=zeros(1,21);
i(1) = exp(1)-1;
for n=1:20
i(n+1) = e-n*i(n);
end

Weitere Antworten (0)

Kategorien

Mehr zu MATLAB finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by