diff dsp/synth/unbuffer_nu.m @ 36:9e7be347b3a0

Renamed sequence classes to avoid clashes with seq methods; Fixed default slicing dimension while retaining behaviour of window.m; Updated use of sequences in dsp/synth.
author samer
date Thu, 24 Jan 2013 14:51:23 +0000
parents c75bb62b90a9
children
line wrap: on
line diff
--- a/dsp/synth/unbuffer_nu.m	Mon Jan 21 11:01:45 2013 +0000
+++ b/dsp/synth/unbuffer_nu.m	Thu Jan 24 14:51:23 2013 +0000
@@ -6,7 +6,7 @@
 % -> seq([[1,_]])  ~'sequence of de-overlapped frames'.
 
 function Y=unbuffer_nu(X,hop)
-	Y=zipaccum(@olap,{hop,X},[]);
+	Y=zipaccum(@olap,[],hop,X);
 
 	function [y,s1]=olap(hop,x,s)
 		ls=length(s);