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
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
//
// GENERATED FILE
//
use super::*;
use crate::SpiceContext;
use f2rust_std::*;
/// Lagrange polynomial interpolation with derivative
///
/// Evaluate a Lagrange interpolating polynomial, for a specified
/// set of coordinate pairs, at a specified abscissa value. Return
/// both the value of the polynomial and its derivative.
///
/// # Brief I/O
///
/// ```text
/// VARIABLE I/O DESCRIPTION
/// -------- --- --------------------------------------------------
/// N I Number of points defining the polynomial.
/// XVALS I Abscissa values.
/// YVALS I Ordinate values.
/// WORK I-O Work space array.
/// X I Point at which to interpolate the polynomial.
/// P O Polynomial value at X.
/// DP O Polynomial derivative at X.
/// ```
///
/// # Detailed Input
///
/// ```text
/// N is the number of points defining the polynomial.
/// The arrays XVALS and YVALS contain N elements.
///
/// XVALS,
/// YVALS are arrays of abscissa and ordinate values that
/// together define N ordered pairs. The set of points
///
/// ( XVALS(I), YVALS(I) )
///
/// define the Lagrange polynomial used for
/// interpolation. The elements of XVALS must be
/// distinct and in increasing order.
///
/// WORK is an N * 2 work space array, where N is the same
/// dimension as that of XVALS and YVALS. It is used
/// by this routine as a scratch area to hold
/// intermediate results.
///
/// X is the abscissa value at which the interpolating
/// polynomial is to be evaluated.
/// ```
///
/// # Detailed Output
///
/// ```text
/// P is the value at X of the unique polynomial of
/// degree N-1 that fits the points in the plane
/// defined by XVALS and YVALS.
///
/// DP is the derivative at X of the interpolating
/// polynomial described above.
/// ```
///
/// # Exceptions
///
/// ```text
/// 1) If any two elements of the array XVALS are equal, the error
/// SPICE(DIVIDEBYZERO) is signaled.
///
/// 2) If N is less than 1, the error SPICE(INVALIDSIZE) is
/// signaled.
///
/// 3) This routine does not attempt to ward off or diagnose
/// arithmetic overflows.
/// ```
///
/// # Particulars
///
/// ```text
/// Given a set of N distinct abscissa values and corresponding
/// ordinate values, there is a unique polynomial of degree N-1, often
/// called the "Lagrange polynomial", that fits the graph defined by
/// these values. The Lagrange polynomial can be used to interpolate
/// the value of a function at a specified point, given a discrete
/// set of values of the function.
///
/// Users of this routine must choose the number of points to use
/// in their interpolation method. The authors of Reference [1] have
/// this to say on the topic:
///
/// Unless there is solid evidence that the interpolating function
/// is close in form to the true function F, it is a good idea to
/// be cautious about high-order interpolation. We
/// enthusiastically endorse interpolations with 3 or 4 points, we
/// are perhaps tolerant of 5 or 6; but we rarely go higher than
/// that unless there is quite rigorous monitoring of estimated
/// errors.
///
/// The same authors offer this warning on the use of the
/// interpolating function for extrapolation:
///
/// ...the dangers of extrapolation cannot be overemphasized:
/// An interpolating function, which is perforce an extrapolating
/// function, will typically go berserk when the argument X is
/// outside the range of tabulated values by more than the typical
/// spacing of tabulated points.
/// ```
///
/// # Examples
///
/// ```text
/// The numerical results shown for this example may differ across
/// platforms. The results depend on the SPICE kernels used as
/// input, the compiler and supporting libraries, and the machine
/// specific arithmetic implementation.
///
/// 1) Fit a cubic polynomial through the points
///
/// ( -1, -2 )
/// ( 0, -7 )
/// ( 1, -8 )
/// ( 3, 26 )
///
/// and evaluate this polynomial at X = 2.
///
/// The returned value of P should be 1.0, since the
/// unique cubic polynomial that fits these points is
///
/// 3 2
/// F(X) = X + 2*X - 4*X - 7
///
/// The returned value of DP should be 16.0, since the
/// derivative of f(x) is
///
/// ' 2
/// F (X) = 3*X + 4*X - 4
///
///
/// Example code begins here.
///
///
/// PROGRAM LGRIND_EX1
/// IMPLICIT NONE
///
/// DOUBLE PRECISION P
/// DOUBLE PRECISION DP
/// DOUBLE PRECISION XVALS (4)
/// DOUBLE PRECISION YVALS (4)
/// DOUBLE PRECISION WORK (4,2)
/// INTEGER N
///
/// N = 4
///
/// XVALS(1) = -1
/// XVALS(2) = 0
/// XVALS(3) = 1
/// XVALS(4) = 3
///
/// YVALS(1) = -2
/// YVALS(2) = -7
/// YVALS(3) = -8
/// YVALS(4) = 26
///
/// CALL LGRIND ( N, XVALS, YVALS, WORK, 2.D0, P, DP )
///
/// WRITE (*,*) 'P, DP = ', P, DP
///
/// END
///
///
/// When this program was executed on a Mac/Intel/gfortran/64-bit
/// platform, the output was:
///
///
/// P, DP = 1.0000000000000000 16.000000000000000
/// ```
///
/// # Literature References
///
/// ```text
/// [1] W. Press, B. Flannery, S. Teukolsky and W. Vetterling,
/// "Numerical Recipes -- The Art of Scientific Computing,"
/// chapters 3.0 and 3.1, Cambridge University Press, 1986.
/// ```
///
/// # Author and Institution
///
/// ```text
/// N.J. Bachman (JPL)
/// J. Diaz del Rio (ODC Space)
/// ```
///
/// # Version
///
/// ```text
/// - SPICELIB Version 1.1.0, 26-OCT-2021 (JDR)
///
/// Added IMPLICIT NONE statement.
///
/// Updated the header to comply with NAIF standard. Added
/// "IMPLICIT NONE" to code example.
///
/// - SPICELIB Version 1.0.1, 10-JAN-2014 (NJB)
///
/// Updated description of the workspace array: now the array WORK
/// is not described as being allowed to coincide with the input
/// YVALS. Such overlap would be a violation of the ANSI Fortran
/// 77 standard. Corrected a spelling error in header
/// documentation.
///
/// - SPICELIB Version 1.0.0, 20-AUG-2002 (NJB)
/// ```
pub fn lgrind(
ctx: &mut SpiceContext,
n: i32,
xvals: &[f64],
yvals: &[f64],
work: &mut [f64],
x: f64,
p: &mut f64,
dp: &mut f64,
) -> crate::Result<()> {
LGRIND(n, xvals, yvals, work, x, p, dp, ctx.raw_context())?;
ctx.handle_errors()?;
Ok(())
}
//$Procedure LGRIND (Lagrange polynomial interpolation with derivative)
pub fn LGRIND(
N: i32,
XVALS: &[f64],
YVALS: &[f64],
WORK: &mut [f64],
X: f64,
P: &mut f64,
DP: &mut f64,
ctx: &mut Context,
) -> f2rust_std::Result<()> {
let XVALS = DummyArray::new(XVALS, 1..=N);
let YVALS = DummyArray::new(YVALS, 1..=N);
let mut WORK = DummyArrayMut2D::new(WORK, 1..=N, 1..=2);
let mut C1: f64 = 0.0;
let mut C2: f64 = 0.0;
let mut DENOM: f64 = 0.0;
//
// SPICELIB functions
//
//
// Local variables
//
//
// Check in only if an error is detected.
//
if RETURN(ctx) {
return Ok(());
}
//
// No data, no interpolation.
//
if (N < 1) {
CHKIN(b"LGRIND", ctx)?;
SETMSG(b"Array size must be positive; was #.", ctx);
ERRINT(b"#", N, ctx);
SIGERR(b"SPICE(INVALIDSIZE)", ctx)?;
CHKOUT(b"LGRIND", ctx)?;
return Ok(());
}
//
// We're going to compute the value of our interpolating polynomial
// at X by taking advantage of a recursion relation between
// Lagrange polynomials of order n+1 and order n. The method works
// as follows:
//
// Define
//
// P (x)
// i(i+1)...(i+j)
//
// to be the unique Lagrange polynomial that interpolates our
// input function at the abscissa values
//
// x , x , ... x .
// i i+1 i+j
//
//
// Then we have the recursion relation
//
// P (x) =
// i(i+1)...(i+j)
//
// x - x
// i
// ----------- * P (x)
// x - x (i+1)...(i+j)
// i i+j
//
//
// x - x
// i+j
// + ----------- * P (x)
// x - x i(i+1)...(i+j-1)
// i i+j
//
//
// Repeated application of this relation allows us to build
// successive columns, in left-to-right order, of the
// triangular table
//
//
// P (x)
// 1
// P (x)
// 12
// P (x) P (x)
// 2 123
// P (x)
// 23 .
// P (x)
// . 234 .
// .
// . . .
// .
// . . P (x)
// . . 12...N
// .
// .
//
// .
//
//
// P (x)
// (N-2)(N-1)N
// P (x)
// (N-1)N
// P (x)
// N
//
//
// and after N-1 steps arrive at our desired result,
//
//
// P (x).
// 12...N
//
//
// The computation is easier to do than to describe.
//
//
// We'll use the scratch array WORK to contain the current column of
// our interpolation table. To start out with, WORK(I) will contain
//
// P (x).
// I
//
// For columns 2...N of the table, we'll also carry along the
// derivative at X of each interpolating polynomial. This will
// allow us to find the derivative of the Lagrange polynomial
// at X.
//
for I in 1..=N {
WORK[[I, 1]] = YVALS[I];
WORK[[I, 2]] = 0.0;
}
//
// Compute columns 2 through N of the table. Note that DENOM must
// be non-zero, or else a divide-by-zero error will occur.
//
for J in 1..=(N - 1) {
for I in 1..=(N - J) {
DENOM = (XVALS[I] - XVALS[(I + J)]);
if (DENOM == 0.0) {
CHKIN(b"LGRIND", ctx)?;
SETMSG(b"XVALS(#) = XVALS(#) = #", ctx);
ERRINT(b"#", I, ctx);
ERRINT(b"#", (I + J), ctx);
ERRDP(b"#", XVALS[I], ctx);
SIGERR(b"SPICE(DIVIDEBYZERO)", ctx)?;
CHKOUT(b"LGRIND", ctx)?;
return Ok(());
}
C1 = (X - XVALS[(I + J)]);
C2 = (XVALS[I] - X);
//
// Use the chain rule to compute the derivatives. Do this
// before computing the function value, because the latter
// computation will overwrite the first column of WORK.
//
WORK[[I, 2]] = ((((C1 * WORK[[I, 2]]) + (C2 * WORK[[(I + 1), 2]]))
+ (WORK[[I, 1]] - WORK[[(I + 1), 1]]))
/ DENOM);
//
// Compute the Ith entry in the Jth column.
//
WORK[[I, 1]] = (((C1 * WORK[[I, 1]]) + (C2 * WORK[[(I + 1), 1]])) / DENOM);
}
}
//
// Our results are sitting in WORK(1,1) and WORK(1,2) at this point.
//
*P = WORK[[1, 1]];
*DP = WORK[[1, 2]];
Ok(())
}