The equations looks like this:
dxi(t)/dt = -c * xi(t) * yi(t)
dyi(t)/dt = a * Σ{i=1 to n}(xi(t) * yi(t)) + xi(t) * yi(t - 1) + b
where a, b and c are whatever constant values you want, for example a=1, b=2, c=3.
Σ{i=1 to n}(xi(t) * yi(t)) means summation from i=1 to n, for example n=3: x1(t)*y1(t) + x2(t)*y2(t) + x3(t)*y3(t)
So, how can I express & solve this using matlab?