annotate signals/mixdown.m @ 13:03694e5c8365

Reorganised some high order list functions to correct class-based method dispatch; fixed some docs.
author samer
date Wed, 16 Jan 2013 12:12:34 +0000
parents 289445d368a7
children
rev   line source
samer@1 1 function y=mixdown(x),
samer@1 2 cin=channels(x);
samer@1 3 y=sigmap(@mix,x,@(c)1);
samer@1 4 function z=mix(w), z=sum(w,1)/cin; end
samer@1 5 end