Index: beta_cdf.m =================================================================== RCS file: /cvs/octave/scripts/deprecated/beta_cdf.m,v retrieving revision 1.2 diff -u -r1.2 beta_cdf.m --- beta_cdf.m 23 Aug 2005 18:38:27 -0000 1.2 +++ beta_cdf.m 20 Jan 2006 21:26:06 -0000 @@ -29,6 +29,9 @@ function cdf = beta_cdf (varargin) + __warn_deprecated__ ("beta_cdf", "betacdf") + + cdf = betacdf (varargin{:}); endfunction Index: beta_inv.m =================================================================== RCS file: /cvs/octave/scripts/deprecated/beta_inv.m,v retrieving revision 1.2 diff -u -r1.2 beta_inv.m --- beta_inv.m 23 Aug 2005 18:38:27 -0000 1.2 +++ beta_inv.m 20 Jan 2006 21:26:06 -0000 @@ -29,6 +29,9 @@ function inv = beta_inv (varargin) + __warn_deprecated__ ("beta_inv", "betainv") + + inv = betainv (varargin{:}); endfunction Index: beta_pdf.m =================================================================== RCS file: /cvs/octave/scripts/deprecated/beta_pdf.m,v retrieving revision 1.2 diff -u -r1.2 beta_pdf.m --- beta_pdf.m 23 Aug 2005 18:38:27 -0000 1.2 +++ beta_pdf.m 20 Jan 2006 21:26:06 -0000 @@ -28,6 +28,9 @@ function pdf = beta_pdf (varargin) + __warn_deprecated__ ("beta_pdf", "betapdf") + + pdf = betapdf (varargin{:}); endfunction Index: beta_rnd.m =================================================================== RCS file: /cvs/octave/scripts/deprecated/beta_rnd.m,v retrieving revision 1.2 diff -u -r1.2 beta_rnd.m --- beta_rnd.m 23 Aug 2005 18:38:27 -0000 1.2 +++ beta_rnd.m 20 Jan 2006 21:26:06 -0000 @@ -34,6 +34,9 @@ function rnd = beta_rnd (varargin) + __warn_deprecated__ ("beta_rnd", "betarnd") + + rnd = betarnd (varargin{:}); endfunction Index: binomial_cdf.m =================================================================== RCS file: /cvs/octave/scripts/deprecated/binomial_cdf.m,v retrieving revision 1.2 diff -u -r1.2 binomial_cdf.m --- binomial_cdf.m 23 Aug 2005 18:38:27 -0000 1.2 +++ binomial_cdf.m 20 Jan 2006 21:26:06 -0000 @@ -28,6 +28,9 @@ function cdf = binomial_cdf (varargin) + __warn_deprecated__ ("binomial_cdf", "binocdf") + + cdf = binocdf (varargin{:}); endfunction Index: binomial_inv.m =================================================================== RCS file: /cvs/octave/scripts/deprecated/binomial_inv.m,v retrieving revision 1.2 diff -u -r1.2 binomial_inv.m --- binomial_inv.m 23 Aug 2005 18:38:27 -0000 1.2 +++ binomial_inv.m 20 Jan 2006 21:26:07 -0000 @@ -28,6 +28,9 @@ function inv = binomial_inv (varargin) + __warn_deprecated__ ("binomial_inv", "binoinv") + + inv = binoinv (varargin{:}); endfunction Index: binomial_pdf.m =================================================================== RCS file: /cvs/octave/scripts/deprecated/binomial_pdf.m,v retrieving revision 1.2 diff -u -r1.2 binomial_pdf.m --- binomial_pdf.m 23 Aug 2005 18:38:27 -0000 1.2 +++ binomial_pdf.m 20 Jan 2006 21:26:07 -0000 @@ -29,6 +29,9 @@ function pdf = binomial_pdf (varargin) + __warn_deprecated__ ("binomial_pdf", "binopdf") + + pdf = binopdf (varargin{:}); endfunction Index: binomial_rnd.m =================================================================== RCS file: /cvs/octave/scripts/deprecated/binomial_rnd.m,v retrieving revision 1.2 diff -u -r1.2 binomial_rnd.m --- binomial_rnd.m 23 Aug 2005 18:38:27 -0000 1.2 +++ binomial_rnd.m 20 Jan 2006 21:26:07 -0000 @@ -34,6 +34,9 @@ function rnd = binomial_rnd (varargin) + __warn_deprecated__ ("binomial_rnd", "binornd") + + rnd = binornd (varargin{:}); endfunction Index: chisquare_cdf.m =================================================================== RCS file: /cvs/octave/scripts/deprecated/chisquare_cdf.m,v retrieving revision 1.1 diff -u -r1.1 chisquare_cdf.m --- chisquare_cdf.m 13 Jul 2005 17:53:49 -0000 1.1 +++ chisquare_cdf.m 20 Jan 2006 21:26:07 -0000 @@ -29,6 +29,9 @@ function cdf = chisquare_cdf (varargin) + __warn_deprecated__ ("chisquare_cdf", "chi2cdf") + + cdf = chi2cdf (varargin{:}); endfunction Index: chisquare_inv.m =================================================================== RCS file: /cvs/octave/scripts/deprecated/chisquare_inv.m,v retrieving revision 1.1 diff -u -r1.1 chisquare_inv.m --- chisquare_inv.m 13 Jul 2005 17:53:49 -0000 1.1 +++ chisquare_inv.m 20 Jan 2006 21:26:07 -0000 @@ -29,6 +29,9 @@ function inv = chisquare_inv (varargin) + __warn_deprecated__ ("chisquare_inv", "chi2inv") + + inv = chi2inv (varargin{:}); endfunction Index: chisquare_pdf.m =================================================================== RCS file: /cvs/octave/scripts/deprecated/chisquare_pdf.m,v retrieving revision 1.1 diff -u -r1.1 chisquare_pdf.m --- chisquare_pdf.m 13 Jul 2005 17:53:49 -0000 1.1 +++ chisquare_pdf.m 20 Jan 2006 21:26:07 -0000 @@ -29,6 +29,9 @@ function pdf = chisquare_pdf (varargin) + __warn_deprecated__ ("chisquare_pdf", "chi2pdf") + + pdf = chi2pdf (varargin{:}); endfunction Index: chisquare_rnd.m =================================================================== RCS file: /cvs/octave/scripts/deprecated/chisquare_rnd.m,v retrieving revision 1.2 diff -u -r1.2 chisquare_rnd.m --- chisquare_rnd.m 23 Aug 2005 18:38:27 -0000 1.2 +++ chisquare_rnd.m 20 Jan 2006 21:26:08 -0000 @@ -33,6 +33,9 @@ function rnd = chisquare_rnd (varargin) + __warn_deprecated__ ("chisquare_rnd", "chi2rnd") + + rnd = chi2rnd (varargin{:}); endfunction Index: com2str.m =================================================================== RCS file: /cvs/octave/scripts/deprecated/com2str.m,v retrieving revision 1.3 diff -u -r1.3 com2str.m --- com2str.m 26 Apr 2005 19:24:30 -0000 1.3 +++ com2str.m 20 Jan 2006 21:26:08 -0000 @@ -35,6 +35,8 @@ function retval = com2str (zz, flg) + __warn_deprecated__ ("com2str", "num2str") + if (nargin < 1 || nargin > 2) usage ("com2str (zz, flg)"); endif Index: exponential_cdf.m =================================================================== RCS file: /cvs/octave/scripts/deprecated/exponential_cdf.m,v retrieving revision 1.2 diff -u -r1.2 exponential_cdf.m --- exponential_cdf.m 23 Aug 2005 18:38:27 -0000 1.2 +++ exponential_cdf.m 20 Jan 2006 21:26:08 -0000 @@ -31,6 +31,9 @@ function cdf = exponential_cdf (varargin) + __warn_deprecated__ ("exponential_cdf", "expcdf") + + cdf = expcdf (varargin{:}); endfunction Index: exponential_inv.m =================================================================== RCS file: /cvs/octave/scripts/deprecated/exponential_inv.m,v retrieving revision 1.2 diff -u -r1.2 exponential_inv.m --- exponential_inv.m 23 Aug 2005 18:38:27 -0000 1.2 +++ exponential_inv.m 20 Jan 2006 21:26:08 -0000 @@ -29,6 +29,9 @@ function inv = exponential_inv (varargin) + __warn_deprecated__ ("exponential_inv", "expinv") + + inv = expinv (varargin{:}); endfunction Index: exponential_pdf.m =================================================================== RCS file: /cvs/octave/scripts/deprecated/exponential_pdf.m,v retrieving revision 1.2 diff -u -r1.2 exponential_pdf.m --- exponential_pdf.m 23 Aug 2005 18:38:27 -0000 1.2 +++ exponential_pdf.m 20 Jan 2006 21:26:08 -0000 @@ -28,6 +28,9 @@ function pdf = exponential_pdf (varargin) + __warn_deprecated__ ("exponential_pdf", "exppdf") + + pdf = exppdf (varargin{:}); endfunction Index: exponential_rnd.m =================================================================== RCS file: /cvs/octave/scripts/deprecated/exponential_rnd.m,v retrieving revision 1.2 diff -u -r1.2 exponential_rnd.m --- exponential_rnd.m 23 Aug 2005 18:38:27 -0000 1.2 +++ exponential_rnd.m 20 Jan 2006 21:26:08 -0000 @@ -34,6 +34,9 @@ function rnd = exponential_rnd (varargin) + __warn_deprecated__ ("exponential_rnd", "exprnd") + + rnd = exprnd (varargin{:}); endfunction Index: f_cdf.m =================================================================== RCS file: /cvs/octave/scripts/deprecated/f_cdf.m,v retrieving revision 1.2 diff -u -r1.2 f_cdf.m --- f_cdf.m 23 Aug 2005 18:38:27 -0000 1.2 +++ f_cdf.m 20 Jan 2006 21:26:08 -0000 @@ -29,6 +29,9 @@ function cdf = f_cdf (varargin) + __warn_deprecated__ ("f_cdf", "fcdf") + + cdf = fcdf (varargin{:}); endfunction Index: f_inv.m =================================================================== RCS file: /cvs/octave/scripts/deprecated/f_inv.m,v retrieving revision 1.2 diff -u -r1.2 f_inv.m --- f_inv.m 23 Aug 2005 18:38:27 -0000 1.2 +++ f_inv.m 20 Jan 2006 21:26:08 -0000 @@ -29,6 +29,9 @@ function inv = f_inv (varargin) + __warn_deprecated__ ("f_inv", "finv") + + inv = finv (varargin{:}); endfunction Index: f_pdf.m =================================================================== RCS file: /cvs/octave/scripts/deprecated/f_pdf.m,v retrieving revision 1.2 diff -u -r1.2 f_pdf.m --- f_pdf.m 23 Aug 2005 18:38:27 -0000 1.2 +++ f_pdf.m 20 Jan 2006 21:26:08 -0000 @@ -29,6 +29,9 @@ function pdf = f_pdf (varargin) + __warn_deprecated__ ("f_pdf", "fpdf") + + pdf = fpdf (varargin{:}); endfunction Index: f_rnd.m =================================================================== RCS file: /cvs/octave/scripts/deprecated/f_rnd.m,v retrieving revision 1.2 diff -u -r1.2 f_rnd.m --- f_rnd.m 23 Aug 2005 18:38:27 -0000 1.2 +++ f_rnd.m 20 Jan 2006 21:26:08 -0000 @@ -35,6 +35,9 @@ function rnd = f_rnd (varargin) + __warn_deprecated__ ("f_rnd", "frnd") + + rnd = frnd (varargin{:}); endfunction Index: gamma_cdf.m =================================================================== RCS file: /cvs/octave/scripts/deprecated/gamma_cdf.m,v retrieving revision 1.1 diff -u -r1.1 gamma_cdf.m --- gamma_cdf.m 13 Jul 2005 17:53:49 -0000 1.1 +++ gamma_cdf.m 20 Jan 2006 21:26:08 -0000 @@ -29,6 +29,9 @@ function cdf = gamma_cdf (varargin) + __warn_deprecated__ ("gamma_cdf", "gamcdf") + + cdf = gamcdf (varargin{:}); endfunction Index: gamma_inv.m =================================================================== RCS file: /cvs/octave/scripts/deprecated/gamma_inv.m,v retrieving revision 1.2 diff -u -r1.2 gamma_inv.m --- gamma_inv.m 23 Aug 2005 18:38:27 -0000 1.2 +++ gamma_inv.m 20 Jan 2006 21:26:08 -0000 @@ -29,6 +29,9 @@ function inv = gamma_inv (varargin) + __warn_deprecated__ ("gamma_inv", "gaminv") + + inv = gaminv (varargin{:}); endfunction Index: gamma_pdf.m =================================================================== RCS file: /cvs/octave/scripts/deprecated/gamma_pdf.m,v retrieving revision 1.1 diff -u -r1.1 gamma_pdf.m --- gamma_pdf.m 13 Jul 2005 17:53:49 -0000 1.1 +++ gamma_pdf.m 20 Jan 2006 21:26:08 -0000 @@ -29,6 +29,9 @@ function pdf = gamma_pdf (varargin) + __warn_deprecated__ ("gamma_pdf", "gampdf") + + pdf = gampdf (varargin{:}); endfunction Index: gamma_rnd.m =================================================================== RCS file: /cvs/octave/scripts/deprecated/gamma_rnd.m,v retrieving revision 1.2 diff -u -r1.2 gamma_rnd.m --- gamma_rnd.m 23 Aug 2005 18:38:27 -0000 1.2 +++ gamma_rnd.m 20 Jan 2006 21:26:08 -0000 @@ -34,6 +34,9 @@ function rnd = gamma_rnd (varargin) + __warn_deprecated__ ("gamma_rnd", "gamrnd") + + rnd = gamrnd (varargin{:}); endfunction Index: geometric_cdf.m =================================================================== RCS file: /cvs/octave/scripts/deprecated/geometric_cdf.m,v retrieving revision 1.2 diff -u -r1.2 geometric_cdf.m --- geometric_cdf.m 23 Aug 2005 18:38:27 -0000 1.2 +++ geometric_cdf.m 20 Jan 2006 21:26:08 -0000 @@ -28,6 +28,9 @@ function cdf = geometric_cdf (varargin) + __warn_deprecated__ ("geometric_cdf", "geocdf") + + cdf = geocdf (varargin{:}); endfunction Index: geometric_inv.m =================================================================== RCS file: /cvs/octave/scripts/deprecated/geometric_inv.m,v retrieving revision 1.2 diff -u -r1.2 geometric_inv.m --- geometric_inv.m 23 Aug 2005 18:38:27 -0000 1.2 +++ geometric_inv.m 20 Jan 2006 21:26:08 -0000 @@ -28,6 +28,9 @@ function inv = geometric_inv (varargin) + __warn_deprecated__ ("geometric_inv", "geoinv") + + inv = geoinv (varargin{:}); endfunction Index: geometric_pdf.m =================================================================== RCS file: /cvs/octave/scripts/deprecated/geometric_pdf.m,v retrieving revision 1.2 diff -u -r1.2 geometric_pdf.m --- geometric_pdf.m 23 Aug 2005 18:38:27 -0000 1.2 +++ geometric_pdf.m 20 Jan 2006 21:26:08 -0000 @@ -28,6 +28,9 @@ function pdf = geometric_pdf (varargin) + __warn_deprecated__ ("geometric_pdf", "geopdf") + + pdf = geopdf (varargin{:}); endfunction Index: geometric_rnd.m =================================================================== RCS file: /cvs/octave/scripts/deprecated/geometric_rnd.m,v retrieving revision 1.2 diff -u -r1.2 geometric_rnd.m --- geometric_rnd.m 23 Aug 2005 18:38:27 -0000 1.2 +++ geometric_rnd.m 20 Jan 2006 21:26:08 -0000 @@ -34,6 +34,9 @@ function rnd = geometric_rnd (varargin) + __warn_deprecated__ ("geometric_rnd", "geornd") + + rnd = geornd (varargin{:}); endfunction Index: hypergeometric_cdf.m =================================================================== RCS file: /cvs/octave/scripts/deprecated/hypergeometric_cdf.m,v retrieving revision 1.2 diff -u -r1.2 hypergeometric_cdf.m --- hypergeometric_cdf.m 23 Aug 2005 18:38:27 -0000 1.2 +++ hypergeometric_cdf.m 20 Jan 2006 21:26:08 -0000 @@ -35,6 +35,9 @@ function cdf = hypergeometric_cdf (varargin) + __warn_deprecated__ ("hypergeometric_cdf", "hygecdf") + + cdf = hygecdf (varargin{:}); endfunction Index: hypergeometric_inv.m =================================================================== RCS file: /cvs/octave/scripts/deprecated/hypergeometric_inv.m,v retrieving revision 1.2 diff -u -r1.2 hypergeometric_inv.m --- hypergeometric_inv.m 23 Aug 2005 18:38:27 -0000 1.2 +++ hypergeometric_inv.m 20 Jan 2006 21:26:08 -0000 @@ -32,6 +32,9 @@ function inv = hypergeometric_inv (varargin) + __warn_deprecated__ ("hypergeometric_inv", "hygeinv") + + inv = hygeinv (varargin{:}); endfunction Index: hypergeometric_pdf.m =================================================================== RCS file: /cvs/octave/scripts/deprecated/hypergeometric_pdf.m,v retrieving revision 1.2 diff -u -r1.2 hypergeometric_pdf.m --- hypergeometric_pdf.m 23 Aug 2005 18:38:27 -0000 1.2 +++ hypergeometric_pdf.m 20 Jan 2006 21:26:08 -0000 @@ -33,6 +33,9 @@ function pdf = hypergeometric_pdf (varargin) + __warn_deprecated__ ("hypergeometric_pdf", "hygepdf") + + pdf = hygepdf (varargin{:}); endfunction Index: hypergeometric_rnd.m =================================================================== RCS file: /cvs/octave/scripts/deprecated/hypergeometric_rnd.m,v retrieving revision 1.2 diff -u -r1.2 hypergeometric_rnd.m --- hypergeometric_rnd.m 13 Jul 2005 19:36:56 -0000 1.2 +++ hypergeometric_rnd.m 20 Jan 2006 21:26:08 -0000 @@ -35,6 +35,9 @@ function rnd = hypergeometric_rnd (N, m, t, n) + __warn_deprecated__ ("hypergeometric_rnd", "hygernd") + + switch (nargin) case 3 rnd = hygernd (m, t, N); Index: is_bool.m =================================================================== RCS file: /cvs/octave/scripts/deprecated/is_bool.m,v retrieving revision 1.2 diff -u -r1.2 is_bool.m --- is_bool.m 26 Apr 2005 19:24:30 -0000 1.2 +++ is_bool.m 20 Jan 2006 21:26:08 -0000 @@ -26,6 +26,9 @@ function retval = is_bool (varargin) + __warn_deprecated__ ("is_bool", "isbool") + + retval = isbool (varargin{:}); endfunction Index: is_complex.m =================================================================== RCS file: /cvs/octave/scripts/deprecated/is_complex.m,v retrieving revision 1.2 diff -u -r1.2 is_complex.m --- is_complex.m 26 Apr 2005 19:24:30 -0000 1.2 +++ is_complex.m 20 Jan 2006 21:26:08 -0000 @@ -26,6 +26,9 @@ function retval = is_complex (varargin) + __warn_deprecated__ ("is_complex", "iscomplex") + + retval = iscomplex (varargin{:}); endfunction Index: is_global.m =================================================================== RCS file: /cvs/octave/scripts/deprecated/is_global.m,v retrieving revision 1.2 diff -u -r1.2 is_global.m --- is_global.m 26 Apr 2005 19:24:30 -0000 1.2 +++ is_global.m 20 Jan 2006 21:26:08 -0000 @@ -26,6 +26,9 @@ function retval = is_global (varargin) + __warn_deprecated__ ("is_global", "isglobal") + + retval = isglobal (varargin{:}); endfunction Index: is_list.m =================================================================== RCS file: /cvs/octave/scripts/deprecated/is_list.m,v retrieving revision 1.2 diff -u -r1.2 is_list.m --- is_list.m 26 Apr 2005 19:24:30 -0000 1.2 +++ is_list.m 20 Jan 2006 21:26:08 -0000 @@ -26,6 +26,9 @@ function retval = is_list (varargin) + __warn_deprecated__ ("is_list", "islist") + + retval = islist (varargin{:}); endfunction Index: is_matrix.m =================================================================== RCS file: /cvs/octave/scripts/deprecated/is_matrix.m,v retrieving revision 1.2 diff -u -r1.2 is_matrix.m --- is_matrix.m 26 Apr 2005 19:24:30 -0000 1.2 +++ is_matrix.m 20 Jan 2006 21:26:08 -0000 @@ -26,6 +26,9 @@ function retval = is_matrix (varargin) + __warn_deprecated__ ("is_matrix", "ismatrix") + + retval = ismatrix (varargin{:}); endfunction Index: is_scalar.m =================================================================== RCS file: /cvs/octave/scripts/deprecated/is_scalar.m,v retrieving revision 1.2 diff -u -r1.2 is_scalar.m --- is_scalar.m 26 Apr 2005 19:24:30 -0000 1.2 +++ is_scalar.m 20 Jan 2006 21:26:08 -0000 @@ -26,6 +26,9 @@ function retval = is_scalar (varargin) + __warn_deprecated__ ("is_scalar", "isscalar") + + retval = isscalar (varargin{:}); endfunction Index: is_square.m =================================================================== RCS file: /cvs/octave/scripts/deprecated/is_square.m,v retrieving revision 1.2 diff -u -r1.2 is_square.m --- is_square.m 26 Apr 2005 19:24:30 -0000 1.2 +++ is_square.m 20 Jan 2006 21:26:08 -0000 @@ -26,6 +26,9 @@ function retval = is_square (varargin) + __warn_deprecated__ ("is_square", "issquare") + + retval = issquare (varargin{:}); endfunction Index: is_stream.m =================================================================== RCS file: /cvs/octave/scripts/deprecated/is_stream.m,v retrieving revision 1.2 diff -u -r1.2 is_stream.m --- is_stream.m 26 Apr 2005 19:24:30 -0000 1.2 +++ is_stream.m 20 Jan 2006 21:26:08 -0000 @@ -26,6 +26,9 @@ function retval = is_stream (varargin) - retval = isstream(varargin{:}); + __warn_deprecated__ ("is_stream", "isstream") + + + retval = isstream (varargin{:}); endfunction Index: is_struct.m =================================================================== RCS file: /cvs/octave/scripts/deprecated/is_struct.m,v retrieving revision 1.2 diff -u -r1.2 is_struct.m --- is_struct.m 26 Apr 2005 19:24:30 -0000 1.2 +++ is_struct.m 20 Jan 2006 21:26:08 -0000 @@ -26,6 +26,9 @@ function retval = is_struct (varargin) + __warn_deprecated__ ("is_struct", "isstruct") + + retval = isstruct (varargin{:}); endfunction Index: is_symmetric.m =================================================================== RCS file: /cvs/octave/scripts/deprecated/is_symmetric.m,v retrieving revision 1.2 diff -u -r1.2 is_symmetric.m --- is_symmetric.m 26 Apr 2005 19:24:30 -0000 1.2 +++ is_symmetric.m 20 Jan 2006 21:26:08 -0000 @@ -26,6 +26,9 @@ function retval = is_symmetric (varargin) + __warn_deprecated__ ("is_symmetric", "issymmetric") + + retval = issymmetric (varargin{:}); endfunction Index: is_vector.m =================================================================== RCS file: /cvs/octave/scripts/deprecated/is_vector.m,v retrieving revision 1.2 diff -u -r1.2 is_vector.m --- is_vector.m 26 Apr 2005 19:24:30 -0000 1.2 +++ is_vector.m 20 Jan 2006 21:26:08 -0000 @@ -26,6 +26,9 @@ function retval = is_vector (varargin) + __warn_deprecated__ ("is_vector", "isvector") + + retval = isvector (varargin{:}); endfunction Index: isstr.m =================================================================== RCS file: /cvs/octave/scripts/deprecated/isstr.m,v retrieving revision 1.2 diff -u -r1.2 isstr.m --- isstr.m 26 Apr 2005 19:24:30 -0000 1.2 +++ isstr.m 20 Jan 2006 21:26:08 -0000 @@ -26,6 +26,9 @@ function retval = isstr (varargin) + __warn_deprecated__ ("isstr", "ischar") + + retval = ischar (varargin{:}); endfunction Index: lognormal_cdf.m =================================================================== RCS file: /cvs/octave/scripts/deprecated/lognormal_cdf.m,v retrieving revision 1.2 diff -u -r1.2 lognormal_cdf.m --- lognormal_cdf.m 23 Aug 2005 18:38:27 -0000 1.2 +++ lognormal_cdf.m 20 Jan 2006 21:26:08 -0000 @@ -33,6 +33,9 @@ function cdf = lognormal_cdf (varargin) + __warn_deprecated__ ("lognormal_cdf", "logncdf") + + cdf = logncdf (varargin{:}); endfunction Index: lognormal_inv.m =================================================================== RCS file: /cvs/octave/scripts/deprecated/lognormal_inv.m,v retrieving revision 1.2 diff -u -r1.2 lognormal_inv.m --- lognormal_inv.m 23 Aug 2005 18:38:27 -0000 1.2 +++ lognormal_inv.m 20 Jan 2006 21:26:09 -0000 @@ -33,6 +33,9 @@ function inv = lognormal_inv (varargin) + __warn_deprecated__ ("lognormal_inv", "logninv") + + inv = logninv (varargin{:}); endfunction Index: lognormal_pdf.m =================================================================== RCS file: /cvs/octave/scripts/deprecated/lognormal_pdf.m,v retrieving revision 1.2 diff -u -r1.2 lognormal_pdf.m --- lognormal_pdf.m 23 Aug 2005 18:38:27 -0000 1.2 +++ lognormal_pdf.m 20 Jan 2006 21:26:09 -0000 @@ -33,6 +33,9 @@ function pdf = lognormal_pdf (varargin) + __warn_deprecated__ ("lognormal_pdf", "lognpdf") + + pdf = lognpdf (varargin{:}); endfunction Index: lognormal_rnd.m =================================================================== RCS file: /cvs/octave/scripts/deprecated/lognormal_rnd.m,v retrieving revision 1.2 diff -u -r1.2 lognormal_rnd.m --- lognormal_rnd.m 23 Aug 2005 18:38:27 -0000 1.2 +++ lognormal_rnd.m 20 Jan 2006 21:26:09 -0000 @@ -34,6 +34,9 @@ function rnd = lognormal_rnd (varargin) + __warn_deprecated__ ("lognormal_rnd", "lognrnd") + + rnd = lognrnd (varargin{:}); endfunction Index: normal_cdf.m =================================================================== RCS file: /cvs/octave/scripts/deprecated/normal_cdf.m,v retrieving revision 1.1 diff -u -r1.1 normal_cdf.m --- normal_cdf.m 13 Jul 2005 17:53:49 -0000 1.1 +++ normal_cdf.m 20 Jan 2006 21:26:09 -0000 @@ -31,6 +31,9 @@ function cdf = normal_cdf (varargin) + __warn_deprecated__ ("normal_cdf", "normcdf") + + cdf = normcdf (varargin{:}); endfunction Index: normal_inv.m =================================================================== RCS file: /cvs/octave/scripts/deprecated/normal_inv.m,v retrieving revision 1.2 diff -u -r1.2 normal_inv.m --- normal_inv.m 23 Aug 2005 18:38:27 -0000 1.2 +++ normal_inv.m 20 Jan 2006 21:26:09 -0000 @@ -31,6 +31,9 @@ function inv = normal_inv (varargin) + __warn_deprecated__ ("normal_inv", "norminv") + + inv = norminv (varargin{:}); endfunction Index: normal_pdf.m =================================================================== RCS file: /cvs/octave/scripts/deprecated/normal_pdf.m,v retrieving revision 1.1 diff -u -r1.1 normal_pdf.m --- normal_pdf.m 13 Jul 2005 17:53:49 -0000 1.1 +++ normal_pdf.m 20 Jan 2006 21:26:09 -0000 @@ -31,6 +31,9 @@ function pdf = normal_pdf (varargin) + __warn_deprecated__ ("normal_pdf", "normpdf") + + pdf = normpdf (varargin{:}); endfunction Index: normal_rnd.m =================================================================== RCS file: /cvs/octave/scripts/deprecated/normal_rnd.m,v retrieving revision 1.2 diff -u -r1.2 normal_rnd.m --- normal_rnd.m 23 Aug 2005 18:38:27 -0000 1.2 +++ normal_rnd.m 20 Jan 2006 21:26:09 -0000 @@ -34,6 +34,9 @@ function rnd = normal_rnd (varargin) + __warn_deprecated__ ("normal_rnd", "normrnd") + + rnd = normrnd (varargin{:}); endfunction Index: poisson_cdf.m =================================================================== RCS file: /cvs/octave/scripts/deprecated/poisson_cdf.m,v retrieving revision 1.2 diff -u -r1.2 poisson_cdf.m --- poisson_cdf.m 23 Aug 2005 18:38:27 -0000 1.2 +++ poisson_cdf.m 20 Jan 2006 21:26:09 -0000 @@ -29,6 +29,9 @@ function cdf = poisson_cdf (varargin) + __warn_deprecated__ ("poisson_cdf", "poisscdf") + + cdf = poisscdf (varargin{:}); endfunction Index: poisson_inv.m =================================================================== RCS file: /cvs/octave/scripts/deprecated/poisson_inv.m,v retrieving revision 1.2 diff -u -r1.2 poisson_inv.m --- poisson_inv.m 23 Aug 2005 18:38:27 -0000 1.2 +++ poisson_inv.m 20 Jan 2006 21:26:09 -0000 @@ -29,6 +29,9 @@ function inv = poisson_inv (varargin) + __warn_deprecated__ ("poisson_inv", "poissinv") + + inv = poissinv (varargin{:}); endfunction Index: poisson_pdf.m =================================================================== RCS file: /cvs/octave/scripts/deprecated/poisson_pdf.m,v retrieving revision 1.2 diff -u -r1.2 poisson_pdf.m --- poisson_pdf.m 23 Aug 2005 18:38:27 -0000 1.2 +++ poisson_pdf.m 20 Jan 2006 21:26:09 -0000 @@ -28,6 +28,9 @@ function pdf = poisson_pdf (varargin) + __warn_deprecated__ ("poisson_pdf", "poisspdf") + + pdf = poisspdf (varargin{:}); endfunction Index: poisson_rnd.m =================================================================== RCS file: /cvs/octave/scripts/deprecated/poisson_rnd.m,v retrieving revision 1.2 diff -u -r1.2 poisson_rnd.m --- poisson_rnd.m 23 Aug 2005 18:38:27 -0000 1.2 +++ poisson_rnd.m 20 Jan 2006 21:26:09 -0000 @@ -32,6 +32,9 @@ function rnd = poisson_rnd (varargin) + __warn_deprecated__ ("poisson_rnd", "poissrnd") + + rnd = poissrnd (varargin{:}); endfunction Index: setstr.m =================================================================== RCS file: /cvs/octave/scripts/deprecated/setstr.m,v retrieving revision 1.2 diff -u -r1.2 setstr.m --- setstr.m 26 Apr 2005 19:24:30 -0000 1.2 +++ setstr.m 20 Jan 2006 21:26:10 -0000 @@ -26,6 +26,9 @@ function retval = setstr (varargin) + __warn_deprecated__ ("setstr", "char") + + retval = char (varargin{:}); endfunction Index: struct_contains.m =================================================================== RCS file: /cvs/octave/scripts/deprecated/struct_contains.m,v retrieving revision 1.2 diff -u -r1.2 struct_contains.m --- struct_contains.m 26 Apr 2005 19:24:30 -0000 1.2 +++ struct_contains.m 20 Jan 2006 21:26:10 -0000 @@ -26,6 +26,9 @@ function retval = struct_contains (varargin) + __warn_deprecated__ ("struct_contains", "isfield") + + retval = isfield (varargin{:}); endfunction Index: struct_elements.m =================================================================== RCS file: /cvs/octave/scripts/deprecated/struct_elements.m,v retrieving revision 1.2 diff -u -r1.2 struct_elements.m --- struct_elements.m 26 Apr 2005 19:24:30 -0000 1.2 +++ struct_elements.m 20 Jan 2006 21:26:10 -0000 @@ -26,6 +26,9 @@ function retval = struct_elements (varargin) + __warn_deprecated__ ("struct_elements", "char") + + retval = char (fieldnames (varargin{:})); endfunction Index: t_cdf.m =================================================================== RCS file: /cvs/octave/scripts/deprecated/t_cdf.m,v retrieving revision 1.2 diff -u -r1.2 t_cdf.m --- t_cdf.m 23 Aug 2005 18:38:27 -0000 1.2 +++ t_cdf.m 20 Jan 2006 21:26:10 -0000 @@ -29,6 +29,9 @@ function cdf = t_cdf (varargin) + __warn_deprecated__ ("t_cdf", "tcdf") + + cdf = tcdf (varargin{:}); endfunction Index: t_inv.m =================================================================== RCS file: /cvs/octave/scripts/deprecated/t_inv.m,v retrieving revision 1.2 diff -u -r1.2 t_inv.m --- t_inv.m 23 Aug 2005 18:38:27 -0000 1.2 +++ t_inv.m 20 Jan 2006 21:26:10 -0000 @@ -33,6 +33,9 @@ function inv = t_inv (varargin) + __warn_deprecated__ ("t_inv", "tinv") + + inv = tinv (varargin{:}); endfunction Index: t_pdf.m =================================================================== RCS file: /cvs/octave/scripts/deprecated/t_pdf.m,v retrieving revision 1.2 diff -u -r1.2 t_pdf.m --- t_pdf.m 23 Aug 2005 18:38:27 -0000 1.2 +++ t_pdf.m 20 Jan 2006 21:26:10 -0000 @@ -29,6 +29,9 @@ function pdf = t_pdf (varargin) + __warn_deprecated__ ("t_pdf", "tpdf") + + pdf = tpdf (varargin{:}); endfunction Index: t_rnd.m =================================================================== RCS file: /cvs/octave/scripts/deprecated/t_rnd.m,v retrieving revision 1.2 diff -u -r1.2 t_rnd.m --- t_rnd.m 23 Aug 2005 18:38:27 -0000 1.2 +++ t_rnd.m 20 Jan 2006 21:26:10 -0000 @@ -34,6 +34,9 @@ function rnd = t_rnd (varargin) + __warn_deprecated__ ("t_rnd", "t_rnd") + + rnd = t_rnd (varargin{:}); endfunction Index: uniform_cdf.m =================================================================== RCS file: /cvs/octave/scripts/deprecated/uniform_cdf.m,v retrieving revision 1.2 diff -u -r1.2 uniform_cdf.m --- uniform_cdf.m 23 Aug 2005 18:38:27 -0000 1.2 +++ uniform_cdf.m 20 Jan 2006 21:26:10 -0000 @@ -30,6 +30,9 @@ function cdf = uniform_cdf (varargin) + __warn_deprecated__ ("uniform_cdf", "unifcdf") + + cdf = unifcdf (varargin{:}); endfunction Index: uniform_inv.m =================================================================== RCS file: /cvs/octave/scripts/deprecated/uniform_inv.m,v retrieving revision 1.2 diff -u -r1.2 uniform_inv.m --- uniform_inv.m 23 Aug 2005 18:38:27 -0000 1.2 +++ uniform_inv.m 20 Jan 2006 21:26:10 -0000 @@ -30,6 +30,9 @@ function inv = uniform_inv (varargin) + __warn_deprecated__ ("uniform_inv", "unifinv") + + inv = unifinv (varargin{:}); endfunction Index: uniform_pdf.m =================================================================== RCS file: /cvs/octave/scripts/deprecated/uniform_pdf.m,v retrieving revision 1.2 diff -u -r1.2 uniform_pdf.m --- uniform_pdf.m 23 Aug 2005 18:38:27 -0000 1.2 +++ uniform_pdf.m 20 Jan 2006 21:26:10 -0000 @@ -30,6 +30,9 @@ function pdf = uniform_pdf (varargin) + __warn_deprecated__ ("uniform_pdf", "unifpdf") + + pdf = unifpdf (varargin{:}); endfunction Index: uniform_rnd.m =================================================================== RCS file: /cvs/octave/scripts/deprecated/uniform_rnd.m,v retrieving revision 1.2 diff -u -r1.2 uniform_rnd.m --- uniform_rnd.m 23 Aug 2005 18:38:28 -0000 1.2 +++ uniform_rnd.m 20 Jan 2006 21:26:10 -0000 @@ -33,6 +33,9 @@ function rnd = uniform_rnd (varargin) + __warn_deprecated__ ("uniform_rnd", "unifrnd") + + rnd = unifrnd (varargin{:}); endfunction Index: weibull_cdf.m =================================================================== RCS file: /cvs/octave/scripts/deprecated/weibull_cdf.m,v retrieving revision 1.2 diff -u -r1.2 weibull_cdf.m --- weibull_cdf.m 23 Aug 2005 18:38:28 -0000 1.2 +++ weibull_cdf.m 20 Jan 2006 21:26:10 -0000 @@ -36,6 +36,9 @@ function cdf = weibull_cdf (varargin) + __warn_deprecated__ ("weibull_cdf", "weibcdf") + + cdf = weibcdf (varargin{:}); endfunction Index: weibull_inv.m =================================================================== RCS file: /cvs/octave/scripts/deprecated/weibull_inv.m,v retrieving revision 1.2 diff -u -r1.2 weibull_inv.m --- weibull_inv.m 23 Aug 2005 18:38:28 -0000 1.2 +++ weibull_inv.m 20 Jan 2006 21:26:10 -0000 @@ -29,6 +29,9 @@ function inv = weibull_inv (varargin) + __warn_deprecated__ ("weibull_inv", "weibinv") + + inv = weibinv (varargin{:}); endfunction Index: weibull_pdf.m =================================================================== RCS file: /cvs/octave/scripts/deprecated/weibull_pdf.m,v retrieving revision 1.2 diff -u -r1.2 weibull_pdf.m --- weibull_pdf.m 23 Aug 2005 18:38:28 -0000 1.2 +++ weibull_pdf.m 20 Jan 2006 21:26:10 -0000 @@ -36,6 +36,9 @@ function pdf = weibull_pdf (varargin) + __warn_deprecated__ ("weibull_pdf", "weibpdf") + + pdf = weibpdf (varargin{:}); endfunction Index: weibull_rnd.m =================================================================== RCS file: /cvs/octave/scripts/deprecated/weibull_rnd.m,v retrieving revision 1.2 diff -u -r1.2 weibull_rnd.m --- weibull_rnd.m 23 Aug 2005 18:38:28 -0000 1.2 +++ weibull_rnd.m 20 Jan 2006 21:26:10 -0000 @@ -37,6 +37,9 @@ function rnd = weibull_rnd (varargin) - rnd = weibrnd(varargin{:}); + __warn_deprecated__ ("weibull_rnd", "weibrnd") + + + rnd = weibrnd (varargin{:}); endfunction Index: wiener_rnd.m =================================================================== RCS file: /cvs/octave/scripts/deprecated/wiener_rnd.m,v retrieving revision 1.1 diff -u -r1.1 wiener_rnd.m --- wiener_rnd.m 13 Jul 2005 17:53:49 -0000 1.1 +++ wiener_rnd.m 20 Jan 2006 21:26:10 -0000 @@ -34,6 +34,9 @@ function retval = wiener_rnd (varargin) + __warn_deprecated__ ("wiener_rnd", "wienrnd") + + retval = wienrnd (varargin{:}); endfunction