From: <car...@us...> - 2011-11-05 13:45:57
|
Revision: 8994 http://octave.svn.sourceforge.net/octave/?rev=8994&view=rev Author: carandraug Date: 2011-11-05 13:45:50 +0000 (Sat, 05 Nov 2011) Log Message: ----------- signal package: added copyright word to public domain notice so that octave's get help don'i confuse it with help text block Modified Paths: -------------- trunk/octave-forge/main/signal/inst/downsample.m trunk/octave-forge/main/signal/inst/dst.m trunk/octave-forge/main/signal/inst/flattopwin.m trunk/octave-forge/main/signal/inst/idst.m trunk/octave-forge/main/signal/inst/upsample.m Modified: trunk/octave-forge/main/signal/inst/downsample.m =================================================================== --- trunk/octave-forge/main/signal/inst/downsample.m 2011-11-05 08:55:51 UTC (rev 8993) +++ trunk/octave-forge/main/signal/inst/downsample.m 2011-11-05 13:45:50 UTC (rev 8994) @@ -1,4 +1,4 @@ -## Author: Paul Kienzle <pki...@us...> +## Copyright (C) 2007 Paul Kienzle <pki...@us...> ## This function is public domain ## -*- texinfo -*- @@ -36,4 +36,3 @@ %!assert(downsample([1,2;3,4;5,6;7,8;9,10],2),[1,2;5,6;9,10]); %!assert(downsample([1,2,3,4,5],2,1),[2,4]); %!assert(downsample([1,2;3,4;5,6;7,8;9,10],2,1),[3,4;7,8]); - Modified: trunk/octave-forge/main/signal/inst/dst.m =================================================================== --- trunk/octave-forge/main/signal/inst/dst.m 2011-11-05 08:55:51 UTC (rev 8993) +++ trunk/octave-forge/main/signal/inst/dst.m 2011-11-05 13:45:50 UTC (rev 8994) @@ -1,7 +1,5 @@ -## Author: Paul Kienzle <pki...@us...> -## 2006-12-05 -## * initial release -## This program is public domain +## Copyright (C) 2006 Paul Kienzle <pki...@us...> +## This function is public domain ## -*- texinfo -*- ## @deftypefn {Function File} @var{y} = dst (@var{x}) Modified: trunk/octave-forge/main/signal/inst/flattopwin.m =================================================================== --- trunk/octave-forge/main/signal/inst/flattopwin.m 2011-11-05 08:55:51 UTC (rev 8993) +++ trunk/octave-forge/main/signal/inst/flattopwin.m 2011-11-05 13:45:50 UTC (rev 8994) @@ -1,4 +1,5 @@ -## This program is public domain. +## Copyright (C) 2004 Paul Kienzle <pki...@us...> +## This function is public domain ## flattopwin(n, [periodic|symmetric]) ## Modified: trunk/octave-forge/main/signal/inst/idst.m =================================================================== --- trunk/octave-forge/main/signal/inst/idst.m 2011-11-05 08:55:51 UTC (rev 8993) +++ trunk/octave-forge/main/signal/inst/idst.m 2011-11-05 13:45:50 UTC (rev 8994) @@ -1,8 +1,5 @@ -## Author: Paul Kienzle <pki...@us...> -## 2006-12-05 -## * initial release -## -## This program is public domain +## Copyright (C) 2006 Paul Kienzle <pki...@us...> +## This function is public domain ## -*- texinfo -*- ## @deftypefn {Function File} @var{y} = idst (@var{x}) @@ -13,6 +10,7 @@ ## columns of the the matrix. ## @end deftypefn ## @seealso{dst} + function x = idst (y, n) if (nargin < 1 || nargin > 2) Modified: trunk/octave-forge/main/signal/inst/upsample.m =================================================================== --- trunk/octave-forge/main/signal/inst/upsample.m 2011-11-05 08:55:51 UTC (rev 8993) +++ trunk/octave-forge/main/signal/inst/upsample.m 2011-11-05 13:45:50 UTC (rev 8994) @@ -1,4 +1,4 @@ -## Author: Paul Kienzle <pki...@us...> +## Copyright (C) 2007 Paul Kienzle <pki...@us...> ## This function is public domain ## -*- texinfo -*- This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |