diff scripts/statistics/base/corr.m @ 14336:34af9f9ff98b

Use Octave coding conventions (double-quote " in preference to single quote ') * center.m, corr.m, cov.m, iqr.m, kendall.m, spearman.m, std.m, var.m: Use Octave coding conventions (double-quote " in preference to single quote ')
author Rik <octave@nomad.inbox5.com>
date Sun, 05 Feb 2012 15:46:02 -0800
parents 4d917a6a858b
children f3d52523cde1
line wrap: on
line diff
--- a/scripts/statistics/base/corr.m
+++ b/scripts/statistics/base/corr.m
@@ -56,7 +56,7 @@
 
   ## Special case, scalar is always 100% correlated with itself
   if (isscalar (x))
-    if (isa (x, 'single'))
+    if (isa (x, "single"))
       retval = single (1);
     else
       retval = 1;