diff scripts/statistics/base/ppplot.m @ 3456:434790acb067

[project @ 2000-01-19 06:58:51 by jwe]
author jwe
date Wed, 19 Jan 2000 06:59:23 +0000
parents 71d2e09c15a2
children e031284eea27
line wrap: on
line diff
--- a/scripts/statistics/base/ppplot.m
+++ b/scripts/statistics/base/ppplot.m
@@ -37,17 +37,17 @@
 ## If no output arguments are given, the data are plotted directly.
 ## @end deftypefn
 
-## Author:  KH <Kurt.Hornik@ci.tuwien.ac.at>
-## Description:  Perform a PP-plot (probability plot)
+## Author: KH <Kurt.Hornik@ci.tuwien.ac.at>
+## Description: Perform a PP-plot (probability plot)
 
 function [p, y] = ppplot (x, dist, ...)
 
   if (nargin < 1)
-    usage ("ppplot (x [, dist [, params]])");
+    usage ("ppplot (x, dist, params)");
   endif
 
   if !is_vector (x)
-    error ("ppplot:  x must be a vector.");
+    error ("ppplot: x must be a vector.");
   endif
 
   s = sort (x);