필터 지우기
필터 지우기

Script that calculates the following sum

조회 수: 3 (최근 30일)
Juan Zegarra
Juan Zegarra 2019년 4월 28일
답변: Jan 2019년 4월 29일
Write a script that will calculate the convertage series of S= starting at n=0. This series will converge on S=2. That is 1/1 +1/2 +1/4.... The script will terminate whn 2 >S>=1.990 and it will print a sentence that contains the values for S and n. I've done this so far but I'm getting errors. Can you please help me?\
n=0
S=0
while S > 1.990
S=1/(2^n)+S
n=n+1
S(n)=S
end
  댓글 수: 2
dpb
dpb 2019년 4월 28일
Look at your logical test carefully...
Torsten
Torsten 2019년 4월 29일
... and remove the line
S(n) = S

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

답변 (1개)

Jan
Jan 2019년 4월 29일
n=0
S=0 % Now S is a scalar
while S > 1.990 % In the first iteration you compare a scalar
% But you do not mean >, but <= !
S=1/(2^n)+S
n=n+1
S(n)=S % If n=2, you assign: S(2)=S, but for n=3:
% it is: S(3) = S and S is a [1 x 2] vector
end
Store the current value of S in a separate variable, e.g. SV, which is a vector then.

카테고리

Help CenterFile Exchange에서 MATLAB에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by