source: trunk/toolbox/normalisation.m @ 33

Last change on this file since 33 was 33, checked in by jmignot, 15 years ago

repertoire toolbox/

File size: 107 bytes
Line 
1function y = normalisation(serie);
2
3serie = serie - mean(serie);
4serie = serie / std(serie,1);
5
6y = serie;
Note: See TracBrowser for help on using the repository browser.