how to calculate alternating summation for pi

조회 수: 4 (최근 30일)
John Jamison
John Jamison 2017년 1월 31일
댓글: Star Strider 2017년 1월 31일
How do I write code to estimate pi up to 1 million terms (n=1million) of: pi = 4(1/1 - 1/3 + 1/5 - 1/7 +...etc)

답변 (2개)

Star Strider
Star Strider 2017년 1월 31일
Use MATLAB vectors:
N = 1E+6; % Number Of Terms
N = 2*fix(N/2); % Assure Even Number Of Terms
sgn = -(-1).^[1:N]; % Sign Vector
denom = 1:2:2*N; % Denominator Vector
pie = 4*sum(1./(denom.*sgn)) % Desired Result
error = pi - pie % Difference Between Our Calculation And MATLAB ‘pi’
pie =
3.14159165358978
error =
1.00000001213019e-06
  댓글 수: 2
John Jamison
John Jamison 2017년 1월 31일
for the 'sgn' and 'denom' steps, how could you make those into vector equations—i.e 'v =' ?
Star Strider
Star Strider 2017년 1월 31일
I’m not certain what you mean by ‘vector equations—i.e 'v =' ’ A more detailed description or explanation would be helpful.
They are already ‘vector equations’ as I interpret it. I combined them in the ‘pie’ assignment. You can break them out as a single vector and then calculate ‘pie’ as:
v = denom.*sgn;
pie = 4*sum(1./v)
While I’m thinking about it, remember to celebrate International Pi Day (to three significant digits) on March 14 (3 14 2017).

댓글을 달려면 로그인하십시오.


KSSV
KSSV 2017년 1월 31일
편집: KSSV 2017년 1월 31일
  댓글 수: 1
John Jamison
John Jamison 2017년 1월 31일
I don't understand loops. How can I solve it simpler without the 'while' and 'end'?

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Multirate Signal Processing에 대해 자세히 알아보기

태그

제품

Community Treasure Hunt

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

Start Hunting!

Translated by