Mercurial > hg > ishara
view general/numerical/zeromax.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
% zeromax - additive normalisation so max value us zero % % zeromax :: % [D:[[E]]] ~'E dimensional array of size D', % 1..D ~'dimension to normalise along' % -> [D] ~'shifted data'. % % non-finite values are ignored. Dimension defaults to 1. function [y,m]=zeromax(x,dim), x=addnorm(@(y)max(y,[],dim),x); end