Alternating harmonic series uses symsum

16 次查看(过去 30 天)
I want to do an alternating series using just symsum, but I've seen a lot of complicated code for it.
Is there a way to define variable and use symsum for 1-1/2+1/3...?

采纳的回答

Walter Roberson
Walter Roberson 2022-1-28
syms m n integer
result = symsum((-1)^(n+1)/n, n, 1, m)
result = 
result = symsum((-1)^(n+1)/n, n, 1, inf)
result = 

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Calculus 的更多信息

标签

产品


版本

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by