changeset 192:f1e601cc916d danieleb

removed error check for wLength
author Daniele Barchiesi <daniele.barchiesi@eecs.qmul.ac.uk>
date Thu, 01 Mar 2012 16:57:51 +0000
parents 8fc38e8df8c6
children cc540df790f4
files util/classes/@audio/buffer.m
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/util/classes/@audio/buffer.m	Fri Jan 27 13:18:50 2012 +0000
+++ b/util/classes/@audio/buffer.m	Thu Mar 01 16:57:51 2012 +0000
@@ -7,7 +7,7 @@
 %% Check inputs & Defaults
 error(nargchk(2, 5, nargin, 'struct'));
 if rem(length(obj.s),wLength)
-	error('The wLength must be an integer divisor of the signal length!'); 
+% 	error('The wLength must be an integer divisor of the signal length!'); 
 end
 if ~exist('overlap','var') || isempty(overlap), overlap = 0; end
 if ~exist('method','var') || isempty(method), method = 'standard'; end