view 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
line wrap: on
line source
function y=mixdown(x), 
	cin=channels(x);
	y=sigmap(@mix,x,@(c)1);
	function z=mix(w), z=sum(w,1)/cin; end
end