www.gusucode.com > matlab 案例源码 matlab代码程序 > matlab/MovingMedianOfMatrixExample.m

    %% Moving Median of Matrix
% Compute the three-point centered moving median for each row of a matrix.
% The window starts on the first row, slides horizontally to the end of the
% row, then moves to the second row, and so on.  The dimension argument is
% two, which slides the window across the columns of |A|.
A = [4 8 6; -1 -2 -3; -1 3 4]

%%
M = movmedian(A,3,2)