comparison scripts/general/profexplore.m @ 14359:7277fe922e99

doc: Use Octave preference for double quote in docstrings in scripts/ * interp1.m, interp2.m, interp3.m, interpn.m, profexplore.m, profile.m, profshow.m, quadgk.m, lookfor.m, imagesc.m, bzip2.m, gzip.m, parseparams.m, pkg.m, ancestor.m, caxis.m, ezmesh.m, ezmeshc.m, ezsurf.m, ezsurfc.m, hidden.m, hold.m, patch.m, pie.m, pie3.m, quiver.m, quiver3.m, scatter3.m, uicontextmenu.m, uicontrol.m, uipanel.m, uipushtool.m, uitoggletool.m, uitoolbar.m, xlim.m, ylim.m, zlim.m, ismember.m, setxor.m, filter2.m, bicg.m, demo.m, example.m, fail.m, test.m: Use Octave preference for double quote in docstrings in scripts/ directory.
author Rik <octave@nomad.inbox5.com>
date Mon, 13 Feb 2012 07:38:23 -0800
parents 190952239c2c
children 9e613baf431e
comparison
equal deleted inserted replaced
14358:adb352685ded 14359:7277fe922e99
19 ## -*- texinfo -*- 19 ## -*- texinfo -*-
20 ## @deftypefn {Function File} {} profexplore (@var{data}) 20 ## @deftypefn {Function File} {} profexplore (@var{data})
21 ## Interactively explore hierarchical profiler output. 21 ## Interactively explore hierarchical profiler output.
22 ## 22 ##
23 ## Assuming @var{data} is the structure with profile data returned by 23 ## Assuming @var{data} is the structure with profile data returned by
24 ## @code{profile ('info')}, this command opens an interactive prompt 24 ## @code{profile ("info")}, this command opens an interactive prompt
25 ## that can be used to explore the call-tree. Type @kbd{help} to get a list 25 ## that can be used to explore the call-tree. Type @kbd{help} to get a list
26 ## of possible commands. 26 ## of possible commands.
27 ## @seealso{profile, profshow} 27 ## @seealso{profile, profshow}
28 ## @end deftypefn 28 ## @end deftypefn
29 29
43 __profexplore_worker (data.FunctionTable, data.Hierarchical, "Top\n", " "); 43 __profexplore_worker (data.FunctionTable, data.Hierarchical, "Top\n", " ");
44 44
45 endfunction 45 endfunction
46 46
47 ## This is the worker function. tree is the current subtree we want to 47 ## This is the worker function. tree is the current subtree we want to
48 ## display / explore. parents is a string containing the already 'rendered' 48 ## display / explore. parents is a string containing the already "rendered"
49 ## data for the parents which is displayed on top of the list of current 49 ## data for the parents which is displayed on top of the list of current
50 ## children. prefix is the prefix to add to each line rendered; this 50 ## children. prefix is the prefix to add to each line rendered; this
51 ## is just a string of spaces to get indentation right. 51 ## is just a string of spaces to get indentation right.
52 ## 52 ##
53 ## Returning 0 indicates that the user requested to totally exit the 53 ## Returning 0 indicates that the user requested to totally exit the