<< db2pow | Signal Processing | hamming >> |
Y = filter2(H, X) |
Y = filter2(H, X, shape) |
coefficients of rational transfer function.
input data.
'same' (default), 'valid' or 'full'.
result: 2-D digital filter.
Y = filter2(H, X) applies a finite impulse response filter to a matrix of data X according to coefficients in a matrix H.
A = zeros(10);
A(3:7, 3:7) = ones(5);
H = [1 2 1; 0 0 0; -1 -2 -1];
R = filter2(H, A, 'valid')
Version | Description |
---|---|
1.0.0 | initial version |
Allan CORNET