diff scripts/sparse/sprandn.m @ 20399:26bd6008fc9c

maint: Rename __sprand_impl__.m to __sprand__.m * scripts/sparse/private/__sprand__.m: Renamed file. * scripts/sparse/private/__sprand_impl__.m: Removed file. * scripts/sparse/module.mk: Rename file in build system. * sprand.m, sprandn.m: Rename file in calling functions.
author Rik <rik@octave.org>
date Sun, 26 Jul 2015 08:50:04 -0700
parents 9fc020886ae9
children 516bb87ea72e
line wrap: on
line diff
--- a/scripts/sparse/sprandn.m	Sat Jul 25 16:22:00 2015 -0400
+++ b/scripts/sparse/sprandn.m	Sun Jul 26 08:50:04 2015 -0700
@@ -45,11 +45,11 @@
 function s = sprandn (m, n, d, rc)
 
   if (nargin == 1 )
-    s = __sprand_impl__ (m, @randn);
+    s = __sprand__ (m, @randn);
   elseif ( nargin == 3)
-    s = __sprand_impl__ (m, n, d, "sprandn", @randn);
+    s = __sprand__ (m, n, d, "sprandn", @randn);
   elseif (nargin == 4)
-    s = __sprand_impl__ (m, n, d, rc, "sprandn", @randn);
+    s = __sprand__ (m, n, d, rc, "sprandn", @randn);
   else
     print_usage ();
   endif