This file is indexed.

/usr/share/octave/packages/plot-1.1.0/doc-cache is in octave-plot 1.1.0-2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
# Created by Octave 3.6.1, Thu May 03 16:50:23 2012 UTC <root@akateko>
# name: cache
# type: cell
# rows: 3
# columns: 7
# name: <cell-element>
# type: sq_string
# elements: 1
# length: 8
dxfwrite


# name: <cell-element>
# type: sq_string
# elements: 1
# length: 245
 -- Function File: NB = dxfwrite (FILENAME, PL, ...)
     Write FILENAME as a DXF file. Polyline PL must be defined as
     matrix of 1, 2 or 3 columns respectively for x, y and z
     coordinates. The number of polyline (NB) or 0 is returned.




# name: <cell-element>
# type: sq_string
# elements: 1
# length: 29
Write FILENAME as a DXF file.



# name: <cell-element>
# type: sq_string
# elements: 1
# length: 6
gplot3


# name: <cell-element>
# type: sq_string
# elements: 1
# length: 628
 -- Function File:  gplot3 (A, XYZ)
 -- Function File:  gplot3 (A, XYZ, LINE_STYLE)
 -- Function File: [X, Y, Z] = gplot3 (A, XYZ)
     Plot a 3-dimensional graph defined by A and XYZ in the graph
     theory sense.  A is the adjacency matrix of the array to be
     plotted and XY is an N-by-3 matrix containing the coordinates of
     the nodes of the graph.

     The optional parameter LINE_STYLE defines the output style for the
     plot.  Called with no output arguments the graph is plotted
     directly.  Otherwise, return the coordinates of the plot in X and
     Y.

     See also: gplot, treeplot, etreeplot, spy





# name: <cell-element>
# type: sq_string
# elements: 1
# length: 74
Plot a 3-dimensional graph defined by A and XYZ in the graph theory
sense.



# name: <cell-element>
# type: sq_string
# elements: 1
# length: 6
hist2d


# name: <cell-element>
# type: sq_string
# elements: 1
# length: 304
 -- Function File: [COUNTS, XBINS, YBINS] = hist2d ([X, Y], XBINS,
          YBINS, NORM)
     Produce a 2D histogram.

     Points xi,yi are stored in a 2-column array.  If ybins is missing,
     use xbins.  If bins is a scalar, use that many bins.  If bins is a
     vector, it represents bin edges.





# name: <cell-element>
# type: sq_string
# elements: 1
# length: 23
Produce a 2D histogram.



# name: <cell-element>
# type: sq_string
# elements: 1
# length: 12
plotdecimate


# name: <cell-element>
# type: sq_string
# elements: 1
# length: 871
 -- Function File:  plotdecimate (P)
 -- Function File:  plotdecimate (P, SO)
 -- Function File:  plotdecimate (P, SO, RES)
     Optimise plot data by removing redundant points and segments

     The first parameter P is a two-column matrix to be plotted as X and
     Y coordinates.   The second optional argument SO disables segment
     optimisation when set to FALSE (default is TRUE). The third
     optional argument RES is the size of the largest error on the plot:
     if it is a scalar, it is meant relative to the range of X and Y
     values (default 1e-3); if it is a 2x1 array, it contains the
     absolute errors for X and Y.  Returns a two-column matrix
     containing a subset of the rows of P. A line plot of P has the
     same appearance as a line plot of the output, with errors smaller
     than RES.  When creating point plots, set SO to FALSE.




# name: <cell-element>
# type: sq_string
# elements: 1
# length: 61
Optimise plot data by removing redundant points and segments




# name: <cell-element>
# type: sq_string
# elements: 1
# length: 4
tics


# name: <cell-element>
# type: sq_string
# elements: 1
# length: 452
 -- Function File:  tics (AXIS, [POS1, POS2, ...], [LAB1, LAB2, ...],)
     Explicitly set the tic positions and labels for the given axis.

     AXIS must be 'x', 'y' or 'z'.

     If no positions or labels are given, then restore the default.  If
     positions are given but no labels, use those positions with the
     normal labels. If positions and labels are given, each position
     labeled with the corresponding row from the label matrix.





# name: <cell-element>
# type: sq_string
# elements: 1
# length: 63
Explicitly set the tic positions and labels for the given axis.



# name: <cell-element>
# type: sq_string
# elements: 1
# length: 10
tricontour


# name: <cell-element>
# type: sq_string
# elements: 1
# length: 741
 -- Function File:  tricontour (TRI, X, Y, Z, LEVELS)
 -- Function File:  tricontour (TRI, X, Y, Z, LEVELS, LINESPEC)
     Plot level curves for the values of `Z' on a triangular mesh in 2D.

     The variable TRI is the triangular meshing of the points `(X, Y)'
     which is returned from `delaunay'. The variable LEVELS is a vector
     with the values of the countour levels. If LEVELS is a scalar,
     then it corresponds to the number of level curves to be drawn. If
     exactly one level curve is desired, list the level twice in the
     vector LEVELS.

     If given, LINESPEC determines the properties to use for the lines.

     The output argument H is the graphic handle to the plot.

     See also: plot, trimesh, delaunay





# name: <cell-element>
# type: sq_string
# elements: 1
# length: 67
Plot level curves for the values of `Z' on a triangular mesh in 2D.



# name: <cell-element>
# type: sq_string
# elements: 1
# length: 4
zoom


# name: <cell-element>
# type: sq_string
# elements: 1
# length: 69
 -- Function File:  zoom
     Compatibility function; does nothing.




# name: <cell-element>
# type: sq_string
# elements: 1
# length: 37
Compatibility function; does nothing.