- What is continuous and discrete signal in Matlab?
- How do you find the convolution of two sequences in Matlab?
What is continuous and discrete signal in Matlab?
A continuous-time signal takes on a value at every point in time, whereas a discrete-time signal is only defined at integer values of the “time” variable.
How do you find the convolution of two sequences in Matlab?
The Signal Processing Toolbox™ software has a function, cconv , that returns the circular convolution of two vectors. You can obtain the linear convolution of x and y using circular convolution with the following code. ccirc2 = cconv(x,y,6);