Let's assume a box-function and a convolution:
f = UnitBox[x];
c[t_] := Convolve[t, t, x, y] /. y -> x;
c[f]
My problem arises when plotting the functions. Why does the code p2 work and the code p1 not? Where is the difference?
p1 = Plot[{f, c[f]}, {x, -2, 2}]
p2 = Plot[{f, UnitTriangle[x]}, {x, -2, 2}]


p1 = Plot[{f, Evaluate@c[f]}, {x, -2, 2}]– Sumit Oct 13 '16 at 09:07