Azzera filtri
Azzera filtri

Alternating harmonic series uses symsum

5 visualizzazioni (ultimi 30 giorni)
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...?

Risposta accettata

Walter Roberson
Walter Roberson il 28 Gen 2022
syms m n integer
result = symsum((-1)^(n+1)/n, n, 1, m)
result = 
result = symsum((-1)^(n+1)/n, n, 1, inf)
result = 
  1 Commento
Cassandra Meyer
Cassandra Meyer il 28 Gen 2022
Thank you! tried something similar but might have missed a parathenses.

Accedi per commentare.

Più risposte (0)

Tag

Prodotti


Release

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by