view general/numerical/zeromean.m @ 42:ae596261e75f

Various fixes and development to audio handling
author samer
date Tue, 02 Dec 2014 14:51:13 +0000
parents 8476b3d9d295
children
line wrap: on
line source
% zeromean - additive normalisation to zero mean
%
% zeromean :: 
%    [D:[[E]]] ~'E dimensional array of size D', 
%    1..D      ~'dimension to normalise along' 
% -> [D] ~'shifted data'.
function x=zeromean(x,dim), x=addnorm(@(y)mean(y,dim),x); end