normalize.m
上传用户:speoil
上传日期:2022-06-23
资源大小:224k
文件大小:0k
源码类别:

波变换

开发平台:

Matlab

  1. % This function removes the DC component and normalizes wrt the max abs value
  2. function t1 = normalize(t1);
  3. %t1 = dotnorm(t1-mean(t1));
  4. t1=t1;   % By Sheraz Khan just to test