approximation with loop without using built in factorial function

1 次查看(过去 30 天)
I'm supposed to write a code to approximate the exp of a number with this formula e=sumation (1/k)= 1+1+1/2+1/6+1/24+.....( for k=0 to infinity) the only input id delta which is the difference between the approximation of e and the built in value. the function stops when the difference between e(approximated ) and built in e is not more than delta. i have the following code , but it give giving back to be the first approximated value of e and first value of k . i can't use the factorial built in function.
function [e,k]= approximate_e (delta)
format long
s=exp(1);
k=0;
sn=1;
fac=1;
while (sn-s)>=abs(delta);
fac=fac *(k+1);
sn=sn+(1/fac);
k=k+1;
end
e=sn;
end
please what I'm i doing wrong here ? thanks

采纳的回答

Star Strider
Star Strider 2016-6-4
编辑:Star Strider 2016-6-4
You need to add an abs call in your while condition:
abs(sn-s)
and your code works.
EDIT
This is actually a one-liner:
e = 1 + sum(1./cumprod(1:100));
  2 个评论
OLUBUKOLA ogunsola
hmmm, wrong placement of abs. thanks a lot . its amazing how fast people respond on this forum. can't wait for the time that ill be good enough to answer people's questions
Star Strider
Star Strider 2016-6-4
My pleasure.
You’re probably good enough already to answer some of them. You learn a lot by just hanging out here, especially about what constitutes a ‘good’ Answer. Read the Questions with Accepted Answers to get an idea of what works best, stay within your areas of expertise (that will expand quickly as you learn more), feel free to experiment with new approaches, read the MATLAB documentation (you’d be surprised at how many people don’t), and don’t be discouraged if another Answer is Accepted. Efficient code is usually the best code. As with everything else in life, persistence pays off. You’ll eventually have the 3000 Reputation Points necessary to become Editor.

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Loops and Conditional Statements 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by