From: <car...@us...> - 2012-06-16 17:24:27
|
Revision: 10634 http://octave.svn.sourceforge.net/octave/?rev=10634&view=rev Author: carandraug Date: 2012-06-16 17:24:20 +0000 (Sat, 16 Jun 2012) Log Message: ----------- erfcinv: removed function (implemented in octave-core 3.8) Modified Paths: -------------- trunk/octave-forge/main/specfun/NEWS Removed Paths: ------------- trunk/octave-forge/main/specfun/inst/erfcinv.m Modified: trunk/octave-forge/main/specfun/NEWS =================================================================== --- trunk/octave-forge/main/specfun/NEWS 2012-06-16 15:40:34 UTC (rev 10633) +++ trunk/octave-forge/main/specfun/NEWS 2012-06-16 17:24:20 UTC (rev 10634) @@ -5,6 +5,11 @@ big_factorial lfactorial + ** The following functions have removed since they now are part of + Octave core: + + erfcinv + ** The function `combs' (just imported from the combinatorics package) has been deprecated in favour of `nchoosek' from Octave-core which should perform faster. The only difference is that it does accept Deleted: trunk/octave-forge/main/specfun/inst/erfcinv.m =================================================================== --- trunk/octave-forge/main/specfun/inst/erfcinv.m 2012-06-16 15:40:34 UTC (rev 10633) +++ trunk/octave-forge/main/specfun/inst/erfcinv.m 2012-06-16 17:24:20 UTC (rev 10634) @@ -1,27 +0,0 @@ -## Copyright (C) 2006 Sylvain Pelissier <syl...@gm...> -## -## 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} erfcinv (@var{x}) -## Compute the inverse complementary error function. -## @seealso{erfc,erf,erfinv} -## @end deftypefn - -function y = erfcinv(x) - if (nargin != 1) - print_usage; - endif - y = erfinv(1-x); -endfunction This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |