フィルターのクリア

approximating pi with taylor series expansion to the 10,000th term

2 ビュー (過去 30 日間)
charlotte davis
charlotte davis 2014 年 10 月 2 日
編集済み: Mischa Kim 2014 年 10 月 2 日
This was my code: I=0
while (I<10000)
I=((-1)^I)/(2*I+1)
end
x=4*I
so when I do that the answer shows as
x =
NaN + NaNi

採用された回答

Mischa Kim
Mischa Kim 2014 年 10 月 2 日
編集済み: Mischa Kim 2014 年 10 月 2 日
charlotte, you are almost there:
l = 1;
for ii = 1:10000
l = l + ((-1)^ii)/(2*ii + 1);
end
x = 4*l;
  • If the number of iterations (series terms) is know, use a for-loop
  • ii is the loop index, l is the approximation to pi/4

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeLoops and Conditional Statements についてさらに検索

タグ

タグが未入力です。

Community Treasure Hunt

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

Start Hunting!

Translated by