how to calculate this sym of serie?

 Accepted Answer

Try this intuitive, brute force method:
clc;
% Sample numbers:
q = 10;
n = 3;
theSum = 0;
for k = 0 : n
qArray = q : -1 : q-k;
p = prod(qArray)
theSum = theSum + p;
end
% Print to command window
theSum

More Answers (0)

Categories

Tags

Asked:

N/A
on 4 Feb 2015

Commented:

N/A
on 4 Feb 2015

Community Treasure Hunt

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

Start Hunting!