From: <ha...@us...> - 2010-03-06 09:06:30
|
Revision: 7004 http://octave.svn.sourceforge.net/octave/?rev=7004&view=rev Author: hauberg Date: 2010-03-06 09:06:24 +0000 (Sat, 06 Mar 2010) Log Message: ----------- Remove 'cordfilt2' as it has been deprecated for some time now Modified Paths: -------------- trunk/octave-forge/main/image/INDEX Removed Paths: ------------- trunk/octave-forge/main/image/inst/cordflt2.m Modified: trunk/octave-forge/main/image/INDEX =================================================================== --- trunk/octave-forge/main/image/INDEX 2010-03-06 09:05:33 UTC (rev 7003) +++ trunk/octave-forge/main/image/INDEX 2010-03-06 09:06:24 UTC (rev 7004) @@ -50,7 +50,6 @@ medfilt2 ordfilt2 ordfiltn - cordflt2 uintlut stretchlim makelut applylut Deleted: trunk/octave-forge/main/image/inst/cordflt2.m =================================================================== --- trunk/octave-forge/main/image/inst/cordflt2.m 2010-03-06 09:05:33 UTC (rev 7003) +++ trunk/octave-forge/main/image/inst/cordflt2.m 2010-03-06 09:06:24 UTC (rev 7004) @@ -1,28 +0,0 @@ -## Copyright (C) 2008 Soren Hauberg -## -## This program is free software; you can redistribute it and/or modify -## it under the terms of the GNU General Public License as published by -## the Free Software Foundation; either version 3 of the License, or -## (at your option) any later version. -## -## This program is distributed in the hope that it will be useful, -## but WITHOUT ANY WARRANTY; without even the implied warranty of -## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -## GNU General Public License for more details. -## -## You should have received a copy of the GNU General Public License -## along with this program; If not, see <http://www.gnu.org/licenses/>. - -## -*- texinfo -*- -## @deftypefn {Function File} cordflt2(@var{A}, @var{nth}, @var{domain}, @var{S}) -## Implementation of two-dimensional ordered filtering. This function has been -## deprecated and should NOT be used. Instead use @code{ordfilt2}. -## @seealso{ordfilt2} -## @end deftypefn - -function retval = cordflt2(A, nth, domain, S) - warning(["cordflt2: this function is deprecated and will be removed in upcoming " - "releases. Use 'ordfilt2' instead."]); - - retval = __spatial_filtering__ (A, domain, "ordered", S, nth); -endfunction This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |