Global Index (all files) (short | long) | Local Index (files in subdir) (short | long)
y = rm_mean2 ( x ) ;
function y = rm_mean2 ( x ) ;
| This function calls | This function is called by |
|---|---|
function y = rm_mean2 ( x ) ;
[m,n]=size(x);
if m==1;
y = x - mean2(x)*ones(1,n);
else;
y = x - ones(m,1)*mean2(x);
end