MATLAB: Calculating the sum of values of Jacobi Polynomials

MATLAB

for this code given below i also want to calculate the sum of all these five values, kindly assist in this regard:
clc; clear all
syms j
a= 0;
b= 0;
for j = 0:4
display (jacobiP(j,0,0,-0.655))
end

Best Answer

summe=sum(jacobiP(0:4,0,0,-0.655))
Best wishes
Torsten.