From: <car...@us...> - 2011-11-11 22:38:30
|
Revision: 9067 http://octave.svn.sourceforge.net/octave/?rev=9067&view=rev Author: carandraug Date: 2011-11-11 22:38:23 +0000 (Fri, 11 Nov 2011) Log Message: ----------- updating pkienzle e-mail address Modified Paths: -------------- trunk/octave-forge/extra/engine/src/Makefile trunk/octave-forge/extra/graceplot/inst/alternatives/print.m trunk/octave-forge/main/signal/inst/filtfilt.m trunk/octave-forge/main/signal/inst/impz.m trunk/octave-forge/main/signal/inst/kaiser.m trunk/octave-forge/main/signal/inst/sftrans.m trunk/octave-forge/main/signal/inst/xcorr.m trunk/octave-forge/main/signal/inst/xcorr2.m trunk/octave-forge/main/signal/src/medfilt1.cc trunk/octave-forge/main/struct/inst/setfields.m Modified: trunk/octave-forge/extra/engine/src/Makefile =================================================================== --- trunk/octave-forge/extra/engine/src/Makefile 2011-11-11 19:35:52 UTC (rev 9066) +++ trunk/octave-forge/extra/engine/src/Makefile 2011-11-11 22:38:23 UTC (rev 9067) @@ -2,7 +2,7 @@ # # Copyright (C) 1998 by Jesse Bennett. # -# 2000-11-23: Paul Kienzle (pki...@ki...) +# 2000-11-23: Paul Kienzle (pki...@us...) # - added -D_BSD_SOURCE to the compile options so mknod could be found # 2001-09-19 Paul Kienzle # - use default $(CC), $(AR) and $(RANLIB) Modified: trunk/octave-forge/extra/graceplot/inst/alternatives/print.m =================================================================== --- trunk/octave-forge/extra/graceplot/inst/alternatives/print.m 2011-11-11 19:35:52 UTC (rev 9066) +++ trunk/octave-forge/extra/graceplot/inst/alternatives/print.m 2011-11-11 22:38:23 UTC (rev 9067) @@ -80,7 +80,7 @@ ## 2001-03-23 Laurent Mazet <ma...@cr...> ## * simplified interface: guess the device from the extension ## * font support -## 2001-03-25 Paul Kienzle <pki...@ki...> +## 2001-03-25 Paul Kienzle <pki...@us...> ## * add unwind_protect ## * use tmpnam to generate temporary name ## * move "set term" before "set output" as required by gnuplot @@ -99,7 +99,7 @@ ## * correct correl into corel ## * delete a irrelevant test ## * check for convert before choosing the ouput device -## 2001-03-31 Paul Kienzle <pki...@ki...> +## 2001-03-31 Paul Kienzle <pki...@us...> ## * use -Ffontname:size instead of -F"fontname size" ## * add font size support to fig option ## * update documentation Modified: trunk/octave-forge/main/signal/inst/filtfilt.m =================================================================== --- trunk/octave-forge/main/signal/inst/filtfilt.m 2011-11-11 19:35:52 UTC (rev 9066) +++ trunk/octave-forge/main/signal/inst/filtfilt.m 2011-11-11 22:38:23 UTC (rev 9067) @@ -31,7 +31,7 @@ ## plot(t,x,';data;',t,y,';filtfilt;',t,z,';filter;') ## Changelog: -## 2000 02 pki...@ki... +## 2000 02 pki...@us... ## - pad with zeros to load up the state vector on filter reverse. ## - add example ## 2007 12 po...@gn... Modified: trunk/octave-forge/main/signal/inst/impz.m =================================================================== --- trunk/octave-forge/main/signal/inst/impz.m 2011-11-11 19:35:52 UTC (rev 9066) +++ trunk/octave-forge/main/signal/inst/impz.m 2011-11-11 22:38:23 UTC (rev 9067) @@ -25,7 +25,7 @@ ## ## See also: freqz, zplane -## 1999 pki...@ki... +## 1999 pki...@us... ## - if nargout=0, produce plot and don't set return values ## TODO: Call equivalent function from control toolbox since it is Modified: trunk/octave-forge/main/signal/inst/kaiser.m =================================================================== --- trunk/octave-forge/main/signal/inst/kaiser.m 2011-11-11 19:35:52 UTC (rev 9066) +++ trunk/octave-forge/main/signal/inst/kaiser.m 2011-11-11 22:38:23 UTC (rev 9067) @@ -32,7 +32,7 @@ ## Author: Kurt Hornik <Kur...@ci...> ## Description: Coefficients of the Kaiser window -## 2000-02 Paul Kienzle (pki...@ki...) +## 2000-02 Paul Kienzle (pki...@us...) ## use besseli rather than jybess ## note, although Oppenheim & Schafer, 2nd edition has a formula ## which looks completely different than the one herein, it gives Modified: trunk/octave-forge/main/signal/inst/sftrans.m =================================================================== --- trunk/octave-forge/main/signal/inst/sftrans.m 2011-11-11 19:35:52 UTC (rev 9066) +++ trunk/octave-forge/main/signal/inst/sftrans.m 2011-11-11 22:38:23 UTC (rev 9067) @@ -86,12 +86,12 @@ ## Author: Paul Kienzle <pki...@us...> -## 2000-03-01 pki...@ki... +## 2000-03-01 pki...@us... ## leave transformed Sg as a complex value since cheby2 blows up ## otherwise (but only for odd-order low-pass filters). bilinear ## will return Zg as real, so there is no visible change to the ## user of the IIR filter design functions. -## 2001-03-09 pki...@ki... +## 2001-03-09 pki...@us... ## return real Sg; don't know what to do for imaginary filters function [Sz, Sp, Sg] = sftrans(Sz, Sp, Sg, W, stop) Modified: trunk/octave-forge/main/signal/inst/xcorr.m =================================================================== --- trunk/octave-forge/main/signal/inst/xcorr.m 2011-11-11 19:35:52 UTC (rev 9066) +++ trunk/octave-forge/main/signal/inst/xcorr.m 2011-11-11 22:38:23 UTC (rev 9067) @@ -104,12 +104,12 @@ ## Results are now returned in reverse order of before. ## The function is now compatible with Matlab (and with f.i. ## "Digital Signal Processing" by Proakis and Manolakis). -## 2000-03 pki...@ki... +## 2000-03 pki...@us... ## - use fft instead of brute force to compute correlations ## - allow row or column vectors as input, returning same ## - compute cross-correlations on columns of matrix X ## - compute complex correlations consitently with matlab -## 2000-04 pki...@ki... +## 2000-04 pki...@us... ## - fix test for real return value ## 2001-02-24 Paul Kienzle ## - remove all but one loop Modified: trunk/octave-forge/main/signal/inst/xcorr2.m =================================================================== --- trunk/octave-forge/main/signal/inst/xcorr2.m 2011-11-11 19:35:52 UTC (rev 9066) +++ trunk/octave-forge/main/signal/inst/xcorr2.m 2011-11-11 22:38:23 UTC (rev 9067) @@ -29,7 +29,7 @@ ## none - no scaling (this is the default). ## Author: Dave Cogdell <cog...@as...> -## 2000-05-02 Paul Kienzle <pki...@ki...> +## 2000-05-02 Paul Kienzle <pki...@us...> ## * joined R. Johnson's xcorr2f.m and Dave Cogdell's xcorr2x.m ## * adapted for Octave ## 2001-01-15 Paul Kienzle @@ -60,7 +60,7 @@ c = conv2 (a, conj (b (mb:-1:1, nb:-1:1))); ## bias routines by Dave Cogdell (cog...@as...) - ## optimized by Paul Kienzle (pki...@ki...) + ## optimized by Paul Kienzle (pki...@us...) if strcmp(lower(biasflag), 'biased'), c = c / ( min ([ma, mb]) * min ([na, nb]) ); elseif strcmp(lower(biasflag), 'unbiased'), Modified: trunk/octave-forge/main/signal/src/medfilt1.cc =================================================================== --- trunk/octave-forge/main/signal/src/medfilt1.cc 2011-11-11 19:35:52 UTC (rev 9066) +++ trunk/octave-forge/main/signal/src/medfilt1.cc 2011-11-11 22:38:23 UTC (rev 9067) @@ -8,7 +8,7 @@ * Mar 2000 - Kai Habel (kah...@li...) * Change: ColumnVector x=arg(i).vector_value(); * to: ColumnVector x=ColumnVector(arg(i).vector_value()); - * Oct 2000 - Paul Kienzle (pki...@ki...) + * Oct 2000 - Paul Kienzle (pki...@us...) * rewrite to ignore NaNs rather than replacing them with zero * extend to handle matrix arguments */ Modified: trunk/octave-forge/main/struct/inst/setfields.m =================================================================== --- trunk/octave-forge/main/struct/inst/setfields.m 2011-11-11 19:35:52 UTC (rev 9066) +++ trunk/octave-forge/main/struct/inst/setfields.m 2011-11-11 22:38:23 UTC (rev 9067) @@ -23,7 +23,7 @@ ## Author: Etienne Grossmann <et...@cs...> ## Last modified: January 2000 -## November 2000: Paul Kienzle <pki...@ki...> +## November 2000: Paul Kienzle <pki...@us...> ## return error rather than trapping to keyboard function s = setfields(s,varargin) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |