changeset 12889:dae596be0571

profshow.m: Change Matlab-style single quotes to Octave-style double quotes
author Jordi Gutiérrez Hermoso <jordigh@gmail.com>
date Tue, 26 Jul 2011 19:07:20 -0500
parents 40dc9069297a
children 278faf7e7bd1
files scripts/general/profshow.m
diffstat 1 files changed, 13 insertions(+), 13 deletions(-) [+]
line wrap: on
line diff
--- a/scripts/general/profshow.m	Tue Jul 26 18:53:49 2011 -0500
+++ b/scripts/general/profshow.m	Tue Jul 26 19:07:20 2011 -0500
@@ -59,20 +59,20 @@
   ## For printing the table, find out the maximum length of a function name
   ## so that we can proportion the table accordingly.  Based on this,
   ## we can build the format used for printing table rows.
-  nameLen = length ('Function');
+  nameLen = length ("Function");
   for i = 1 : n
     nameLen = max (nameLen, length (data.FunctionTable(p(i)).FunctionName));
   endfor
-  headerFormat = sprintf ('%%%ds %%4s %%12s %%12s\n', nameLen);
-  rowFormat = sprintf ('%%%ds %%4s %%12.3f %%12d\n', nameLen);
+  headerFormat = sprintf ("%%%ds %%4s %%12s %%12s\n", nameLen);
+  rowFormat = sprintf ("%%%ds %%4s %%12.3f %%12d\n", nameLen);
 
-  printf (headerFormat, 'Function', 'Attr', 'Time (s)', 'Calls');
-  printf ("%s\n", repmat ('-', 1, nameLen + 2 * 13 + 5));
+  printf (headerFormat, "Function", "Attr", "Time (s)", "Calls");
+  printf ("%s\n", repmat ("-", 1, nameLen + 2 * 13 + 5));
   for i = 1 : n
     row = data.FunctionTable(p(i));
-    attr = '';
+    attr = "";
     if (row.IsRecursive)
-      attr = 'R';
+      attr = "R";
     endif
     printf (rowFormat, row.FunctionName, attr, row.TotalTime, row.NumCalls);
   endfor
@@ -80,11 +80,11 @@
 endfunction
 
 %!demo
-%! profile ('on');
+%! profile ("on");
 %! A = rand (100);
 %! B = expm (A);
-%! profile ('off');
-%! T = profile ('info');
+%! profile ("off");
+%! T = profile ("info");
 %! profshow (T, 10);
 
 %!demo
@@ -95,7 +95,7 @@
 %!     f = myfib (n - 1) + myfib (n - 2);
 %!   endif
 %! endfunction
-%! profile ('on');
+%! profile ("on");
 %! myfib (20);
-%! profile ('off');
-%! profshow (profile ('info'), 5);
+%! profile ("off");
+%! profshow (profile ("info"), 5);