From: <car...@us...> - 2011-11-05 15:05:26
|
Revision: 8997 http://octave.svn.sourceforge.net/octave/?rev=8997&view=rev Author: carandraug Date: 2011-11-05 15:05:19 +0000 (Sat, 05 Nov 2011) Log Message: ----------- signal: add copyright word to publib domain notice so octave does confuse it with help text Modified Paths: -------------- trunk/octave-forge/main/signal/NEWS trunk/octave-forge/main/signal/inst/fwhm.m trunk/octave-forge/main/signal/inst/square.m Modified: trunk/octave-forge/main/signal/NEWS =================================================================== --- trunk/octave-forge/main/signal/NEWS 2011-11-05 14:03:07 UTC (rev 8996) +++ trunk/octave-forge/main/signal/NEWS 2011-11-05 15:05:19 UTC (rev 8997) @@ -1,5 +1,12 @@ Summary of important user-visible changes for releases of the signal package + * Minor fixes on help text in: + dst + idst + flattopwin + downsample + upsample + =============================================================================== signal-1.1.0 Release Date: 2011-11-04 Release Manager: Juan Pablo Carbajal =============================================================================== Modified: trunk/octave-forge/main/signal/inst/fwhm.m =================================================================== --- trunk/octave-forge/main/signal/inst/fwhm.m 2011-11-05 14:03:07 UTC (rev 8996) +++ trunk/octave-forge/main/signal/inst/fwhm.m 2011-11-05 15:05:19 UTC (rev 8997) @@ -1,8 +1,7 @@ -%% Compatibility: Octave 3.x, Matlab -%% Author: Petr Mikulik -%% Version: 23. 7. 2009 -%% This program is public domain. +## Copyright (C) 2009 Petr Mikulik +## This program is public domain + %% Compute peak full-width at half maximum (FWHM) or at another level of peak %% maximum for vector or matrix data y, optionally sampled as y(x). If y is %% a matrix, return FWHM for each column as a row vector. @@ -32,6 +31,7 @@ %% Return 0 if FWHM does not exist (e.g. monotonous function or the function %% does not cut horizontal line at rlevel*max(y) or rlevel*(max(y)+min(y)) or %% alevel, respectively). +%% Compatibility: Octave 3.x, Matlab function myfwhm = fwhm (y, varargin) Modified: trunk/octave-forge/main/signal/inst/square.m =================================================================== --- trunk/octave-forge/main/signal/inst/square.m 2011-11-05 14:03:07 UTC (rev 8996) +++ trunk/octave-forge/main/signal/inst/square.m 2011-11-05 15:05:19 UTC (rev 8997) @@ -1,7 +1,5 @@ -## 2006-04-07 Paul Kienzle <paulkienzle@Avocado.local> -## Author: Paul Kienzle <paulkienzle@Avocado.local> -## -## This program is public domain. +## Copyright (C) 2006 Paul Kienzle <paulkienzle@Avocado.local> +## This function is public domain ## -*- texinfo -*- ## @deftypefn {Function File} {@var{s} =} square(@var{t}, @var{duty}) @@ -11,9 +9,11 @@ ## If @var{duty} is specified, the square wave is +1 for ## that portion of the time. ## +## @verbatim ## on time ## duty cycle = ------------------ ## on time + off time +## @end verbatim ## ## @seealso{cos, sawtooth, sin, tripuls} ## @end deftypefn This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |