How to use Xcorr in Matlab?
r = xcorr( x ) returns the autocorrelation sequence of x . If x is a matrix, then r is a matrix whose columns contain the autocorrelation and cross-correlation sequences for all combinations of the columns of x . r = xcorr(___, maxlag ) limits the lag range from -maxlag to maxlag for either of the previous syntaxes.
How to remove noise from signal in matlab?
You can use linear filtering to remove certain types of noise. Certain filters, such as averaging or Gaussian filters, are appropriate for this purpose. For example, an averaging filter is useful for removing grain noise from a photograph.