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
418
419
//
// GENERATED FILE
//
use super::*;
use crate::SpiceContext;
use f2rust_std::*;
pub const LBCELL: i32 = -5;
/// Summary of a double precision window
///
/// Summarize the contents of a double precision window.
///
/// # Required Reading
///
/// * [WINDOWS](crate::required_reading::windows)
///
/// # Brief I/O
///
/// ```text
/// VARIABLE I/O DESCRIPTION
/// -------- --- --------------------------------------------------
/// WINDOW I Window to be summarized.
/// MEAS O Total measure of intervals in WINDOW.
/// AVG O Average measure.
/// STDDEV O Standard deviation.
/// IDXSML,
/// IDXLON O Locations of shortest, longest intervals.
/// ```
///
/// # Detailed Input
///
/// ```text
/// WINDOW is a window containing zero or more intervals.
/// ```
///
/// # Detailed Output
///
/// ```text
/// MEAS is the total measure of the intervals in the input
/// window. This is just the sum of the measures of the
/// individual intervals.
///
/// AVG is the average of the measures of the intervals in the
/// input window.
///
/// STDDEV is the standard deviation of the measures of the
/// intervals in the input window.
///
/// IDXSML,
/// IDXLON are the locations of the shortest and longest intervals
/// in the input window. The shortest interval is
///
/// [ WINDOW(IDXSML), WINDOW(IDXSML+1) ]
///
/// and the longest is
///
/// [ WINDOW(IDXLON), WINDOW(IDXLON+1) ]
///
/// IDXSML and IDXLON are both zero if the input window
/// contains no intervals.
///
/// If WINDOW contains multiple intervals having the shortest
/// length, IDXSML is the index of the first such interval.
/// Likewise for the longest length.
///
/// Indices range from 1 to 2*N-1, where N is the number of
/// intervals in the window.
/// ```
///
/// # Exceptions
///
/// ```text
/// 1) If WINDOW has odd cardinality, the error
/// SPICE(INVALIDCARDINALITY) is signaled.
///
/// 2) Left endpoints of stored intervals must be strictly greater
/// than preceding right endpoints. Right endpoints must be
/// greater than or equal to corresponding left endpoints.
/// Invalid window data are not diagnosed by this routine and may
/// lead to unpredictable results.
/// ```
///
/// # Particulars
///
/// ```text
/// This routine provides a summary of the input window, consisting
/// of the following items:
///
/// - The measure of the window.
///
/// - The average and standard deviation of the measures
/// of the individual intervals in the window.
///
/// - The indices of the left endpoints of the shortest
/// and longest intervals in the window.
///
/// All of these quantities are zero if the window contains no
/// intervals.
/// ```
///
/// # Examples
///
/// ```text
/// The numerical results shown for these examples 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) Define a window with six intervals, and calculate the
/// summary for that window.
///
///
/// Example code begins here.
///
///
/// PROGRAM WNSUMD_EX1
/// IMPLICIT NONE
///
/// C
/// C SPICELIB functions
/// C
/// INTEGER WNCARD
///
/// C
/// C Local parameters.
/// C
/// CHARACTER*(*) FMT1
/// PARAMETER ( FMT1 = '(A,F11.6)' )
///
/// CHARACTER*(*) FMT2
/// PARAMETER ( FMT2 = '(A,I4)' )
///
/// CHARACTER*(*) FMT3
/// PARAMETER ( FMT3 = '(A,2(F6.3,A))' )
///
/// INTEGER LBCELL
/// PARAMETER ( LBCELL = -5 )
///
/// INTEGER WNSIZE
/// PARAMETER ( WNSIZE = 12 )
///
/// C
/// C Local variables.
/// C
/// DOUBLE PRECISION AVG
/// DOUBLE PRECISION LEFT
/// DOUBLE PRECISION MEAS
/// DOUBLE PRECISION RIGHT
/// DOUBLE PRECISION STDDEV
/// DOUBLE PRECISION WINDOW ( LBCELL:WNSIZE )
///
/// INTEGER IDXLON
/// INTEGER IDXSML
/// INTEGER INTLON
/// INTEGER INTSML
///
/// C
/// C Validate the WINDOW with size WNSIZE and zero elements.
/// C
/// CALL WNVALD ( WNSIZE, 0, WINDOW )
///
/// C
/// C Insert the intervals
/// C
/// C [ 1, 3 ] [ 7, 11 ] [ 18, 18 ]
/// C [ 23, 27 ] [ 30, 69 ] [ 72, 80 ]
/// C
/// C into WINDOW.
/// C
/// CALL WNINSD ( 1.0D0, 3.0D0, WINDOW )
/// CALL WNINSD ( 7.0D0, 11.0D0, WINDOW )
/// CALL WNINSD ( 18.0D0, 18.0D0, WINDOW )
/// CALL WNINSD ( 23.0D0, 27.0D0, WINDOW )
/// CALL WNINSD ( 30.0D0, 69.0D0, WINDOW )
/// CALL WNINSD ( 72.0D0, 80.0D0, WINDOW )
///
/// C
/// C Calculate the summary for WINDOW.
/// C
/// CALL WNSUMD ( WINDOW, MEAS, AVG,
/// . STDDEV, IDXSML, IDXLON )
///
/// C
/// C IDXSML and IDXLON refer to the indices of
/// C the SPICE Cell data array.
/// C
/// INTSML = (IDXSML+1)/2
/// INTLON = (IDXLON+1)/2
///
/// WRITE(*,FMT1) 'Measure : ', MEAS
/// WRITE(*,FMT1) 'Average : ', AVG
/// WRITE(*,FMT1) 'Standard Dev : ', STDDEV
/// WRITE(*,FMT2) 'Index shortest : ', IDXSML
/// WRITE(*,FMT2) 'Index longest : ', IDXLON
/// WRITE(*,FMT2) 'Interval shortest : ', INTSML
/// WRITE(*,FMT2) 'Interval longest : ', INTLON
///
/// C
/// C Output the shortest and longest intervals.
/// C
/// CALL WNFETD ( WINDOW, INTSML, LEFT, RIGHT )
/// WRITE(*,FMT3) 'Shortest interval : [ ', LEFT, ', ',
/// . RIGHT, ' ]'
/// CALL WNFETD ( WINDOW, INTLON, LEFT, RIGHT )
/// WRITE(*,FMT3) 'Longest interval : [ ', LEFT, ', ',
/// . RIGHT, ' ]'
///
/// END
///
///
/// When this program was executed on a Mac/Intel/gfortran/64-bit
/// platform, the output was:
///
///
/// Measure : 57.000000
/// Average : 9.500000
/// Standard Dev : 13.413302
/// Index shortest : 5
/// Index longest : 9
/// Interval shortest : 3
/// Interval longest : 5
/// Shortest interval : [ 18.000, 18.000 ]
/// Longest interval : [ 30.000, 69.000 ]
///
///
/// 2) Let A contain the intervals
///
/// [ 1, 3 ] [ 7, 11 ] [ 23, 27 ]
///
/// Let B contain the singleton intervals
///
/// [ 2, 2 ] [ 9, 9 ] [ 27, 27 ]
///
/// The measures of A and B are
///
/// (3-1) + (11-7) + (27-23) = 10
///
/// and
///
/// (2-2) + (9-9) + (27-27) = 0
///
/// respectively. Each window has three intervals; thus, the
/// average measures of the windows are 10/3 and 0. The standard
/// deviations are
///
/// .-----------------------------------------
/// | 2 2 2
/// | (3-1) + (11-7) + (27-23) 2 1/2
/// | --------------------------- - (10/3) = (8/9)
/// | 3
/// \ |
/// \|
///
/// and 0. Neither window has one "shortest" interval or "longest"
/// interval; so the first ones found are returned: IDXSML and
/// IDXLON are 1 and 3 for A, 1 and 1 for B.
/// ```
///
/// # Author and Institution
///
/// ```text
/// N.J. Bachman (JPL)
/// J. Diaz del Rio (ODC Space)
/// W.L. Taber (JPL)
/// I.M. Underwood (JPL)
/// E.D. Wright (JPL)
/// ```
///
/// # Version
///
/// ```text
/// - SPICELIB Version 1.2.0, 05-JUL-2021 (JDR) (NJB)
///
/// Changed output argument names SMALL and LONG to IDXSML and
/// IDXLON for consistency with other routines.
///
/// Added IMPLICIT NONE statement.
///
/// Edited the header to comply with NAIF standard. Added complete
/// code example. Added entry #2 in $Exceptions section.
///
/// Improved description of arguments IDXSML and IDXLON in
/// $Detailed_Output.
///
/// Removed unnecessary $Revisions section.
///
/// - SPICELIB Version 1.1.0, 25-FEB-2009 (EDW)
///
/// Added error test to confirm input window has even cardinality.
/// Corrected section order to match NAIF standard.
///
/// - SPICELIB Version 1.0.2, 29-JUL-2002 (NJB)
///
/// Corrected error in example section: changed claimed value
/// of longest interval for window A from 2 to 3.
///
/// - SPICELIB Version 1.0.1, 10-MAR-1992 (WLT)
///
/// Comment section for permuted index source lines was added
/// following the header.
///
/// - SPICELIB Version 1.0.0, 31-JAN-1990 (WLT) (IMU)
/// ```
pub fn wnsumd(
ctx: &mut SpiceContext,
window: &[f64],
meas: &mut f64,
avg: &mut f64,
stddev: &mut f64,
idxsml: &mut i32,
idxlon: &mut i32,
) -> crate::Result<()> {
WNSUMD(window, meas, avg, stddev, idxsml, idxlon, ctx.raw_context())?;
ctx.handle_errors()?;
Ok(())
}
//$Procedure WNSUMD ( Summary of a double precision window )
pub fn WNSUMD(
WINDOW: &[f64],
MEAS: &mut f64,
AVG: &mut f64,
STDDEV: &mut f64,
IDXSML: &mut i32,
IDXLON: &mut i32,
ctx: &mut Context,
) -> f2rust_std::Result<()> {
let WINDOW = DummyArray::new(WINDOW, LBCELL..);
let mut M: f64 = 0.0;
let mut SUM: f64 = 0.0;
let mut SUMSQR: f64 = 0.0;
let mut MSHORT: f64 = 0.0;
let mut MLONG: f64 = 0.0;
let mut CARD: i32 = 0;
//
// SPICELIB functions
//
//
// Local variables
//
//
// Standard SPICE error handling.
//
if RETURN(ctx) {
return Ok(());
}
//
// Get the cardinality (number of endpoints) of the window.
//
CARD = CARDD(WINDOW.as_slice(), ctx)?;
//
// Confirm evenness of CARD.
//
if !EVEN(CARD) {
CHKIN(b"WNSUMD", ctx)?;
SETMSG(b"Input window has odd cardinality. A valid SPICE window must have even element cardinality.", ctx);
SIGERR(b"SPICE(INVALIDCARDINALITY)", ctx)?;
CHKOUT(b"WNSUMD", ctx)?;
return Ok(());
}
//
// Trivial case: no intervals. Return all zeros.
//
if (CARD == 0) {
*MEAS = 0.0;
*AVG = 0.0;
*STDDEV = 0.0;
*IDXSML = 0;
*IDXLON = 0;
//
// Collect the sum of the measures and the squares of the measures
// for each of the intervals in the window. At the same time, keep
// track of the shortest and longest intervals encountered.
//
} else {
SUM = 0.0;
SUMSQR = 0.0;
*IDXSML = 1;
MSHORT = (WINDOW[2] - WINDOW[1]);
*IDXLON = 1;
MLONG = (WINDOW[2] - WINDOW[1]);
for I in intrinsics::range(1, CARD, 2) {
M = (WINDOW[(I + 1)] - WINDOW[I]);
SUM = (SUM + M);
SUMSQR = (SUMSQR + (M * M));
if (M < MSHORT) {
*IDXSML = I;
MSHORT = M;
}
if (M > MLONG) {
*IDXLON = I;
MLONG = M;
}
}
//
// The envelope please?
//
*MEAS = SUM;
*AVG = ((*MEAS * 2.0) / (CARD as f64));
*STDDEV = f64::sqrt((((SUMSQR * 2.0) / (CARD as f64)) - (*AVG * *AVG)));
}
Ok(())
}