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
parents 16f53d29049f
children fd0a3ac60b0e
line wrap: on
line diff
--- a/scripts/elfun/acsc.m	Sun Jan 09 21:24:43 2011 +0100
+++ b/scripts/elfun/acsc.m	Sun Jan 09 12:41:21 2011 -0800
@@ -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