diff scripts/statistics/base/cov.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 72c96de7a403
children f3d52523cde1
line wrap: on
line diff
--- a/scripts/statistics/base/cov.m
+++ b/scripts/statistics/base/cov.m
@@ -86,7 +86,7 @@
 
   ## Special case, scalar has zero covariance
   if (isscalar (x))
-    if (isa (x, 'single'))
+    if (isa (x, "single"))
       c = single (0);
     else
       c = 0;