diff scripts/elfun/acsc.m @ 11469:c776f063fefe

Overhaul m-script files to use common variable name between code and documentation.
author Rik <octave@nomad.inbox5.com>
date Sun, 09 Jan 2011 12:41:21 -0800 (2011-01-09)
parents 16f53d29049f
children fd0a3ac60b0e
line wrap: on
line diff
--- a/scripts/elfun/acsc.m
+++ b/scripts/elfun/acsc.m
@@ -25,13 +25,13 @@
 
 ## Author: jwe
 
-function w = acsc (z)
+function y = acsc (x)
 
   if (nargin != 1)
     print_usage ();
   endif
 
-  w = asin (1 ./ z);
+  y = asin (1 ./ x);
 
 endfunction