diff scripts/signal/freqz.m @ 6653:673686daec87

[project @ 2007-05-22 15:36:09 by jwe]
author jwe
date Tue, 22 May 2007 15:36:10 +0000
parents 34f96dd5441b
children 93c65f2a5668
line wrap: on
line diff
--- a/scripts/signal/freqz.m	Tue May 22 08:07:33 2007 +0000
+++ b/scripts/signal/freqz.m	Tue May 22 15:36:10 2007 +0000
@@ -128,7 +128,7 @@
   elseif (strcmp (region, "whole"))
     f = Fs * (0:n-1)' / n;
     ## polyval(fliplr(P),exp(jw)) is O(p n) and fft(x) is O(n log(n)),
-    ## where p is the order of the the polynomial P.  For small p it
+    ## where p is the order of the polynomial P.  For small p it
     ## would be faster to use polyval but in practice the overhead for
     ## polyval is much higher and the little bit of time saved isn't
     ## worth the extra code.