Question about Taylor Series While loop.

1 回表示 (過去 30 日間)
Derryn
Derryn 2013 年 3 月 6 日
I'm completely stuck on this While Loop using Taylor Series.
x = input('Input the angle in radians: ');
Cos_Estimate = 0;
k = 0;
Errrr = 1
while Errrr > .000001
if mod(k,2)
Sign = 1;
else
Sign = -1;
end
k = k + 2;
Cos_Estimate = Cos_Estimate + (x^k/(factorial(k)*Sign));
Errrr = abs(Cos_Estimate - cos(x));
end
err = abs(Cos_Estimate - cos(x));
fprintf('The estimated cosine value based on the Taylor Series is: %0.6f \n',Cos_Estimate)
fprintf('The actual cosine value is : %0.6f \n',cos(x))
fprintf('The estimation error is: %0.6f \n',err)
fprintf('The number of terms required was: \n',term)
Now I am getting NaN for my variable. I'm stuck.
  2 件のコメント
Azzi Abdelmalek
Azzi Abdelmalek 2013 年 3 月 6 日
Now your variable is Nan
Derryn
Derryn 2013 年 3 月 6 日
How do I fix this?

サインインしてコメントする。

採用された回答

Azzi Abdelmalek
Azzi Abdelmalek 2013 年 3 月 6 日
編集済み: Azzi Abdelmalek 2013 年 3 月 6 日
Try this
x = input('Input the angle in radians: ');
Cos_Estimate = 1;
Errrr=1
Sign = 1;
k = 0;
while Errrr > .000001 & k<60
Sign =-Sign;
k = k + 2;
Cos_Estimate = Cos_Estimate + (x^k/(factorial(k)*Sign))
Errrr = abs(Cos_Estimate - cos(x))
end
display(Cos_Estimate)
  1 件のコメント
Derryn
Derryn 2013 年 3 月 6 日
THANKS

サインインしてコメントする。

その他の回答 (2 件)

Babak
Babak 2013 年 3 月 6 日
add this line to the beginning of your code:
Errrr =1;
  1 件のコメント
Derryn
Derryn 2013 年 3 月 6 日
Added it, but now I get this as my output:
EDU>> Lab7_Prob3Script
Input the angle in radians: pi
The estimated cosine value based on the Taylor Series is: NaN
The actual cosine value is : -1.000000
The estimation error is: NaN
The number of terms required was:

サインインしてコメントする。


Azzi Abdelmalek
Azzi Abdelmalek 2013 年 3 月 6 日
編集済み: Azzi Abdelmalek 2013 年 3 月 6 日
Your code never enter in the loop because Errrr is not defined
  5 件のコメント
Matt Kindig
Matt Kindig 2013 年 3 月 6 日
編集済み: Matt Kindig 2013 年 3 月 6 日
Also, what exactly is the point of the "estimation error" calculation (calculation of 'err')? By definition, won't this be equal to Errrr, because you have defined it that way? Also, won't 'err' always be less than 0.000001, because of the way you have defined your loop?
Derryn
Derryn 2013 年 3 月 6 日
Ah ok thanks. Does this look better?
x = input('Input the angle in radians: ');
Cos_Estimate = 0; k = 0;
count = 0;
Errrr = 1;
while Errrr > .000001
count = count + 1;
if mod(k,2)
Sign = 1;
else
Sign = -1;
end
k = k + 2;
Cos_Estimate = Cos_Estimate + (x^k/(factorial(k)*Sign));
Errrr = abs(Cos_Estimate - cos(x));
if k > 170
break
end
end
err = abs(Cos_Estimate - cos(x));
fprintf('The estimated cosine value based on the Taylor Series is: %0.6f \n',Cos_Estimate)
fprintf('The actual cosine value is : %0.6f \n',cos(x))
fprintf('The estimation error is: %0.6f \n',err)
fprintf('The number of terms required was: %0.0f \n',count)
I'm still getting the wrong value for Cos_Estimate

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeStability Analysis についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by