changeset 12682:c21eb9c02c31 stable

frnd.m: Fix typo in 2-input calling form preventing execution. * frnd.m: Replace typo 'a' with input variable 'm'.
author Rik <octave@nomad.inbox5.com>
date Tue, 17 May 2011 09:41:19 -0700
parents c09ed93d1a8b
children 486c9aea34d3
files scripts/statistics/distributions/frnd.m
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/scripts/statistics/distributions/frnd.m
+++ b/scripts/statistics/distributions/frnd.m
@@ -71,7 +71,7 @@
       error ("frnd: M and N must be scalar or of size SZ");
     endif
   elseif (nargin == 2)
-    sz = size(a);
+    sz = size(m);
   else
     print_usage ();
   endif