Write Matlab code to calculate the convolution sum between two vectors and h, based on the definition of convolution sum below.
sln = sum(x[n-k] * h[k])
The inputs are two vectors x and h, and the output vector y is the convolution sum between x and h. The result should be the same as the Matlab built-in function conv().