This file is indexed.

/usr/share/octave/packages/3.2/time-1.0.9/doc-cache is in octave-time 1.0.9-3.

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
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
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
# Created by Octave 3.2.4, Mon May 02 03:33:54 2011 UTC <root@zirconium>
# name: cache
# type: cell
# rows: 3
# columns: 24
# name: <cell-element>
# type: string
# elements: 1
# length: 7
busdate
# name: <cell-element>
# type: string
# elements: 1
# length: 833
 -- Function File: b = busdate (refdate)
 -- Function File: b = busdate (refdate, direction)
 -- Function File: b = busdate (refdate, direction, holiday)
 -- Function File: b = busdate (refdate, direction, holiday, weekend)
     Return the datenum of the next or previous business day from
     REFDATE. DIRECTION indicates the next day (default) if 1 and the
     previous day if -1.  HOLIDAY is a vector of datenums that defines
     the holidays observed (the holidays function is used if not
     given).  WEEKEND defines the days of the week that should be
     considered weekends; [1 0 0 0 0 0 1] (default) indicates that
     Sunday and Saturday are holidays.

     If any of the optional inputs (DIRECTION, HOLIDAY, WEEKEND) are
     empty, then the default is used.

     See also: holidays, lbusdate, isbusday, fbusdate



# name: <cell-element>
# type: string
# elements: 1
# length: 69
Return the datenum of the next or previous business day from REFDATE.

# name: <cell-element>
# type: string
# elements: 1
# length: 8
datefind
# name: <cell-element>
# type: string
# elements: 1
# length: 203
 -- Function File: indices = datefind (subset, superset, tol)
     Find any instances of the `subset' in the `superset' with the
     `tol'erance.  `tol' is 0 by default.

     See also: date, datenum



# name: <cell-element>
# type: string
# elements: 1
# length: 74
Find any instances of the `subset' in the `superset' with the
`tol'erance.

# name: <cell-element>
# type: string
# elements: 1
# length: 9
datesplit
# name: <cell-element>
# type: string
# elements: 1
# length: 3210
 -- Function File: Y = datesplit(date, P)
 -- Function File: [Y,M,D,h,m,s] = datesplit(date, P)
     Split a date string into the Year, Month, Day, hour, minute, and
     second.  This routine tries to be as forgiving as possible to the
     date input while requiring that the date is not ambiguous.

     Anywhere possible where it would not be ambiguous, efforts were
     made to make times possible with seconds and AM/PM as optional.
     Also, along the same lines, where possible, commas were allowed
     with spaces, and the year/month/day separators were allowed as
     period (.), slash (/), and dash (-).  Not all format possibilities
     are shown in the following table, but a date like `dd-mmm-yyyy
     HH:MM:SS' is parsed just as well as `d/mmm.yyyy,  ,H:MM, AM'.

     Supported `date' formats include (the same as datestr):
     *Code*  *Format*                       *Example*
     0       dd-mmm-yyyy HH:MM:SS           07-Sep-2000 15:38:09
     1       dd-mmm-yyyy                    07-Sep-2000
     2       mm/dd/yy                       09/07/00
     3       mmm                            Sep
     6       mm/dd                          09/13
     10      yyyy                           2000
     12      mmmyy                          Sep00
     13      HH:MM:SS                       15:38:09
     14      HH:MM:SS PM                    03:38:09 PM
     15      HH:MM                          15:38
     16      HH:MM PM                       03:38 PM
     17      QQ-YY                          Q3-00
     19      dd/mm                          13/03
     20      dd/mm/yy                       13/03/95
     21      mmm.dd.yyyy HH:MM:SS           Mar.03.1962 13:53:06
     22      mmm.dd.yyyy                    Mar.03.1962
     23      mm/dd/yyyy                     03/13/1962
     24      dd/mm/yyyy                     12/03/1962
     25      yy/mm/dd                       95/03/13
     26      yyyy/mm/dd                     1995/03/13
     27      QQ-YYYY                        Q4-2132
     28      mmmyyyy                        Mar2047
     29      yyyymmdd                       20470313
     30      yyyymmddTHHMMSS                20470313T132603
     31      yyyy-mm-dd HH:MM:SS            1047-03-13 13:26:03

     The parameter `P' is needed to convert date strings with 2 digit
     years into dates with 4 digit years.  2 digit years are assumed to
     be between `P' and `P+99'. If `P' is not given then the current
     year - 50 is used, so that dates are centered on the present.  For
     birthdates, you would want `P' to be current year - 99.  For
     appointments, you would want `P' to be current year.

     This function makes no strong attempt to verify the accuracy of the
     numbers that it returns in that it doesn't (currently) check to see
     that you're not trying to use the date Feb 30.  When applicable, it
     tries to make your input work, though.  It will try to determine if
     you're using the date "03/13/95" that the date is "March 13, 1995",
     but if there is doubt, datesplit will return an error instead of
     trying to guess the wrong value.

     See also: date, clock, now, datestr, datenum, calendar, weekday



# name: <cell-element>
# type: string
# elements: 1
# length: 72
Split a date string into the Year, Month, Day, hour, minute, and
second.

# name: <cell-element>
# type: string
# elements: 1
# length: 3
day
# name: <cell-element>
# type: string
# elements: 1
# length: 169
 -- Function File: dom = day (Date)
     Returns the day of the month from a serial date number or a date
     string.

     See also: date, datevec, now, month, year



# name: <cell-element>
# type: string
# elements: 1
# length: 72
Returns the day of the month from a serial date number or a date string.

# name: <cell-element>
# type: string
# elements: 1
# length: 7
daysact
# name: <cell-element>
# type: string
# elements: 1
# length: 578
 -- Function File:  daysact (D1)
 -- Function File:  daysact (D1, D2)
     Calculates the number of days between two dates. If the second
     date is not given, calculate the number of days since 1-Jan-0000.
     The variables D1 and D2 can either be strings or an N-row string
     matrix. If both D1 and D2 are string matrices, then the number of
     rows must match. An example of the use of `daysact' is

          daysact ("01-Jan-2007", ["10-Jan-2007"; "23-Feb-2007"; "23-Jul-2007"])
          =>      9
                 53
                203

     See also: datenum



# name: <cell-element>
# type: string
# elements: 1
# length: 48
Calculates the number of days between two dates.

# name: <cell-element>
# type: string
# elements: 1
# length: 6
easter
# name: <cell-element>
# type: string
# elements: 1
# length: 211
 -- Function File: [m, d] = easter (y)
 -- Function File: datenum = easter (y)
     Return the month (M) and day (D) of Easter in the Gregorial
     calendar on a given year or years.

     See also: holidays



# name: <cell-element>
# type: string
# elements: 1
# length: 80
Return the month (M) and day (D) of Easter in the Gregorial calendar on
a given 

# name: <cell-element>
# type: string
# elements: 1
# length: 7
eomdate
# name: <cell-element>
# type: string
# elements: 1
# length: 169
 -- Function File: E = eomdate (Y, M)
     Return the last day of the month M for the year Y in datenum
     format.

     See also: datenum, datevec, weekday, eomday



# name: <cell-element>
# type: string
# elements: 1
# length: 68
Return the last day of the month M for the year Y in datenum format.

# name: <cell-element>
# type: string
# elements: 1
# length: 8
fbusdate
# name: <cell-element>
# type: string
# elements: 1
# length: 679
 -- Function File: b = fbusdate (year, month)
 -- Function File: b = fbusdate (year, month, holiday)
 -- Function File: b = fbusdate (year, month, holiday, weekend)
     Return the datenum of the first business day of the YEAR and
     MONTH.  HOLIDAY is a vector of datenums that defines the holidays
     observed (the holidays function is used if not given).  WEEKEND
     defines the days of the week that should be considered weekends;
     [1 0 0 0 0 0 1] (default) indicates that Sunday and Saturday are
     holidays.

     If any of the optional inputs (HOLIDAY, WEEKEND) are empty, then
     the default is used.

     See also: holidays, lbusdate, isbusday, busdate



# name: <cell-element>
# type: string
# elements: 1
# length: 67
Return the datenum of the first business day of the YEAR and MONTH.

# name: <cell-element>
# type: string
# elements: 1
# length: 8
holidays
# name: <cell-element>
# type: string
# elements: 1
# length: 586
 -- Function File: h = holidays (startdate, enddate)
     Return a vector of datenums that were holidays between STARTDATE
     and ENDDATE, inclusive.  These holidays are trading holidays
     observed by the NYSE according to its rule 51.10. It does not take
     into account the exceptions for "unusual business conditions" or
     for additional days that have been called as holidays for one-time
     purposes.

     The complete list can be found at
     http://www.chronos-st.org/NYSE_Observed_Holidays-1885-Present.html

     See also: busdate, lbusdate, isbusday, fbusdate



# name: <cell-element>
# type: string
# elements: 1
# length: 80
Return a vector of datenums that were holidays between STARTDATE and
ENDDATE, in

# name: <cell-element>
# type: string
# elements: 1
# length: 4
hour
# name: <cell-element>
# type: string
# elements: 1
# length: 154
 -- Function File: h = hour (Date)
     Returns the hour from a serial date number or a date string.

     See also: date, datevec, now, minute, second



# name: <cell-element>
# type: string
# elements: 1
# length: 60
Returns the hour from a serial date number or a date string.

# name: <cell-element>
# type: string
# elements: 1
# length: 8
isbusday
# name: <cell-element>
# type: string
# elements: 1
# length: 551
 -- Function File: r = isbusday (refdate)
 -- Function File: r = isbusday (refdate, holiday)
 -- Function File: r = isbusday (refdate, holiday, weekend)
     Return true if the REFDATE is a business date REFDATE.  HOLIDAY is
     a vector of datenums that defines the holidays observed (the
     holidays function is used if not given). WEEKEND defines the days
     of the week that should be considered weekends; [1 0 0 0 0 0 1]
     (default) indicates that Sunday and Saturday are weekends.

     See also: holidays, lbusdate, busdate, fbusdate



# name: <cell-element>
# type: string
# elements: 1
# length: 54
Return true if the REFDATE is a business date REFDATE.

# name: <cell-element>
# type: string
# elements: 1
# length: 8
lbusdate
# name: <cell-element>
# type: string
# elements: 1
# length: 672
 -- Function File: b = lbusdate (year, month)
 -- Function File: b = lbusdate (year, month, holiday)
 -- Function File: b = lbusdate (year, month, holiday, weekend)
     Return the datenum of the last business day of the YEAR and MONTH.
     HOLIDAY is a vector of datenums that defines the holidays observed
     (the holidays function is used if not given).  WEEKEND defines the
     days of the week that should be considered weekends; [1 0 0 0 0 0
     1] (default) indicates that Sunday and Saturday are holidays.

     If any of the optional inputs (HOLIDAY, WEEKEND) are empty, then
     the default is used.

     See also: holidays, fbusdate, isbusday, busdate



# name: <cell-element>
# type: string
# elements: 1
# length: 66
Return the datenum of the last business day of the YEAR and MONTH.

# name: <cell-element>
# type: string
# elements: 1
# length: 9
lweekdate
# name: <cell-element>
# type: string
# elements: 1
# length: 277
 -- Function File: last = lweekdate (weekday, year, month, nextday)
     Returns the last occurrence of WEEKDAY from the MONTH and YEAR.
     If the optional NEXTDAY argument is given, then the week must also
     contain NEXTDAY.

     See also: eomdate, nweekdate, weekday



# name: <cell-element>
# type: string
# elements: 1
# length: 63
Returns the last occurrence of WEEKDAY from the MONTH and YEAR.

# name: <cell-element>
# type: string
# elements: 1
# length: 7
m2xdate
# name: <cell-element>
# type: string
# elements: 1
# length: 966
 -- Function File: exceldatenums = m2xdate (datenums)
 -- Function File: exceldatenums = m2xdate (datenums, convention)
 -- Function File: exceldatenums = m2xdate (datenums, convention,
          "ExcelBug")
     Convert DATENUMS from the internal date format to the format used
     by Microsoft Excel.  If set to 0 (default, Excel for Windows),
     CONVENTION specifies to use the Excel 1900 convention where Jan 1,
     1900 corresponds to Excel serial date number 1.  If set to 1
     (Excel for Mac), CONVENTION specifies to use the Excel 1904
     convention where Jan 1, 1904 corresponds to Excel serial date
     number 0.

     Note that this does not take into account the Excel bug where 1900
     is considered to be a leap year unless you give the "ExcelBug"
     option.

     Excel does not represent dates prior to 1 January 1900 using this
     format, so a warning will be issued if any dates preceed this date.

     See also: datenum, x2mdate



# name: <cell-element>
# type: string
# elements: 1
# length: 80
Convert DATENUMS from the internal date format to the format used by
Microsoft E

# name: <cell-element>
# type: string
# elements: 1
# length: 6
minute
# name: <cell-element>
# type: string
# elements: 1
# length: 156
 -- Function File: m = minute (Date)
     Returns the minute from a serial date number or a date string.

     See also: date, datevec, now, hour, second



# name: <cell-element>
# type: string
# elements: 1
# length: 62
Returns the minute from a serial date number or a date string.

# name: <cell-element>
# type: string
# elements: 1
# length: 5
month
# name: <cell-element>
# type: string
# elements: 1
# length: 169
 -- Function File: mon = month (Date)
     Returns the day of the month from a serial date number or a date
     string.

     See also: date, datevec, now, day, year



# name: <cell-element>
# type: string
# elements: 1
# length: 72
Returns the day of the month from a serial date number or a date string.

# name: <cell-element>
# type: string
# elements: 1
# length: 6
months
# name: <cell-element>
# type: string
# elements: 1
# length: 514
 -- Function File: mos = months (startdate, enddate)
 -- Function File: mos = months (startdate, enddate, endmonthflag)
     Return the number of whole months between STARTDATE and ENDDATE.
     ENDMONTHFLAG defaults to 1.

     If ENDMONTHFLAG is true, then if both the STARTDATE and the
     ENDDATE are end of month dates and ENDDATE has fewer days in the
     month than STARTDATE, ENDMONTHFLAG = 1 treats ENDDATE as the end
     of a month, but ENDMONTHFLAG = 0 does not.

     See also: yeardays, yearfrac



# name: <cell-element>
# type: string
# elements: 1
# length: 64
Return the number of whole months between STARTDATE and ENDDATE.

# name: <cell-element>
# type: string
# elements: 1
# length: 9
nweekdate
# name: <cell-element>
# type: string
# elements: 1
# length: 374
 -- Function File: last = nweekdate (n, weekday, year, month, nextday)
     Returns the Nth occurrence of WEEKDAY from the MONTH and YEAR.  If
     the optional NEXTDAY argument is given, then the week must also
     contain NEXTDAY.  If N is greater than the number of occurrences
     of that day in the month, 0 is returned.

     See also: eomdate, lweekdate, weekday



# name: <cell-element>
# type: string
# elements: 1
# length: 62
Returns the Nth occurrence of WEEKDAY from the MONTH and YEAR.

# name: <cell-element>
# type: string
# elements: 1
# length: 6
second
# name: <cell-element>
# type: string
# elements: 1
# length: 156
 -- Function File: s = second (Date)
     Returns the second from a serial date number or a date string.

     See also: date, datevec, now, hour, minute



# name: <cell-element>
# type: string
# elements: 1
# length: 62
Returns the second from a serial date number or a date string.

# name: <cell-element>
# type: string
# elements: 1
# length: 14
thirdwednesday
# name: <cell-element>
# type: string
# elements: 1
# length: 391
 -- Function File: [begindate, enddate] = thirdwednesday (month, year)
     Find the third Wednesday of the month specified by the MONTH and
     YEAR.  The BEGINDATE is the third Wednesday of the month, and the
     ENDDATE is three months after that.  Outputs are in the form of
     datenums.

     The third Wednesday is used for Eurodollar futures.

     See also: nweekdate, datenum



# name: <cell-element>
# type: string
# elements: 1
# length: 70
Find the third Wednesday of the month specified by the MONTH and YEAR.

# name: <cell-element>
# type: string
# elements: 1
# length: 5
today
# name: <cell-element>
# type: string
# elements: 1
# length: 360
 -- Function File: datenum = today ()
     Returns the current local date as the number of days since Jan 1,
     0000.  By this reckoning, Jan 1, 1970 is day number 719529.

     The returned number corresponds to 00:00:00 today.

     The returned value is also called a "serial date number" (see
     `datenum').

     See also: clock, date, datenum, now



# name: <cell-element>
# type: string
# elements: 1
# length: 71
Returns the current local date as the number of days since Jan 1, 0000.

# name: <cell-element>
# type: string
# elements: 1
# length: 7
x2mdate
# name: <cell-element>
# type: string
# elements: 1
# length: 967
 -- Function File: datenums = x2mdate (exceldatenums)
 -- Function File: datenums = x2mdate (exceldatenums, convention)
 -- Function File: datenums = x2mdate (exceldatenums, convention,
          "ExcelBug")
     Convert DATENUMS from the Microsoft Excel date format to the
     format used by `datenum'.  If set to 0 (default, Excel for
     Windows), CONVENTION specifies to use the Excel 1900 convention
     where Jan 1, 1900 corresponds to Excel serial date number 1.  If
     set to 1 (Excel for Mac), CONVENTION specifies to use the Excel
     1904 convention where Jan 1, 1904 corresponds to Excel serial date
     number 0.

     Note that this does not take into account the Excel bug where 1900
     is considered to be a leap year unless you give the "ExcelBug"
     option.

     Excel does not represent dates prior to 1 January 1900 using this
     format, so a warning will be issued if any dates preceed this date.

     See also: datenum, x2mdate



# name: <cell-element>
# type: string
# elements: 1
# length: 80
Convert DATENUMS from the Microsoft Excel date format to the format
used by `dat

# name: <cell-element>
# type: string
# elements: 1
# length: 4
year
# name: <cell-element>
# type: string
# elements: 1
# length: 150
 -- Function File: y = year (Date)
     Returns the year from a serial date number or a date string.

     See also: date, datevec, now, day, month



# name: <cell-element>
# type: string
# elements: 1
# length: 60
Returns the year from a serial date number or a date string.

# name: <cell-element>
# type: string
# elements: 1
# length: 8
yeardays
# name: <cell-element>
# type: string
# elements: 1
# length: 596
 -- Function File: D = yeardays (Y)
 -- Function File: D = yeardays (Y, B)
     Return the number of days in the year Y with an optional basis B.

     Valid bases
        * 0   actual/actual (default)

        * 1   30/360 (SIA)

        * 2   actual/360

        * 3   actual/365

        * 4   30/360 (PSA)

        * 5   30/360 (IDSA)

        * 6   30/360 (European)

        * 7   actual/365 (Japanese)

        * 8   actual/actual (ISMA)

        * 9   actual/360 (ISMA)

        * 10   actual/365 (ISMA)

        * 11   30/360E (ISMA)

     See also: days365, days360, daysact, daysdif



# name: <cell-element>
# type: string
# elements: 1
# length: 65
Return the number of days in the year Y with an optional basis B.