calculate the sum of a discert series and then limit the the result

조회 수: 1 (최근 30일)
Elle
Elle 2021년 5월 10일
댓글: Elle 2021년 5월 10일
Hi There, I'm solving this problem via Matlab: =?
I tried 'symsum' and 'limit' function like this:
>> limit(symsum(1/k+n,k,1,n),n,inf)
but it seems not work.
Thanks for any info.

채택된 답변

KSSV
KSSV 2021년 5월 10일
편집: KSSV 2021년 5월 10일
syms k n
f = symsum(1/(k+n),k,1,n)
f = 
s = limit(f,n,inf)
s = 
  댓글 수: 3
Elle
Elle 2021년 5월 10일
I made a mistake at the meaning of the 'syms'. Now I realize it's stronger than I thought.
Thank you.

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Numbers and Precision에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by