This file is indexed.

/usr/share/octave/packages/geometry-1.7.0/polynomialCurves2d/doc-cache is in octave-geometry 1.7.0-1build1.

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
237
# Created by Octave 3.8.0, Tue Feb 25 00:03:05 2014 UTC <root@aatxe>
# name: cache
# type: cell
# rows: 3
# columns: 6
# name: <cell-element>
# type: sq_string
# elements: 1
# length: 19
drawPolynomialCurve


# name: <cell-element>
# type: sq_string
# elements: 1
# length: 218
 -- Function File: H = drawPolynomialCurve (BND, XCOEF, YCOEF)
 -- Function File: H = drawPolynomialCurve (BND, COEFS)
 -- Function File: H = drawPolynomialCurve (..., NPTS)
     Draw a polynomial curve approximation




# name: <cell-element>
# type: sq_string
# elements: 1
# length: 37
Draw a polynomial curve approximation



# name: <cell-element>
# type: sq_string
# elements: 1
# length: 23
polynomialCurveCentroid


# name: <cell-element>
# type: sq_string
# elements: 1
# length: 750
 -- Function File: C = polynomialCurveCentroid (T, XCOEF, YCOEF)
 -- Function File: C = polynomialCurveCentroid (T, COEFS)
 -- Function File: C = polynomialCurveCentroid (..., TOL)
     Compute the centroid of a polynomial curve

     XCOEF and YCOEF are row vectors of coefficients, in the form: [a0
     a1 a2 ...  an] T is a 1x2 row vector, containing the bounds of the
     parametrization variable: T = [T0 T1], with T taking all values
     between T0 and T1.  C contains coordinate of the polynomial curve
     centroid.

     COEFS is either a 2xN matrix (one row for the coefficients of each
     coordinate), or a cell array.

     TOL is the tolerance fo computation (absolute).

     See also: polynomialCurves2d, polynomialCurveLength.




# name: <cell-element>
# type: sq_string
# elements: 1
# length: 42
Compute the centroid of a polynomial curve



# name: <cell-element>
# type: sq_string
# elements: 1
# length: 25
polynomialCurveDerivative


# name: <cell-element>
# type: sq_string
# elements: 1
# length: 658
 -- Function File: V = polynomialCurveDerivative (T, XCOEF,YCOEF)
 -- Function File: V = polynomialCurveDerivative (T, COEFS)
     Compute derivative vector of a polynomial curve

     XCOEF and YCOEF are row vectors of coefficients, in the form: [a0
     a1 a2 ...  an] V is a 1x2 array containing direction of derivative
     of polynomial curve, computed for position T.  If T is a vector, V
     has as many rows as the length of T.

     COEFS is either a 2xN matrix (one row for the coefficients of each
     coordinate), or a cell array.

     See also: polynomialCurves2d, polynomialCurveNormal,
     polynomialCurvePoint, polynomialCurveCurvature.




# name: <cell-element>
# type: sq_string
# elements: 1
# length: 47
Compute derivative vector of a polynomial curve



# name: <cell-element>
# type: sq_string
# elements: 1
# length: 18
polynomialCurveFit


# name: <cell-element>
# type: sq_string
# elements: 1
# length: 1372
 -- Function File: [XC, YC] = polynomialCurveFit (T, XT, YT, ORDER)
 -- Function File: [XC, YC] = polynomialCurveFit (T, POINTS, ORDER)
 -- Function File: [XC, YC] = polynomialCurveFit (..., TI, CONDI)
     Fit a polynomial curve to a series of points

     T is a Nx1 vector.

     XT and YT are coordinate for each parameter value (column vectors).
     ORDER is the degree of the polynomial used for interpolation.  XC
     and YC are polynomial coefficients, given in ORDER+1 row vectors,
     starting from degree 0 and up to degree ORDER.  POINTS specifies
     coordinate of points in a Nx2 array.

     Impose some specific conditions using TI and CONDI.

     TI is a value of the parametrization variable.  CONDI is a cell
     array, with 2 columns, and as many rows as the derivatives
     specified for the given TI.  Format for CONDI is:

     CONDI = {X_I, Y_I; X_I', Y_I'; X_I", Y_I"; ...};

     with X_I and Y_I being the imposed coordinate at position TI, X_I'
     and Y_I' being the imposed first derivatives, X_I" and Y_I" the
     imposed second derivatives, and so on...  To specify a derivative
     without specifying derivative with lower degree, value of lower
     derivative can be let empty, using '[]'.

     Requires the optimization Toolbox.

     Run 'demo polynomialCurveFit' to see exaples of use.

     See also: polynomialCurves2d.




# name: <cell-element>
# type: sq_string
# elements: 1
# length: 44
Fit a polynomial curve to a series of points



# name: <cell-element>
# type: sq_string
# elements: 1
# length: 20
polynomialCurvePoint


# name: <cell-element>
# type: sq_string
# elements: 1
# length: 680
 -- Function File: POINT = polynomialCurvePoint (T, XCOEF,YCOEF)
 -- Function File: POINT = polynomialCurvePoint (T, COEFS)
     Compute point corresponding to a position

     XCOEF and YCOEF are row vectors of coefficients, in the form: [a0
     a1 a2 ...  an] T is a either a scalar, or a column vector,
     containing values of the parametrization variable.  POINT is a 1x2
     array containing coordinate of point corresponding to position
     given by T.  If T is a vector, POINT has as many rows as T.

     COEFS is either a 2xN matrix (one row for the coefficients of each
     coordinate), or a cell array.

     See also: polynomialCurves2d, polynomialCurveLength.




# name: <cell-element>
# type: sq_string
# elements: 1
# length: 41
Compute point corresponding to a position



# name: <cell-element>
# type: sq_string
# elements: 1
# length: 21
polynomialCurveSetFit


# name: <cell-element>
# type: sq_string
# elements: 1
# length: 733
 -- Function File: COEFS= polynomialCurveSetFit (IMG)
 -- Function File: ... = polynomalCurveSetFit (IMG, DEG)
 -- Function File: [... LBL] = polynomalCurveSetFit (...)
     Fit a set of polynomial curves to a segmented image

     Result is a cell array of matrices.  Each matrix is DEG+1-by-2, and
     contains coefficients of polynomial curve for each coordinate.
     BNDS contains the boundary of the parametrizations.  IMG is first
     binarised, then skeletonized.

     Also returns an image of labels LBL for the segmented curves.  The
     max label is the number of curves, and the length of COEFS.

     Requires the toolboxes: - Optimization - Image Processing

     See also: polynomialCurves2d, polynomialCurveFit.




# name: <cell-element>
# type: sq_string
# elements: 1
# length: 51
Fit a set of polynomial curves to a segmented image