]> AND Private Git Repository - these_gilles.git/blob - SFF/Training/removeDC.m
Logo AND Algorithmique Numérique Distribuée

Private GIT Repository
v1.2 19 décembre
[these_gilles.git] / SFF / Training / removeDC.m
1 function Y=removeDC(X)
2
3 % Subtract local mean value from each patch
4
5 Y = X-ones(size(X,1),1)*mean(X);
6
7 return;