diff scripts/statistics/base/ppplot.m @ 3979:e0b7a493e5a8

[project @ 2002-07-10 17:45:34 by jwe]
author jwe
date Wed, 10 Jul 2002 17:45:34 +0000
parents 38c61cbf086c
children 22bd65326ec1
line wrap: on
line diff
--- a/scripts/statistics/base/ppplot.m
+++ b/scripts/statistics/base/ppplot.m
@@ -43,7 +43,7 @@
 ## Author: KH <Kurt.Hornik@ci.tuwien.ac.at>
 ## Description: Perform a PP-plot (probability plot)
 
-function [p, y] = ppplot (x, dist, ...)
+function [p, y] = ppplot (x, dist, varargin)
 
   if (nargin < 1)
     usage ("ppplot (x, dist, params)");
@@ -64,7 +64,7 @@
   if (nargin <= 2)
     y = feval (F, s);
   else
-    y = feval (F, s, all_va_args);
+    y = feval (F, s, varargin{:});
   endif
 
   if (nargout == 0)