How to solve this in Matlab using loop and symsum

 Accepted Answer

Do you really want to do it with a loop and symsum? Why not just
N = 10; % for example
i = 1:N;
sum(1./i + 1./((i+2).*(i+3)))

More Answers (0)

Categories

Find more on Mathematics in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!