This file is indexed.

/usr/share/gretl/gretl_cli_fnref.en is in gretl-common 2017d-3build1.

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
 735
 736
 737
 738
 739
 740
 741
 742
 743
 744
 745
 746
 747
 748
 749
 750
 751
 752
 753
 754
 755
 756
 757
 758
 759
 760
 761
 762
 763
 764
 765
 766
 767
 768
 769
 770
 771
 772
 773
 774
 775
 776
 777
 778
 779
 780
 781
 782
 783
 784
 785
 786
 787
 788
 789
 790
 791
 792
 793
 794
 795
 796
 797
 798
 799
 800
 801
 802
 803
 804
 805
 806
 807
 808
 809
 810
 811
 812
 813
 814
 815
 816
 817
 818
 819
 820
 821
 822
 823
 824
 825
 826
 827
 828
 829
 830
 831
 832
 833
 834
 835
 836
 837
 838
 839
 840
 841
 842
 843
 844
 845
 846
 847
 848
 849
 850
 851
 852
 853
 854
 855
 856
 857
 858
 859
 860
 861
 862
 863
 864
 865
 866
 867
 868
 869
 870
 871
 872
 873
 874
 875
 876
 877
 878
 879
 880
 881
 882
 883
 884
 885
 886
 887
 888
 889
 890
 891
 892
 893
 894
 895
 896
 897
 898
 899
 900
 901
 902
 903
 904
 905
 906
 907
 908
 909
 910
 911
 912
 913
 914
 915
 916
 917
 918
 919
 920
 921
 922
 923
 924
 925
 926
 927
 928
 929
 930
 931
 932
 933
 934
 935
 936
 937
 938
 939
 940
 941
 942
 943
 944
 945
 946
 947
 948
 949
 950
 951
 952
 953
 954
 955
 956
 957
 958
 959
 960
 961
 962
 963
 964
 965
 966
 967
 968
 969
 970
 971
 972
 973
 974
 975
 976
 977
 978
 979
 980
 981
 982
 983
 984
 985
 986
 987
 988
 989
 990
 991
 992
 993
 994
 995
 996
 997
 998
 999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
5060
5061
5062
5063
5064
5065
5066
5067
5068
5069
5070
5071
5072
5073
5074
5075
5076
5077
5078
5079
5080
5081
5082
5083
5084
5085
5086
5087
5088
5089
5090
5091
5092
5093
5094
5095
5096
5097
5098
5099
5100
5101
5102
5103
5104
5105
5106
5107
5108
5109
5110
5111
5112
5113
5114
5115
5116
5117
5118
5119
5120
5121
5122
5123
5124
5125
5126
5127
5128
5129
5130
5131
5132
5133
5134
5135
5136
5137
5138
5139
5140
5141
5142
5143
5144
5145
5146
5147
5148
5149
5150
5151
5152
5153
5154
5155
5156
5157
5158
5159
5160
5161
5162
5163
5164
5165
5166
5167
5168
5169
5170
5171
5172
5173
5174
5175
5176
5177
5178
5179
5180
5181
5182
5183
5184
5185
5186
5187
5188
5189
5190
5191
5192
5193
5194
5195
5196
5197
5198
5199
5200
5201
5202
5203
5204
5205
5206
5207
5208
5209
5210
5211
5212
5213
5214
5215
5216
5217
5218
5219
5220
5221
5222
5223
5224
5225
5226
5227
5228
5229
5230
5231
5232
5233
5234
5235
5236
5237
5238
5239
5240
5241
5242
5243
5244
5245
5246
5247
5248
5249
5250
5251
5252
5253
5254
5255
5256
5257
5258
5259
5260
5261
5262
5263
5264
5265
5266
5267
5268
5269
5270
5271
5272
5273
5274
5275
5276
5277
5278
5279
5280
5281
5282
5283
5284
5285
5286
5287
5288
5289
5290
5291
5292
5293
5294
5295
5296
5297
5298
5299
5300
5301
5302
5303
5304
5305
5306
5307
5308
5309
5310
5311
5312
5313
5314
5315
5316
5317
5318
5319
5320
5321
5322
5323
5324
5325
5326
5327
5328
5329
5330
5331
5332
5333
5334
5335
5336
5337
5338
5339
5340
5341
5342
5343
5344
5345
5346
5347
5348
5349
5350
5351
5352
5353
5354
5355
5356
5357
5358
5359
5360
5361
5362
5363
5364
5365
5366
5367
5368
5369
5370
5371
5372
5373
5374
5375
5376
5377
5378
5379
5380
5381
5382
5383
5384
5385
5386
5387
5388
5389
5390
5391
5392
5393
5394
5395
5396
5397
5398
5399
5400
5401
5402
5403
5404
5405
5406
5407
5408
5409
5410
5411
5412
5413
5414
5415
5416
5417
5418
5419
5420
5421
5422
5423
5424
5425
5426
5427
5428
5429
5430
5431
5432
5433
5434
5435
5436
5437
5438
5439
5440
5441
5442
5443
5444
5445
5446
5447
5448
5449
5450
5451
5452
5453
5454
5455
5456
5457
5458
5459
5460
5461
5462
5463
5464
5465
5466
5467
5468
5469
5470
5471
5472
5473
5474
5475
5476
5477
5478
5479
5480
5481
5482
5483
5484
5485
5486
5487
5488
5489
5490
5491
5492
5493
5494
5495
5496
5497
5498
5499
5500
5501
5502
5503
5504
5505
5506
5507
5508
5509
5510
5511
5512
5513
5514
5515
5516
5517
5518
5519
5520
5521
5522
5523
5524
5525
5526
5527
5528
5529
5530
## Accessors
# $ahat
Output:     series

Must follow the estimation of a fixed-effects or random-effects panel data
model. Returns a series containing the estimates of the individual effects.

# $aic
Output:     scalar

Returns the Akaike Information Criterion for the last estimated model, if
available. See chapter 24 of the Gretl User's Guide for details of the
calculation.

# $bic
Output:     scalar

Returns Schwarz's Bayesian Information Criterion for the last estimated
model, if available. See chapter 24 of the Gretl User's Guide for details of
the calculation.

# $chisq
Output:     scalar

Returns the overall chi-square statistic from the last estimated model, if
available.

# $coeff
Output:     matrix or scalar
Argument:   s (name of coefficient, optional)

With no arguments, $coeff returns a column vector containing the estimated
coefficients for the last model. With the optional string argument it
returns a scalar, namely the estimated parameter named s. See also
"$stderr", "$vcv".

Example:

	  open bjg
	  arima 0 1 1 ; 0 1 1 ; lg 
	  b = $coeff               # gets a vector
	  macoef = $coeff(theta_1) # gets a scalar

If the "model" in question is actually a system, the result depends on the
characteristics of the system: for VARs and VECMs the value returned is a
matrix with one column per equation, otherwise it is a column vector
containing the coefficients from the first equation followed by those from
the second equation, and so on.

# $command
Output:     string

Must follow the estimation of a model; returns the command word, for example
ols or probit.

# $compan
Output:     matrix

Must follow the estimation of a VAR or a VECM; returns the companion matrix.

# $datatype
Output:     scalar

Returns an integer value representing the sort of dataset that is currently
loaded: 0 = no data; 1 = cross-sectional (undated) data; 2 = time-series
data; 3 = panel data.

# $depvar
Output:     string

Must follow the estimation of a single-equation model; returns the name of
the dependent variable.

# $df
Output:     scalar

Returns the degrees of freedom of the last estimated model. If the last
model was in fact a system of equations, the value returned is the degrees
of freedom per equation; if this differs across the equations then the value
given is the number of observations minus the mean number of coefficients
per equation (rounded up to the nearest integer).

# $diagpval
Output:     scalar

Must follow estimation of a system of equations. Returns the P-value
associated with the "$diagtest" statistic.

# $diagtest
Output:     scalar

Must follow estimation of a system of equations. Returns the test statistic
for the null hypothesis that the cross-equation covariance matrix is
diagonal. This is the Breusch-Pagan test except when the estimator is
(unrestricted) iterated SUR, in which case it is a Likelihood Ratio test.
See chapter 30 of the Gretl User's Guide for details; see also "$diagpval".

# $dwpval
Output:     scalar

Returns the p-value for the Durbin-Watson statistic for the model last
estimated (if available), computed using the Imhof procedure.

Due to the limited precision of computer arithmetic, the Imhof integral can
go negative when the Durbin-Watson statistic is close to its lower bound. In
that case the accessor returns NA. Since any other failure mode results in
an error being flagged it is probably safe to assume that an NA value means
the true p-value is "very small", although we are unable to quantify it.

# $ec
Output:     matrix

Must follow the estimation of a VECM; returns a matrix containing the error
correction terms. The number of rows equals the number of observations used
and the number of columns equals the cointegration rank of the system.

# $error
Output:     scalar

Returns the program's internal error code, which will be non-zero in case an
error has occurred but has been trapped using "catch". Note that using this
accessor causes the internal error code to be reset to zero. If you want to
get the error message associated with a given $error you need to store the
value in a temporary variable, as in

	  err = $error
	  if (err)
	      printf "Got error %d (%s)\n", err, errmsg(err);
	  endif

See also "catch", "errmsg".

# $ess
Output:     scalar

Returns the error sum of squares of the last estimated model, if available.

# $evals
Output:     matrix

Must follow the estimation of a VECM; returns a vector containing the
eigenvalues that are used in computing the trace test for cointegration.

# $fcast
Output:     matrix

Must follow the "fcast" forecasting command; returns the forecast values as
a matrix. If the model on which the forecast was based is a system of
equations the returned matrix will have one column per equation, otherwise
it is a column vector.

# $fcse
Output:     matrix

Must follow the "fcast" forecasting command; returns the standard errors of
the forecasts, if available, as a matrix. If the model on which the forecast
was based is a system of equations the returned matrix will have one column
per equation, otherwise it is a column vector.

# $fevd
Output:     matrix

Must follow estimation of a VAR. Returns a matrix containing the forecast
error variance decomposition (FEVD). This matrix has h rows where h is the
forecast horizon, which can be chosen using set horizon or otherwise is set
automatically based on the frequency of the data.

For a VAR with p variables, the matrix has p^2 columns: the first p columns
contain the FEVD for the first variable in the VAR; the second p columns the
FEVD for the second variable; and so on. The (decimal) fraction of the
forecast error for variable i attributable to innovation in variable j is
therefore found in column (i - 1)p + j.

# $Fstat
Output:     scalar

Returns the overall F-statistic from the last estimated model, if available.

# $gmmcrit
Output:     scalar

Must follow a gmm block. Returns the value of the GMM objective function at
its minimum.

# $h
Output:     series

Must follow a garch command. Returns the estimated conditional variance
series.

# $hausman
Output:     row vector

Must follow estimation of a model via either tsls or panel with the random
effects option. Returns a 1 x 3 vector containing the value of the Hausman
test statistic, the corresponding degrees of freedom and the p-value for the
test, in that order.

# $hqc
Output:     scalar

Returns the Hannan-Quinn Information Criterion for the last estimated model,
if available. See chapter 24 of the Gretl User's Guide for details of the
calculation.

# $huge
Output:     scalar

Returns a very large positive number. By default this is 1.0E100, but the
value can be changed using the "set" command.

# $jalpha
Output:     matrix

Must follow the estimation of a VECM, and returns the loadings matrix. It
has as many rows as variables in the VECM and as many columns as the
cointegration rank.

# $jbeta
Output:     matrix

Must follow the estimation of a VECM, and returns the cointegration matrix.
It has as many rows as variables in the VECM (plus the number of exogenous
variables that are restricted to the cointegration space, if any), and as
many columns as the cointegration rank.

# $jvbeta
Output:     square matrix

Must follow the estimation of a VECM, and returns the estimated covariance
matrix for the elements of the cointegration vectors.

In the case of unrestricted estimation, this matrix has a number of rows
equal to the unrestricted elements of the cointegration space after the
Phillips normalization. If, however, a restricted system is estimated via
the restrict command with the --full option, a singular matrix with (n+m)r
rows will be returned (n being the number of endogenous variables, m the
number of exogenous variables that are restricted to the cointegration
space, and r the cointegration rank).

Example: the code

	  open denmark.gdt
	  vecm 2 1 LRM LRY IBO IDE --rc --seasonals -q
	  s0 = $jvbeta

	  restrict --full
	    b[1,1] = 1
	    b[1,2] = -1
	    b[1,3] + b[1,4] = 0
	  end restrict
	  s1 = $jvbeta

	  print s0
	  print s1

produces the following output.

	  s0 (4 x 4)

          0.019751     0.029816  -0.00044837     -0.12227 
          0.029816      0.31005     -0.45823     -0.18526 
	  -0.00044837     -0.45823       1.2169    -0.035437 
          -0.12227     -0.18526    -0.035437      0.76062 

	  s1 (5 x 5)

	  0.0000       0.0000       0.0000       0.0000       0.0000 
	  0.0000       0.0000       0.0000       0.0000       0.0000 
	  0.0000       0.0000      0.27398     -0.27398    -0.019059 
	  0.0000       0.0000     -0.27398      0.27398     0.019059 
	  0.0000       0.0000    -0.019059     0.019059    0.0014180 

# $lang
Output:     string

Returns a string representing the national language in force currently, if
this can be determined. The string is composed of a two-letter ISO 639-1
language code (for example, en for English, jp for Japanese, el for Greek)
followed by an underscore plus a two-letter ISO 3166-1 country code. Thus
for example Portuguese in Portugal gives pt_PT while Portuguese in Brazil
gives pt_BR.

If the national language cannot be determined, the string "unknown" is
returned.

# $llt
Output:     series

For selected models estimated via Maximum Likelihood, returns the series of
per-observation log-likelihood values. At present this is supported only for
binary logit and probit, tobit and heckit.

# $lnl
Output:     scalar

Returns the log-likelihood for the last estimated model (where applicable).

# $macheps
Output:     scalar

Returns the value of "machine epsilon", which gives an upper bound on the
relative error due to rounding in double-precision floating point
arithmetic.

# $mnlprobs
Output:     matrix

Following estimation of a multinomial logit model (only), retrieves a matrix
holding the estimated probabilities of each possible outcome at each
observation in the model's sample range. Each row represents an observation
and each column an outcome.

# $model
Output:     bundle

Must follow estimation of a single-equation model; returns a bundle
containing many items of data pertaining to the model. All the regular model
accessors are included: these are referenced by keys that are the same as
the regular accessor names, minus the leading dollar sign. So for example
the residuals appear under the key uhat and the error sum of squares under
ess.

Depending on the estimator, additional information may be available; the
keys for such information should hopefully be fairly self-explanatory. To
see what's available you can get a copy of the bundle and print its content,
as in

	  ols y 0 x
	  bundle b = $model
	  print b

# $ncoeff
Output:     integer

Returns the total number of coefficients estimated in the last model.

# $nobs
Output:     integer

Returns the number of observations in the currently selected sample.
Related: "dtmax".

# $nvars
Output:     integer

Returns the number of variables in the dataset (including the constant).

# $obsdate
Output:     series

Applicable when the current dataset is time-series with annual, quarterly,
monthly or decennial frequency, or is dated daily or weekly, or when the
dataset is a panel with time-series information set appropriately (see the
"setobs" command). The returned series holds 8-digit numbers on the pattern
YYYYMMDD (ISO 8601 "basic" date format), which correspond to the day of the
observation, or the first day of the observation period in case of a
time-series frequency less than daily.

Such a series can be helpful when using the "join" command.

# $obsmajor
Output:     series

Applicable when the observations in the current dataset have a major:minor
structure, as in quarterly time series (year:quarter), monthly time series
(year:month), hourly data (day:hour) and panel data (individual:period).
Returns a series holding the major or low-frequency component of each
observation (for example, the year).

See also "$obsminor", "$obsmicro".

# $obsmicro
Output:     series

Applicable when the observations in the current dataset have a
major:minor:micro structure, as in dated daily time series (year:month:day).
Returns a series holding the micro or highest-frequency component of each
observation (for example, the day).

See also "$obsmajor", "$obsminor".

# $obsminor
Output:     series

Applicable when the observations in the current dataset have a major:minor
structure, as in quarterly time series (year:quarter), monthly time series
(year:month), hourly data (day:hour) and panel data (individual:period).
Returns a series holding the minor or high-frequency component of each
observation (for example, the month).

In the case of dated daily data, $obsminor gets the month of each
observation.

See also "$obsmajor", "$obsmicro".

# $pd
Output:     integer

Returns the frequency or periodicity of the data (e.g. 4 for quarterly
data). In the case of panel data the value returned is the time-series
length.

# $pi
Output:     scalar

Returns the value of pi in double precision.

# $pvalue
Output:     scalar or matrix

Returns the p-value of the test statistic that was generated by the last
explicit hypothesis-testing command, if any (for example, chow). See chapter
9 of the Gretl User's Guide for details.

In most cases the return value is a scalar but sometimes it is a matrix (for
example, the trace and lambda-max p-values from the Johansen cointegration
test); in that case the values in the matrix are laid out in the same
pattern as the printed results.

See also "$test".

# $qlrbreak
Output:     scalar

Must follow an invocation of the "qlrtest" command (the QLR test for a
structural break at an unknown point). The value returned is the 1-based
index of the observation at which the test statistic is maximized.

# $rho
Output:     scalar
Argument:   n (scalar, optional)

Without arguments, returns the first-order autoregressive coefficient for
the residuals of the last model. After estimating a model via the ar
command, the syntax $rho(n) returns the corresponding estimate of rho(n).

# $rsq
Output:     scalar

Returns the unadjusted R^2 from the last estimated model, if available.

# $sample
Output:     series

Must follow estimation of a single-equation model. Returns a dummy series
with value 1 for observations used in estimation, 0 for observations within
the currently defined sample range but not used (presumably because of
missing values), and NA for observations outside of the current range.

If you wish to compute statistics based on the sample that was used for a
given model, you can do, for example:

	  ols y 0 xlist
	  genr sdum = $sample
	  smpl sdum --dummy

# $sargan
Output:     row vector

Must follow a tsls command. Returns a 1 x 3 vector, containing the value of
the Sargan over-identification test statistic, the corresponding degrees of
freedom and p-value, in that order. If the model is exactly identified, the
statistic is unavailable, and trying to access it provokes an error.

# $sigma
Output:     scalar or matrix

Requires that a model has been estimated. If the last model was a single
equation, returns the (scalar) Standard Error of the Regression (or in other
words, the standard deviation of the residuals, with an appropriate degrees
of freedom correction). If the last model was a system of equations, returns
the cross-equation covariance matrix of the residuals.

# $stderr
Output:     matrix or scalar
Argument:   s (name of coefficient, optional)

With no arguments, $stderr returns a column vector containing the standard
error of the coefficients for the last model. With the optional string
argument it returns a scalar, namely the standard error of the parameter
named s.

If the "model" in question is actually a system, the result depends on the
characteristics of the system: for VARs and VECMs the value returned is a
matrix with one column per equation, otherwise it is a column vector
containing the coefficients from the first equation followed by those from
the second equation, and so on.

See also "$coeff", "$vcv".

# $stopwatch
Output:     scalar

Must be preceded by set stopwatch, which activates the measurement of CPU
time. The first use of this accessor yields the seconds of CPU time that
have elapsed since the set stopwatch command. At each access the clock is
reset, so subsequent uses of $stopwatch yield the seconds of CPU time since
the previous access.

# $sysA
Output:     matrix

Must follow estimation of a simultaneous equations system. Returns the
matrix of coefficients on the lagged endogenous variables, if any, in the
structural form of the system. See the "system" command.

# $sysB
Output:     matrix

Must follow estimation of a simultaneous equations system. Returns the
matrix of coefficients on the exogenous variables in the structural form of
the system. See the "system" command.

# $sysGamma
Output:     matrix

Must follow estimation of a simultaneous equations system. Returns the
matrix of coefficients on the contemporaneous endogenous variables in the
structural form of the system. See the "system" command.

# $sysinfo
Output:     bundle

Returns a bundle containing information on the capabilities of the gretl
build and the system on which gretl is running. The members of the bundle
are as follows:

  mpi: integer, equals 1 if the system supports MPI (Message Passing
  Interface), otherwise 0.

  omp: integer, equals 1 if gretl is built with support for Open MP,
  otherwise 0.

  nproc: integer, the number of processors available.

  mpimax: integer, the maximum number of MPI processes that can be run in
  parallel. This is zero if MPI is not supported, otherwise it equals the
  local nproc value unless an MPI hosts file has been specified, in which
  case it is the sum of the number of processors or "slots" across all the
  machines referenced in that file.

  wordlen: integer, either 32 or 64 for 32- and 64-bit systems respectively.

  os: string representing the operating system, either linux, osx, windows
  or other.

  hostname: the name of the host machine on which the current gretl process
  is running (with a fallback of localhost in case the name cannot be
  determined).

Note that individual elements in the bundle can be accessed using "dot"
notation without any need to copy the whole bundle under a user-specified
name. For example,

	  if $sysinfo.os == "linux"
	      # do something linux-specific
	  endif

# $T
Output:     integer

Returns the number of observations used in estimating the last model.

# $t1
Output:     integer

Returns the 1-based index of the first observation in the currently selected
sample.

# $t2
Output:     integer

Returns the 1-based index of the last observation in the currently selected
sample.

# $test
Output:     scalar or matrix

Returns the value of the test statistic that was generated by the last
explicit hypothesis-testing command, if any (e.g. chow). See chapter 9 of
the Gretl User's Guide for details.

In most cases the return value is a scalar but sometimes it is a matrix (for
example, the trace and lambda-max statistics from the Johansen cointegration
test); in that case the values in the matrix are laid out in the same
pattern as the printed results.

See also "dpvalue".

# $tmax
Output:     integer

Returns the maximum legal setting for the end of the sample range via the
"smpl" command. In most cases this will equal the number of observations in
the dataset but within a hansl function the $tmax value may be smaller,
since in general data access within functions is limited to the sample range
set by the caller.

Note that $tmax does not in general equal "dnobs", which gives the number of
observations in the current sample range.

# $trsq
Output:     scalar

Returns TR^2 (sample size times R-squared) from the last model, if
available.

# $uhat
Output:     series

Returns the residuals from the last model. This may have different meanings
for different estimators. For example, after an ARMA estimation $uhat will
contain the one-step-ahead forecast error; after a probit model, it will
contain the generalized residuals.

If the "model" in question is actually a system (a VAR or VECM, or system of
simultaneous equations), $uhat with no parameters retrieves the matrix of
residuals, one column per equation.

# $unit
Output:     series

Valid for panel datasets only. Returns a series with value 1 for all
observations on the first unit or group, 2 for observations on the second
unit, and so on.

# $vcv
Output:     matrix or scalar
Arguments:  s1 (name of coefficient, optional)
            s2 (name of coefficient, optional)

With no arguments, $vcv returns a square matrix containing the estimated
covariance matrix for the coefficients of the last model. If the last model
was a single equation, then you may supply the names of two parameters in
parentheses to retrieve the estimated covariance between the parameters
named s1 and s2. See also "$coeff", "$stderr".

This accessor is not available for VARs or VECMs; for models of that sort
see "$sigma" and "$xtxinv".

# $vecGamma
Output:     matrix

Must follow the estimation of a VECM; returns a matrix in which the Gamma
matrices (coefficients on the lagged differences of the cointegrated
variables) are stacked side by side. Each row represents an equation; for a
VECM of lag order p there are p - 1 sub-matrices.

# $version
Output:     scalar

Returns an integer value that codes for the program version. The current
gretl version string takes the form of a 4-digit year followed by a letter
from a to j representing the sequence of releases within the year (for
example, 2015d). The return value from this accessor is formed as 10 times
the year plus the zero-based lexical order of the letter, so 2015d
translates to 20153.

Prior to gretl 2015d, version identifiers took the form x.y.z (three
integers separated by dots), and in that case the accessor value was
calculated as 10000*x + 100*y + z, so that for example 1.10.2 (the last
release under the old scheme) translates as 11002. Numerical order of
$version values is therefore preserved across the change in versioning
scheme.

# $vma
Output:     matrix

Must follow the estimation of a VAR or a VECM; returns a matrix containing
the VMA representation up to the order specified via the set horizon
command. See chapter 28 of the Gretl User's Guide for details.

# $windows
Output:     integer

Returns 1 if gretl is running on MS Windows, otherwise 0. By conditioning on
the value of this variable you can write shell calls that are portable
across different operating systems.

Also see the "shell" command.

# $xlist
Output:     list

If the last model was a single equation, returns the list of regressors. If
the last model was a system of equations, returns the "global" list of
exogenous and predetermined variables (in the same order in which they
appear in "$sysB"). If the last model was a VAR, returns the list of
exogenous regressors, if any.

# $xtxinv
Output:     matrix

Following estimation of a VAR or VECM (only), returns X'X^-1, where X is the
common matrix of regressors used in each of the equations. This accessor is
not available for a VECM estimated with a restriction imposed on α, the
"loadings" matrix.

# $yhat
Output:     series

Returns the fitted values from the last regression.

# $ylist
Output:     list

If the last model estimated was a VAR, VECM or simultaneous system, returns
the associated list of endogenous variables. If the last model was a single
equation, this accessor gives a list with a single element, the dependent
variable. In the special case of the biprobit model the list contains two
elements.

## Functions proper
# abs
Output:     same type as input
Argument:   x (scalar, series or matrix)

Returns the absolute value of x.

# acos
Output:     same type as input
Argument:   x (scalar, series or matrix)

Returns the arc cosine of x, that is, the value whose cosine is x. The
result is in radians; the input should be in the range -1 to 1.

# acosh
Output:     same type as input
Argument:   x (scalar, series or matrix)

Returns the inverse hyperbolic cosine of x (positive solution). x should be
greater than 1; otherwise, NA is returned. See also "cosh".

# aggregate
Output:     matrix
Arguments:  x (series or list)
            byvar (series or list)
            funcname (string, optional)

In the most minimal usage, x is set to null, byvar is a single series and
the third argument is omitted. In that case the return value is a matrix
with two columns holding, respectively, the distinct values of byvar, sorted
in ascending order, and the count of observations at which byvar takes on
each of these values. For example,

	  open data4-1
	  eval aggregate(null, bedrms)

will show that the series bedrms has values 3 (with count 5) and 4 (with
count 9).

If x and byvar are both individual series and the third argument is given,
the return value is a matrix with three columns holding, respectively, the
distinct values of byvar, sorted in ascending order; the count of
observations at which byvar takes on each of these values; and the values of
the statistic specified by funcname calculated on series x, using only those
observations at which byvar takes on the value given in the first column.

More generally, if byvar is a list with n members then the left-hand n
columns hold the combinations of the distinct values of each of the n series
and the count column holds the number of observations at which each
combination is realized. If x is a list with m members then the rightmost m
columns hold the values of the specified statistic for each of the x
variables, again calculated on the sub-sample indicated in the first
column(s).

The following values of funcname are supported "natively": "sum", "sumall",
"mean", "sd", "var", "sst", "skewness", "kurtosis", "min", "max", "median",
"nobs" and "gini". Each of these functions takes a series argument and
returns a scalar value, and in that sense can be said to "aggregate" the
series in some way. You may give the name of a user-defined function as the
aggregator; like the built-ins, such a function must take a single series
argument and return a scalar value.

Note that although a count of cases is provided automatically the nobs
function is not redundant as an aggregator, since it gives the number of
valid (non-missing) observations on x at each byvar combination.

For a simple example, suppose that region represents a coding of
geographical region using integer values 1 to n, and income represents
household income. Then the following would produce an n x 3 matrix holding
the region codes, the count of observations in each region, and mean
household income for each of the regions:

	  matrix m = aggregate(income, region, mean)

For an example using lists, let gender be a male/female dummy variable, let
race be a categorical variable with three values, and consider the
following:

	  list BY = gender race
	  list X = income age
	  matrix m = aggregate(X, BY, sd)

The aggregate call here will produce a 6 x 5 matrix. The first two columns
hold the 6 distinct combinations of gender and race values; the middle
column holds the count for each of these combinations; and the rightmost two
columns contain the sample standard deviations of income and age.

Note that if byvar is a list, some combinations of the byvar values may not
be present in the data (giving a count of zero). In that case the value of
the statistics for x are recorded as NaN (not a number). If you want to
ignore such cases you can use the "selifr" function to select only those
rows that have a non-zero count. The column to test is one place to the
right of the number of byvar variables, so we can do:

	  matrix m = aggregate(X, BY, sd)
	  scalar c = nelem(BY)
	  m = selifr(m, m[,c+1])

# argname
Output:     string
Argument:   s (string)

For s the name of a parameter to a user-defined function, returns the name
of the corresponding argument, or an empty string if the argument was
anonymous.

# array
Output:     see below
Argument:   n (integer)

The basic "constructor" function for a new array variable. In using this
function you must specify a type (in plural form) for the array: strings,
matrices, bundles or lists. The return value is an array of the specified
type with n elements, each of which is initialized as "empty" (e.g.
zero-length string, null matrix). Examples of usage:

	  strings S = array(5)
	  matrices M = array(3)

See also "defarray".

# asin
Output:     same type as input
Argument:   x (scalar, series or matrix)

Returns the arc sine of x, that is, the value whose sine is x. The result is
in radians; the input should be in the range -1 to 1.

# asinh
Output:     same type as input
Argument:   x (scalar, series or matrix)

Returns the inverse hyperbolic sine of x. See also "sinh".

# atan
Output:     same type as input
Argument:   x (scalar, series or matrix)

Returns the arc tangent of x, that is, the value whose tangent is x. The
result is in radians.

See also "cos", "sin", "tan".

# atanh
Output:     same type as input
Argument:   x (scalar, series or matrix)

Returns the inverse hyperbolic tangent of x. See also "tanh".

# atof
Output:     scalar
Argument:   s (string)

Closely related to the C library function of the same name. Returns the
result of converting the string s (or the leading portion thereof, after
discarding any initial white space) to a floating-point number. Unlike C's
atof, however, the decimal character is always assumed (for reasons of
portability) to be ".". Any characters that follow the portion of s that
converts to a floating-point number under this assumption are ignored.

If none of s (following any discarded white space) is convertible under the
stated assumption, NA is returned.

	  # examples
	  x = atof("1.234") # gives x = 1.234 
	  x = atof("1,234") # gives x = 1
	  x = atof("1.2y")  # gives x = 1.2
	  x = atof("y")     # gives x = NA
	  x = atof(",234")  # gives x = NA

See also "sscanf" for more flexible string to numeric conversion.

# bessel
Output:     same type as input
Arguments:  type (character)
            v (scalar)
            x (scalar, series or matrix)

Computes one of the Bessel function variants for order v and argument x. The
return value is of the same type as x. The specific function is selected by
the first argument, which must be J, Y, I, or K. A good discussion of the
Bessel functions can be found on Wikipedia; here we give a brief account.

case J: Bessel function of the first kind. Resembles a damped sine wave.
Defined for real v and x, but if x is negative then v must be an integer.

case Y: Bessel function of the second kind. Defined for real v and x but has
a singularity at x = 0.

case I: Modified Bessel function of the first kind. An exponentially growing
function. Acceptable arguments are as for case J.

case K: Modified Bessel function of the second kind. An exponentially
decaying function. Diverges at x = 0 and is not defined for negative x.
Symmetric around v = 0.

# BFGSmax
Output:     scalar
Arguments:  &b (reference to matrix)
            f (function call)
            g (function call, optional)

Numerical maximization via the method of Broyden, Fletcher, Goldfarb and
Shanno. On input the vector b should hold the initial values of a set of
parameters, and the argument f should specify a call to a function that
calculates the (scalar) criterion to be maximized, given the current
parameter values and any other relevant data. If the object is in fact
minimization, this function should return the negative of the criterion. On
successful completion, BFGSmax returns the maximized value of the criterion,
and b holds the parameter values which produce the maximum.

The optional third argument provides a means of supplying analytical
derivatives (otherwise the gradient is computed numerically). The gradient
function call g must have as its first argument a pre-defined matrix that is
of the correct size to contain the gradient, given in pointer form. It also
must take the parameter vector as an argument (in pointer form or
otherwise). Other arguments are optional.

For more details and examples see the chapter on numerical methods in
chapter 33 of the Gretl User's Guide. See also "BFGScmax", "NRmax", "fdjac",
"simann".

# BFGSmin
Output:     scalar

An alias for "BFGSmax"; if called under this name the function acts as a
minimizer.

# BFGScmax
Output:     scalar
Arguments:  &b (reference to matrix)
            bounds (matrix)
            f (function call)
            g (function call, optional)

Constrained numerical maximization using L-BFGS-B (limited memory BFGS, see
Byrd, Lu, Nocedal and Zhu, 1995). On input the vector b should hold the
initial values of a set of parameters, bounds should hold bounds on the
parameter values (see below), and f should specify a call to a function that
calculates the (scalar) criterion to be maximized, given the current
parameter values and any other relevant data. If the object is in fact
minimization, this function should return the negative of the criterion. On
successful completion, BFGScmax returns the maximized value of the
criterion, subject to the constraints in bounds, and b holds the parameter
values which produce the maximum.

The bounds matrix must have 3 columns and as many rows as there are
constrained elements in the parameter vector. The first element on a given
row is the (1-based) index of the constrained parameter; the second and
third are the lower and upper bounds, respectively. The values -$huge and
$huge should be used to indicate that the parameter is unconstrained
downward or upward, respectively. For example, the following is the way to
specify that the second element of the parameter vector must be
non-negative:

	  matrix bounds = {2, 0, $huge}

The optional fourth argument provides a means of supplying analytical
derivatives (otherwise the gradient is computed numerically). The gradient
function call g must have as its first argument a pre-defined matrix that is
of the correct size to contain the gradient, given in pointer form. It also
must take the parameter vector as an argument (in pointer form or
otherwise). Other arguments are optional.

For more details and examples see the chapter on numerical methods in
chapter 33 of the Gretl User's Guide. See also "BFGSmax", "NRmax", "fdjac",
"simann".

# BFGScmin
Output:     scalar

An alias for "BFGScmax"; if called under this name the function acts as a
minimizer.

# bkfilt
Output:     series
Arguments:  y (series)
            f1 (integer, optional)
            f2 (integer, optional)
            k (integer, optional)

Returns the result from application of the Baxter-King bandpass filter to
the series y. The optional parameters f1 and f2 represent, respectively, the
lower and upper bounds of the range of frequencies to extract, while k is
the approximation order to be used.

If these arguments are not supplied then the default values depend on the
periodicity of the dataset. For yearly data the defaults for f1, f2 and k
are 2, 8 and 3, respectively; for quarterly data, 6, 32 and 12; for monthly
data, 18, 96 and 36. These values are chosen to match the most common choice
among practitioners, that is to use this filter for extracting the "business
cycle" frequency component; this, in turn, is commonly defined as being
between 18 months and 8 years. The filter, per default choice, spans 3 years
of data.

If f2 is greater than or equal to the number of available observations, then
the "low-pass" version of the filter will be run and the resulting series
should be taken as an estimate of the trend component, rather than the
cycle. See also "bwfilt", "hpfilt".

# boxcox
Output:     series
Arguments:  y (series)
            d (scalar)

Returns the Box-Cox transformation with parameter d for the positive series
y.

The transformed series is (y^d - 1)/d for d not equal to zero, or log(y) for
d = 0.

# bread
Output:     bundle
Arguments:  fname (string)
            import (boolean, optional)

Reads a bundle from a text file. The string fname must contain the name of
the file from which the bundle is to be read. If this name has the suffix
".gz" it is assumed that gzip compression has been applied in writing the
file.

The file in question should be an appropriately defined XML file: it should
contain a gretl-bundle element, which is used to store zero or more
bundled-item elements. For example,

	  <?xml version="1.0" encoding="UTF-8"?>
	  <gretl-bundle name="temp">
          <bundled-item key="s" type="string">moo</bundled-item>
          <bundled-item key="x" type="scalar">3</bundled-item>
	  </gretl-bundle>

As you may expect, such files are generated automatically by the companion
function "bwrite".

If the file name does not contain a full path specification, it will be
looked for in several "likely" locations, beginning with the currently set
"workdir". However, if a non-zero value is given for the optional import
argument, the input file is looked for in the user's "dot" directory. In
this case the fname argument should be a plain filename, without any path
component.

Should an error occur (such as the file being badly formatted or
inaccessible), an error is returned via the "$error" accessor.

See also "mread", "bwrite".

# bwfilt
Output:     series
Arguments:  y (series)
            n (integer)
            omega (scalar)

Returns the result from application of a low-pass Butterworth filter with
order n and frequency cutoff omega to the series y. The cutoff is expressed
in degrees and must be greater than 0 and less than 180. Smaller cutoff
values restrict the pass-band to lower frequencies and hence produce a
smoother trend. Higher values of n produce a sharper cutoff, at the cost of
possible numerical instability.

Inspecting the periodogram of the target series is a useful preliminary when
you wish to apply this function. See chapter 26 of the Gretl User's Guide
for details. See also "bkfilt", "hpfilt".

# bwrite
Output:     integer
Arguments:  B (bundle)
            fname (string)
            export (boolean, optional)

Writes the bundle B to an XML file named fname. For a summary description of
its format, see "bread". If file fname already exists, it will be
overwritten. The return value is 0 on successful completion; if an error
occurs, such as the file being unwritable, the return value will be
non-zero.

The output file will be written in the currently set "workdir", unless the
filename string contains a full path specification. However, if a non-zero
value is given for the export argument, the output file will be written into
the user's "dot" directory. In this case a plain filename, without any path
component, should be given for the second argument.

By default, the XML file is written uncompressed, but if fname has the
extension .gz then gzip compression is applied.

See also "bread", "mwrite".

# cdemean
Output:     matrix
Argument:   X (matrix)

Centers the columns of matrix X around their means.

# cdf
Output:     same type as input
Arguments:  d (string)
            ... (see below)
            x (scalar, series or matrix)
Examples:   p1 = cdf(N, -2.5)
            p2 = cdf(X, 3, 5.67)
            p3 = cdf(D, 0.25, -1, 1)

Cumulative distribution function calculator. Returns P(X <= x), where the
distribution of X is determined by the string d. Between the arguments d and
x, zero or more additional scalar arguments are required to specify the
parameters of the distribution, as follows (but note that the normal
distribution has its own convenience function, "cnorm").

  Standard normal (c = z, n, or N): no extra arguments

  Bivariate normal (D): correlation coefficient

  Student's t (t): degrees of freedom

  Chi square (c, x, or X): degrees of freedom

  Snedecor's F (f or F): df (num.); df (den.)

  Gamma (g or G): shape; scale

  Binomial (b or B): probability; number of trials

  Poisson (p or P): mean

  Exponential (exp): scale

  Weibull (w or W): shape; scale

  Generalized Error (E): shape

  Non-central chi square (ncX): df, non-centrality parameter

  Non-central F (ncF): df (num.), df (den.), non-centrality parameter

  Non-central t (nct): df, non-centrality parameter

Note that most cases have aliases to help memorizing the codes. The
bivariate normal case is special: the syntax is x = cdf(D, rho, z1, z2)
where rho is the correlation between the variables z1 and z2.

See also "pdf", "critical", "invcdf", "pvalue".

# cdiv
Output:     matrix
Arguments:  X (matrix)
            Y (matrix)

Complex division. The two arguments must have the same number of rows, n,
and either one or two columns. The first column contains the real part and
the second (if present) the imaginary part. The return value is an n x 2
matrix or, if the result has no imaginary part, an n-vector. See also
"cmult".

# cdummify
Output:     list
Argument:   L (list)

This function returns a list in which each series in L that has the "coded"
attribute is replaced by a set of dummy variables representing each of its
coded values, with the least value omitted. If L contains no coded series
the return value will be identical to L.

The generated dummy variables, if any, are named on the pattern Dvarname_vi
where vi is the i^th represented value of the coded variable. In case any
values are negative, "m" is inserted before the (absolute) value of vi.

For example, suppose L contains a coded series named C1 with values -9, -7,
0, 1 and 2. Then the generated dummies will be DC1_m7 (coding for C1 = -7),
DC1_0 (coding for C1 = 0), and so on.

See also "dummify", "getinfo".

# ceil
Output:     same type as input
Argument:   x (scalar, series or matrix)

Ceiling function: returns the smallest integer greater than or equal to x.
See also "floor", "int".

# cholesky
Output:     square matrix
Argument:   A (positive definite matrix)

Performs a Cholesky decomposition of the matrix A, which is assumed to be
symmetric and positive definite. The result is a lower-triangular matrix L
which satisfies A = LL'. The function will fail if A is not symmetric or not
positive definite. See also "psdroot".

# chowlin
Output:     matrix
Arguments:  Y (matrix)
            xfac (integer)
            X (matrix, optional)

Expands the input data, Y, to a higher frequency, using the interpolation
method of Chow and Lin (1971). It is assumed that the columns of Y represent
data series; the returned matrix has as many columns as Y and xfac times as
many rows.

The second argument represents the expansion factor: it should be 3 for
expansion from quarterly to monthly or 4 for expansion from annual to
quarterly, these being the only supported factors. The optional third
argument may be used to provide a matrix of covariates at the higher
(target) frequency.

The regressors used by default are a constant and quadratic trend. If X is
provided, its columns are used as additional regressors; it is an error if
the number of rows in X does not equal xfac times the number of rows in Y.

# cmult
Output:     matrix
Arguments:  X (matrix)
            Y (matrix)

Complex multiplication. The two arguments must have the same number of rows,
n, and either one or two columns. The first column contains the real part
and the second (if present) the imaginary part. The return value is an n x 2
matrix, or, if the result has no imaginary part, an n-vector. See also
"cdiv".

# cnorm
Output:     same type as input
Argument:   x (scalar, series or matrix)

Returns the cumulative distribution function for a standard normal. See also
"dnorm", "qnorm".

# cnumber
Output:     scalar
Argument:   X (matrix)

Returns the condition number of the n x k matrix X, as defined in Belsley,
Kuh and Welsch (1980). If the columns of X are mutually orthogonal the
condition number of X is unity. Conversely, a large value of the condition
number is an indicator of multicollinearity; "large" is often taken to mean
50 or greater (sometimes 30 or greater).

The steps in the calculation are: (1) form a matrix Z whose columns are the
columns of X divided by their respective Euclidean norms; (2) form Z'Z and
obtain its eigenvalues; and (3) compute the square root of the ratio of the
largest to the smallest eigenvalue.

See also "rcond".

# colname
Output:     string
Arguments:  M (matrix)
            col (integer)

Retrieves the name for column col of matrix M. If M has no column names
attached the value returned is an empty string; if col is out of bounds for
the given matrix an error is flagged. See also "colnames".

Example:

	  matrix A = { 11, 23, 13 ; 54, 15, 46 }
	  colnames(A, "Col_A Col_B Col_C")
	  string name = colname(A, 3)
	  print name

# colnames
Output:     scalar
Arguments:  M (matrix)
            S (array of strings or list)

Attaches names to the columns of the T x k matrix M. If S is a named list,
the names are taken from the names of the listed series; the list must have
k members. If S is an array of strings, it should contain k elements. For
backward compatibility, a single string may also be given as the second
argument; in that case it should contain k space-separated substrings.

The return value is 0 on successful completion, non-zero on error. See also
"rownames".

Example:

	  matrix M = {1, 2; 2, 1; 4, 1}
	  strings S = array(2)
	  S[1] = "Col1"
	  S[2] = "Col2"
	  colnames(M, S)
	  print M

# cols
Output:     integer
Argument:   X (matrix)

Returns the number of columns of X. See also "mshape", "rows", "unvech",
"vec", "vech".

# corr
Output:     scalar
Arguments:  y1 (series or vector)
            y2 (series or vector)

Computes the correlation coefficient between y1 and y2. The arguments should
be either two series, or two vectors of the same length. See also "cov",
"mcov", "mcorr", "npcorr".

# corrgm
Output:     matrix
Arguments:  x (series, matrix or list)
            p (integer)
            y (series or vector, optional)

If only the first two arguments are given, computes the correlogram for x
for lags 1 to p. Let k represent the number of elements in x (1 if x is a
series, the number of columns if x is a matrix, or the number of
list-members is x is a list). The return value is a matrix with p rows and
2k columns, the first k columns holding the respective autocorrelations and
the remainder the respective partial autocorrelations.

If a third argument is given, this function computes the cross-correlogram
for each of the k elements in x and y, from lead p to lag p. The returned
matrix has 2p + 1 rows and k columns. If x is series or list and y is a
vector, the vector must have just as many rows as there are observations in
the current sample range.

# cos
Output:     same type as input
Argument:   x (scalar, series or matrix)

Returns the cosine of x. See also "sin", "tan", "atan".

# cosh
Output:     same type as input
Argument:   x (scalar, series or matrix)

Returns the hyperbolic cosine of x.

See also "acosh", "sinh", "tanh".

# cov
Output:     scalar
Arguments:  y1 (series or vector)
            y2 (series or vector)

Returns the covariance between y1 and y2. The arguments should be either two
series, or two vectors of the same length. See also "corr", "mcov", "mcorr".

# critical
Output:     same type as input
Arguments:  c (character)
            ... (see below)
            p (scalar, series or matrix)
Examples:   c1 = critical(t, 20, 0.025)
            c2 = critical(F, 4, 48, 0.05)

Critical value calculator. Returns x such that P(X > x) = p, where the
distribution X is determined by the character c. Between the arguments c and
p, zero or more additional scalar arguments are required to specify the
parameters of the distribution, as follows.

  Standard normal (c = z, n, or N): no extra arguments

  Student's t (t): degrees of freedom

  Chi square (c, x, or X): degrees of freedom

  Snedecor's F (f or F): df (num.); df (den.)

  Binomial (b or B): probability; trials

  Poisson (p or P): mean

See also "cdf", "invcdf", "pvalue".

# cum
Output:     same type as input
Argument:   x (series or matrix)

Cumulates x (that is, creates a running sum). When x is a series, produces a
series y each of whose elements is the sum of the values of x to date; the
starting point of the summation is the first non-missing observation in the
currently selected sample. When x is a matrix, its elements are cumulated by
columns.

See also "diff".

# curl
Output:     scalar
Argument:   &b (reference to bundle)

Provides a somewhat flexible means of obtaining a text buffer containing
data from an internet server, using libcurl. On input the bundle b must
contain a string named URL which gives the full address of the resource on
the target host. Other optional elements are as follows.

  "header": a string specifying an HTTP header to be sent to the host.

  "postdata": a string holding data to be sent to the host.

The header and postdata fields are intended for use with an HTTP POST
request; if postdata is present the POST method is implicit, otherwise the
GET method is implicit. (But note that for straightforward GET requests
"readfile" offers a simpler interface.)

One other optional bundle element is recognized: if a scalar named include
is present and has a non-zero value, this is taken as a request to include
the header received from the host with the output body.

On completion of the request, the text received from the server is added to
the bundle under the key "output".

If an error occurs in formulating the request (for example there's no URL on
input) the function fails, otherwise it returns 0 if the request succeeds or
non-zero if it fails, in which case the error message from the curl library
is added to the bundle under the key "errmsg". Note, however, that "success"
in this sense does not necessarily mean you got the data you wanted; all it
means is that some response was received from the server. You must check the
content of the output buffer (which may in fact be a message such as "Page
not found").

Here is an example of use: downloading some data from the US Bureau of Labor
Statistics site, which requires sending a JSON query. Note the use of
"sprintf" to embed double-quotes in the POST data.

	  bundle req
	  req.URL = "http://api.bls.gov/publicAPI/v1/timeseries/data/"
	  req.include = 1
	  req.header = "Content-Type: application/json"
	  string s = sprintf("{\"seriesid\":[\"LEU0254555900\"]}")
	  req.postdata = s
	  err = curl(&req)
	  if err == 0
	      s = req.output
	      string line
	      loop while getline(s, line) --quiet
	          printf "%s\n", line
	      endloop
	  endif

See also the functions "jsonget" and "xmlget" for means of processing JSON
and XML data received, respectively.

# dayspan
Output:     integer
Arguments:  ed1 (integer)
            ed2 (integer)
            weeklen (integer)

Returns the number of (relevant) days between the epoch days ed1 and ed2,
inclusive. The weeklen, which must equal 5, 6 or 7, gives the number of days
in the week that should be counted (a value of 6 omits Sundays, and a value
of 5 omits both Saturdays and Sundays).

To obtain epoch days from the more familiar form of dates, see "epochday".
Related: see "smplspan".

# defarray
Output:     see below
Argument:   ... (see below)

Enables the definition of an array variable in extenso, by providing one or
more elements. In using this function you must specify a type (in plural
form) for the array: strings, matrices, bundles or lists. Each of the
arguments must evaluate to an object of the specified type. On successful
completion, the return value is an array of n elements, where n is the
number of arguments.

	  strings S = defarray("foo", "bar", "baz")
	  matrices M = defarray(I(3), X'X, A*B, P[1:])

See also "array".

# defbundle
Output:     bundle
Argument:   ... (see below)

Enables the initialization of a bundle variable in extenso, by providing
zero or more pairs of the form key, member. If we count the arguments from
1, every odd-numbered argument must evaluate to a string (key) and every
even-numbered argument must evaluate to an object of a type that can be
included in a bundle.

A couple of simple examples:

	  bundle b1 = defbundle("s", "Sample string", "m", I(3))
	  bundle b2 = defbundle("yn", normal(), "x", 5)

The first example creates a bundle with members a string and a matrix; the
second, a bundle with a series member and a scalar member. Note that you
cannot specify a type for each argument when using this function, so you
must accept the "natural" type of the argument in question. If you wanted to
add a series with constant value 5 to a bundle named b1 it would be
necessary to do something like the following (after declaring b1):

	  series b1.s5 = 5

If no arguments are given to this function it is equivalent to creating an
empty bundle (or to emptying an existing bundle of its content), as could
also be done via

	  bundle b = null

# deflist
Output:     list
Argument:   ... (see below)

Defines a list (of named series), given one or more suitable arguments. Each
argument must be either a named series (given by name or integer ID number)
or a list (given by the name of a previously named list or by an expression
which evaluates to a list).

One point to note: this function simply concatenates the series and/or lists
given as arguments to produce the list that it returns. If the intent is
that the return value does not contain duplicates (does not reference any
given series more than once), it is up to the caller to ensure that
requirement is satisfied.

# deseas
Output:     series
Arguments:  x (series)
            c (character, optional)

Depends on having TRAMO/SEATS or X-12-ARIMA installed. Returns a
deseasonalized (seasonally adjusted) version of the input series x, which
must be a quarterly or monthly time series. To use X-12-ARIMA give X as the
second argument; to use TRAMO give T. If the second argument is omitted then
X-12-ARIMA is used.

Note that if the input series has no detectable seasonal component this
function will fail. Also note that both TRAMO/SEATS and X-12-ARIMA offer
numerous options; deseas calls them with all options at their default
settings. For both programs, the seasonal factors are calculated on the
basis of an automatically selected ARIMA model. One difference between the
programs which can sometimes make a substantial difference to the results is
that by default TRAMO performs a prior adjustment for outliers while
X-12-ARIMA does not.

# det
Output:     scalar
Argument:   A (square matrix)

Returns the determinant of A, computed via the LU factorization. See also
"ldet", "rcond", "cnumber".

# diag
Output:     matrix
Argument:   X (matrix)

Returns the principal diagonal of X in a column vector. Note: if X is an m x
n matrix, the number of elements of the output vector is min(m, n). See also
"tr".

# diagcat
Output:     matrix
Arguments:  A (matrix)
            B (matrix)

Returns the direct sum of A and B, that is a matrix holding A in its
north-west corner and B in its south-east corner. If both A and B are
square, the resulting matrix is block-diagonal.

# diff
Output:     same type as input
Argument:   y (series, matrix or list)

Computes first differences. If y is a series, or a list of series, starting
values are set to NA. If y is a matrix, differencing is done by columns and
starting values are set to 0.

When a list is returned, the individual variables are automatically named
according to the template d_ varname where varname is the name of the
original series. The name is truncated if necessary, and may be adjusted in
case of non-uniqueness in the set of names thus constructed.

See also "cum", "ldiff", "sdiff".

# digamma
Output:     same type as input
Argument:   x (scalar, series or matrix)

Returns the digamma (or Psi) function of x, that is the derivative of the
log of the Gamma function.

# dnorm
Output:     same type as input
Argument:   x (scalar, series or matrix)

Returns the density of the standard normal distribution at x. To get the
density for a non-standard normal distribution at x, pass the z-score of x
to the dnorm function and multiply the result by the Jacobian of the z
transformation, namely 1 over sigma, as illustrated below:

	  mu = 100
	  sigma = 5
	  x = 109
	  fx = (1/sigma) * dnorm((x-mu)/sigma)

See also "cnorm", "qnorm".

# dropcoll
Output:     list
Arguments:  X (list)
            epsilon (scalar, optional)

Returns a list with the same elements as X, but for the collinear series.
Therefore, if all the series in X are linearly independent, the output list
is just a copy of X.

The algorithm uses the QR decomposition (Householder transformation), so it
is subject to finite precision error. In order to gauge the sensitivity of
the algorithm, a second optional parameter epsilon may be specified to make
the collinearity test more or less strict, as desired. The default value for
epsilon is 1.0e-8. Setting epsilon to a larger value increases the
probability of a series to be dropped.

Example:

	  nulldata 20
	  set seed 9876
	  series foo = normal()
	  series bar = normal()
	  series foobar = foo + bar
	  list X = foo bar foobar
	  list Y = dropcoll(X)
	  list print X
	  list print Y
	  # set epsilon to a ridiculously small value
	  list Y = dropcoll(X, 1.0e-30)
	  list print Y

produces

	  ? list print X
	  foo bar foobar 
	  ? list print Y
	  foo bar 
	  ? list Y = dropcoll(X, 1.0e-30)
	  Replaced list Y
	  ? list print Y
	  foo bar foobar 

# dsort
Output:     same type as input
Argument:   x (series or vector)

Sorts x in descending order, skipping observations with missing values when
x is a series. See also "sort", "values".

# dummify
Output:     list
Arguments:  x (series)
            omitval (scalar, optional)

The argument x should be a discrete series. This function creates a set of
dummy variables coding for the distinct values in the series. By default the
smallest value is taken as the omitted category and is not explicitly
represented.

The optional second argument represents the value of x which should be
treated as the omitted category. The effect when a single argument is given
is equivalent to dummify(x, min(x)). To produce a full set of dummies, with
no omitted category, use dummify(x, NA).

The generated variables are automatically named according to the template
Dvarname_i where varname is the name of the original series and i is a
1-based index. The original portion of the name is truncated if necessary,
and may be adjusted in case of non-uniqueness in the set of names thus
constructed.

# easterday
Output:     same type as input
Argument:   x (scalar, series or matrix)

Given the year in argument x, returns the date of Easter in the Gregorian
calendar as month + day/100. Note that April the 10th, is, under this
convention, 4.1; hence, 4.2 is April the 20th, not April the 2nd (which
would be 4.02).

	  scalar e = easterday(2014)
	  scalar m = floor(e)
	  scalar d = 100*(e-m)

# ecdf
Output:     matrix
Argument:   y (series or vector)

Calculates the empirical CDF of y. This is returned in a matrix with two
columns: the first holds the sorted unique values of y and the second holds
the cumulative relative frequency, that is the count of observations whose
value is less than or equal to the value in the first column, divided by the
total number of observations.

# eigengen
Output:     matrix
Arguments:  A (square matrix)
            &U (reference to matrix, or null)

Computes the eigenvalues, and optionally the right eigenvectors, of the n x
n matrix A. If all the eigenvalues are real an n x 1 matrix is returned;
otherwise the result is an n x 2 matrix, the first column holding the real
components and the second column the imaginary components. The eigenvalues
are not guaranteed to be sorted in any particular order.

The second argument must be either the name of an existing matrix preceded
by & (to indicate the "address" of the matrix in question), in which case an
auxiliary result is written to that matrix, or the keyword null, in which
case the auxiliary result is not produced.

If a non-null second argument is given, the specified matrix will be
over-written with the auxiliary result. (It is not required that the
existing matrix be of the right dimensions to receive the result.) The
output is organized as follows:

  If the i-th eigenvalue is real, the i-th column of U will contain the
  corresponding eigenvector;

  If the i-th eigenvalue is complex, the i-th column of U will contain the
  real part of the corresponding eigenvector and the next column the
  imaginary part. The eigenvector for the conjugate eigenvalue is the
  conjugate of the eigenvector.

In other words, the eigenvectors are stored in the same order as the
eigenvalues, but the real eigenvectors occupy one column, whereas complex
eigenvectors take two (the real part comes first); the total number of
columns is still n, because the conjugate eigenvector is skipped.

See also "eigensym", "eigsolve", "qrdecomp", "svd".

# eigensym
Output:     matrix
Arguments:  A (symmetric matrix)
            &U (reference to matrix, or null)

Works just as "eigengen", but the argument A must be symmetric (in which
case the calculations can be reduced). Unlike "eigengen", eigenvalues are
returned in ascending order.

Note: if you're interested in the eigen-decomposition of a matrix of the
form X'X, where X is a large matrix, it is preferable to compute it via the
prime operator X'X rather than using the more general syntax X'*X. The
former expression uses a specialized algorithm which has the double
advantage of being more efficient computationally and of ensuring that the
result will be free by construction of machine precision artifacts that may
render it numerically non-symmetric.

# eigsolve
Output:     matrix
Arguments:  A (symmetric matrix)
            B (symmetric matrix)
            &U (reference to matrix, or null)

Solves the generalized eigenvalue problem |A - lambdaB| = 0, where both A
and B are symmetric and B is positive definite. The eigenvalues are returned
directly, arranged in ascending order. If the optional third argument is
given it should be the name of an existing matrix preceded by &; in that
case the generalized eigenvectors are written to the named matrix.

# epochday
Output:     scalar or series
Arguments:  year (scalar or series)
            month (scalar or series)
            day (scalar or series)

Returns the number of the day in the current epoch specified by year, month
and day. The epoch day equals 1 for the first of January in the year AD 1 on
the proleptic Gregorian calendar; it stood at 733786 on 2010-01-01. If any
of the arguments are given as series the value returned is a series,
otherwise it is a scalar.

By default the year, month and day values are assumed to be given relative
to the Gregorian calendar, but if the year is a negative value the
interpretation switches to the Julian calendar.

For the inverse function, see "isodate" and also (for the Julian calendar)
"juldate".

# errmsg
Output:     string
Argument:   errno (integer)

Retrieves the gretl error message associated with errno. See also "$error".

# exists
Output:     integer
Argument:   name (string)

Returns non-zero if name is the identifier for a currently defined object,
be it a scalar, a series, a matrix, list, string, bundle or array; otherwise
returns 0. See also "typeof".

# exp
Output:     same type as input
Argument:   x (scalar, series or matrix)

Returns e^x. Note that in case of matrices the function acts element by
element. For the matrix exponential function, see "mexp".

# fcstats
Output:     matrix
Arguments:  y (series or vector)
            f (series, list or matrix)

Produces a matrix holding several statistics which serve to evaluate f as a
forecast of the observed data y.

If f is a series or vector the output is a column vector; if f is a list
with k members or a T x k matrix the output has k columns, each of which
holds statistics for the corresponding element (series or column) of the
input as a forecast of y.

In all cases the "vertical" dimension of the input (for a series or list the
length of the current sample range, for a matrix the number of rows) must
match across the two arguments.

The rows of the returned matrix are as follows:

	  1  Mean Error (ME)
	  2  Root Mean Squared Error (RMSE)
	  3  Mean Absolute Error (MAE)
	  4  Mean Percentage Error (MPE)
	  5  Mean Absolute Percentage Error (MAPE)
	  6  Theil's U 
	  7  Bias proportion, UM
	  8  Regression proportion, UR
	  9  Disturbance proportion, UD

For details on the calculation of these statistics, and the interpretation
of the U values, please see chapter 31 of the Gretl User's Guide.

# fdjac
Output:     matrix
Arguments:  b (column vector)
            fcall (function call)
            h (scalar, optional)

Calculates a numerical approximation to the Jacobian associated with the
n-vector b and the transformation function specified by the argument fcall.
The function call should take b as its first argument (either straight or in
pointer form), followed by any additional arguments that may be needed, and
it should return an m x 1 matrix. On successful completion fdjac returns an
m x n matrix holding the Jacobian.

The optional third argument can be used to set the step size h used in the
approximation mechanism (see below); if this argument is omitted the step
size is determined automatically.

Here is an example of usage:

	  matrix J = fdjac(theta, myfunc(&theta, X))

The function can use three different methods: simple forward-difference,
bilateral difference or 4-nodes Richardson extrapolation. Respectively:

J_0 = (f(x+h) - f(x))/h

J_1 = (f(x+h) - f(x-h))/2h

J_2 = [8(f(x+h) - f(x-h)) - (f(x+2h) - f(x-2h))] /12h

The three alternatives above provide, generally, a trade-off between
accuracy and speed. You can choose among methods by using the "set" command
and specify the value 0, 1 or 2 for the fdjac_quality variable.

For more details and examples see the chapter on numerical methods in
chapter 33 of the Gretl User's Guide.

See also "BFGSmax", "numhess", "set".

# fft
Output:     matrix
Argument:   X (matrix)

Discrete real Fourier transform. If the input matrix X has n columns, the
output has 2n columns, where the real parts are stored in the odd columns
and the complex parts in the even ones.

Should it be necessary to compute the Fourier transform on several vectors
with the same number of elements, it is numerically more efficient to group
them into a matrix rather than invoking fft for each vector separately. See
also "ffti".

# ffti
Output:     matrix
Argument:   X (matrix)

Inverse discrete real Fourier transform. It is assumed that X contains n
complex column vectors, with the real part in the odd columns and the
imaginary part in the even ones, so the total number of columns should be
2n. A matrix with n columns is returned.

Should it be necessary to compute the inverse Fourier transform on several
vectors with the same number of elements, it is numerically more efficient
to group them into a matrix rather than invoking ffti for each vector
separately. See also "fft".

# filter
Output:     see below
Arguments:  x (series or matrix)
            a (scalar or vector, optional)
            b (scalar or vector, optional)
            y0 (scalar, optional)

Computes an ARMA-like filtering of the argument x. The transformation can be
written as

y_t = a_0 x_t + a_1 x_t-1 + ... a_q x_t-q + b_1 y_t-1 + ... b_py_t-p

If argument x is a series, the result will be itself a series. Otherwise, if
x is a matrix with T rows and k columns, the result will be a matrix of the
same size, in which the filtering is performed column by column.

The two arguments a and b are optional. They may be scalars, vectors or the
keyword null.

If a is a scalar, this is used as a_0 and implies q=0; if it is a vector of
q+1 elements, they contain the coefficients from a_0 to a_q. If a is null or
omitted, this is equivalent to setting a_0 =1 and q=0.

If b is a scalar, this is used as b_1 and implies p=1; if it is a vector of
p elements, they contain the coefficients from b_1 to b_p. If b is null or
omitted, this is equivalent to setting B(L)=1.

The optional scalar argument y0 is taken to represent all values of y prior
to the beginning of sample (used only when p>0). If omitted, it is
understood to be 0. Pre-sample values of x are always assumed zero.

See also "bkfilt", "bwfilt", "fracdiff", "hpfilt", "movavg", "varsimul".

Example:

	  nulldata 5
	  y = filter(index, 0.5, -0.9, 1)
	  print index y --byobs
	  x = seq(1,5)' ~ (1 | zeros(4,1))
	  w = filter(x, 0.5, -0.9, 1)
	  print x w

produces

          index            y   

          1            1     -0.40000   
          2            2      1.36000   
          3            3      0.27600   
          4            4      1.75160   
          5            5      0.92356   

          x (5 x 2)

          1   1 
          2   0 
          3   0 
          4   0 
          5   0 

          w (5 x 2)

          -0.40000     -0.40000 
          1.3600      0.36000 
          0.27600     -0.32400 
          1.7516      0.29160 
          0.92356     -0.26244 

# firstobs
Output:     integer
Argument:   y (series)

Returns the 1-based index of the first non-missing observation for the
series y. Note that if some form of subsampling is in effect, the value
returned may be smaller than the dollar variable "$t1". See also "lastobs".

# fixname
Output:     string
Argument:   rawname (string)

Intended for use in connection with the "join" command. Returns the result
of converting rawname to a valid gretl identifier, which must start with a
letter, contain nothing but (ASCII) letters, digits and the underscore
character, and must not exceed 31 characters. The rules used in conversion
are:

1. Skip any leading non-letters.

2. Until the 31-character limit is reached or the input is exhausted:
transcribe "legal" characters; skip "illegal" characters apart from spaces;
and replace one or more consecutive spaces with an underscore, unless the
previous character transcribed is an underscore in which case space is
skipped.

# floor
Output:     same type as input
Argument:   y (scalar, series or matrix)

Returns the greatest integer less than or equal to x. Note: "int" and floor
differ in their effect for negative arguments: int(-3.5) gives -3, while
floor(-3.5) gives -4.

# fracdiff
Output:     series
Arguments:  y (series)
            d (scalar)

Returns the fractional difference of order d for the series y.

Note that in theory fractional differentiation is an infinitely long filter.
In practice, presample values of y_t are assumed to be zero.

A negative value of d can be given, in which case fractional integration is
performed.

# gammafun
Output:     same type as input
Argument:   x (scalar, series or matrix)

Returns the gamma function of x.

# genseries
Output:     scalar
Arguments:  varname (string)
            rhs (series)

Provides the script writer with a convenient means of generating series
whose names are not known in advance, and/or creating a series and appending
it to a list in a single operation.

The first argument gives the name of the series to create (or modify); this
can be a string literal, a string variable, or an expression that evaluates
to a string. The second argument, rhs ("right-hand side"), defines the
source series: this can be the name of an existing series or an expression
that evaluates to a series, as would appear to the right of the equals sign
when defining a series in the usual way.

The return value from this function is the ID number of the series in the
dataset, a value suitable for inclusion in a list (or -1 on failure).

For example, suppose you want to add n random normal series to the dataset
and put them all into a named list. The following will do the job:

	  list Normals = null
	  loop i=1..n --quiet
	      Normals += genseries(sprintf("norm%d", i), normal())
	  endloop

On completion Normals will contain the series norm1, norm2 and so on.

# getenv
Output:     string
Argument:   s (string)

If an environment variable by the name of s is defined, returns the string
value of that variable, otherwise returns an empty string. See also
"ngetenv".

# getinfo
Output:     bundle
Argument:   y (series)

Returns information on the specified series, which may be given by name or
ID number. The returned bundle contains all the attributes which can be set
via the "setinfo" command. It also contains additional information relevant
for series that have been created as transformations of primary data (lags,
logs, etc.): this includes the gretl command word for the transformation
under the key "transform" and the name of the associated primary series
under "parent". For lagged series, the specific lag number can be found
under the key "lag".

Here is an example of usage:

	  open data9-7
	  lags QNC
	  bundle b = getinfo(QNC_2)
	  print b

On executing the above we see:

	  has_string_table = 0
	  lag = 2
	  parent = QNC
	  name = QNC_2
	  graph_name = 
	  coded = 0
	  discrete = 0
	  transform = lags
	  description = = QNC(t - 2)

To test whether series 5 in a dataset is a lagged term one can do this sort
of thing:

	  if getinfo(5).lag != 0
	     printf "series 5 is a lag of %s\n", getinfo(5).parent
	  endif

Note that the dot notation to access bundle members can be used even when
the bundle is "anonymous" (not saved under its own name).

# getline
Output:     scalar
Arguments:  source (string)
            target (string)

This function is used to read successive lines from source, which should be
a named string variable. On each call a line from the source is written to
target (which must also be a named string variable), with the newline
character stripped off. The valued returned is 1 if there was anything to be
read (including blank lines), 0 if the source has been exhausted.

Here is an example in which the content of a text file is broken into lines:

	  string s = readfile("data.txt")
	  string line
	  scalar i = 1
	  loop while getline(s, line)
	      printf "line %d = '%s'\n", i++, line
	  endloop

In this example we can be sure that the source is exhausted when the loop
terminates. If the source might not be exhausted you should follow your
regular call(s) to getline with a "clean up" call, in which target is
replaced by null (or omitted altogether) as in

	  getline(s, line) # get a single line
	  getline(s, null) # clean up

Note that although the reading position advances at each call to getline,
source is not modified by this function, only target.

# ghk
Output:     matrix
Arguments:  C (matrix)
            A (matrix)
            B (matrix)
            U (matrix)
            &dP (reference to matrix, or null)

Computes the GHK (Geweke, Hajivassiliou, Keane) approximation to the
multivariate normal distribution function; see for example Geweke (1991).
The value returned is an n x 1 vector of probabilities.

The argument C (m x m) should give the Cholesky factor (lower triangular) of
the covariance matrix of m normal variates. The arguments A and B should
both be n x m, giving respectively the lower and upper bounds applying to
the variates at each of n observations. Where variates are unbounded, this
should be indicated using the built-in constant "$huge" or its negative.

The matrix U should be m x r, with r the number of pseudo-random draws from
the uniform distribution; suitable functions for creating U are "muniform"
and "halton".

We illustrate below with a relatively simple case where the multivariate
probabilities can be calculated analytically. The series P and Q should be
numerically very similar to one another, P being the "true" probability and
Q its GHK approximation:

	  nulldata 20
	  series inf1 = -2*uniform()
	  series sup1 = 2*uniform()
	  series inf2 = -2*uniform()
	  series sup2 = 2*uniform()

	  scalar rho = 0.25
	  matrix V = {1, rho; rho, 1}

	  series P = cdf(D, rho, inf1, inf2) - cdf(D, rho, sup1, inf2) \
	  - cdf(D, rho, inf1, sup2) + cdf(D, rho, sup1, sup2)

	  C = cholesky(V)
	  U = halton(2, 100)

	  series Q = ghk(C, {inf1, inf2}, {sup1, sup2}, U)

The optional dP argument can be used to retrieve the n x k matrix of
derivatives of the probabilities, where k equals 2m + m(m + 1)/2. The first
m columns hold the derivatives with respect to the lower bounds, the next m
those with respect to the upper bounds, and the remainder the derivatives
with respect to the unique elements of the C matrix in "vech" order.

# gini
Output:     scalar
Argument:   y (series or vector)

Returns Gini's inequality index for the (non-negative) series or vector y. A
Gini value of zero indicates perfect equality. The maximum Gini value for a
series with n members is (n - 1)/n, occurring when only one member has a
positive value; a Gini of 1.0 is therefore the limit approached by a large
series with maximal inequality.

# ginv
Output:     matrix
Argument:   A (matrix)

Returns A^+, the Moore-Penrose or generalized inverse of A, computed via the
singular value decomposition.

This matrix has the properties A A^+ A = A and A^+ A A^+ = A^+. Moreover,
the products A A^+ and A^+ A are symmetric by construction.

See also "inv", "svd".

# GSSmax
Output:     scalar
Arguments:  &b (reference to matrix)
            f (function call)
            toler (scalar, optional)

One-dimensional maximization via the Golden Section Search method. The
matrix b should be a 3-vector. On input the first element is ignored while
the second and third elements set the lower and upper bounds on the search.
The fncall argument should specify a call to a function that returns the
value of the maximand; element 1 of b, which will hold the current value of
the adjustable parameter when the function is called, should be given as its
first argument; any other required arguments may then follow. The function
in question should be unimodal (should have no local maxima other than the
global maximum) over the stipulated range, or GSS is not sure to find the
maximum.

On successful completion GSSmax returns the optimum value of the maximand,
while b holds the optimal parameter value along with the limits of its
bracket.

The optional third argument may be used to set the tolerance for
convergence, that is, the maximum acceptable width of the final bracket for
the parameter. If this argument is not given a value of 0.0001 is used.

If the object is in fact minimization, either the function call should
return the negative of the criterion or alternatively GSSmax may be called
under the alias GSSmin.

Here is a simple example of usage:

	  function scalar trigfunc (scalar theta)
	      return 4 * sin(theta) * (1 + cos(theta))
	  end function

	  matrix m = {0, 0, $pi/2}
	  eval GSSmax(&m, trigfunc(m[1]))
	  printf "\n%10.7f", m

# GSSmin
Output:     scalar

An alias for "GSSmax"; if called under this name the function acts as a
minimizer.

# halton
Output:     matrix
Arguments:  m (integer)
            r (integer)
            offset (integer, optional)

Returns an m x r matrix containing m Halton sequences of length r; m is
limited to a maximum of 40. The sequences are constructed using the first m
primes. By default the first 10 elements of each sequence are discarded, but
this figure can be adjusted via the optional offset argument, which should
be a non-negative integer. See Halton and Smith (1964).

# hdprod
Output:     matrix
Arguments:  X (matrix)
            Y (matrix)

Horizontal direct product. The two arguments must have the same number of
rows, r. The return value is a matrix with r rows, in which the i-th row is
the Kronecker product of the corresponding rows of X and Y.

This operation is called "horizontal direct product" in conformity to its
implementation in the GAUSS programming language. Its equivalent in standard
matrix algebra would be called the row-wise Khatri-Rao product.

Example: the code

	  A = {1,2,3; 4,5,6}
	  B = {0,1; -1,1}
	  C = hdprod(A, B)

produces the following matrix:

          0    1    0    2    0    3 
         -4    4   -5    5   -6    6 

# hfdiff
Output:     list
Arguments:  hfvars (list)
            multiplier (scalar)

Given a "MIDAS list", produces a list of the same length holding
high-frequency first differences. The second argument is optional and
defaults to unity: it can be used to multiply the differences by some
constant.

# hfldiff
Output:     list
Arguments:  hfvars (list)
            multiplier (scalar)

Given a "MIDAS list", produces a list of the same length holding
high-frequency log-differences. The second argument is optional and defaults
to unity: it can be used to multiply the differences by some constant, for
example one might give a value of 100 to produce (approximate) percentage
changes.

# hflags
Output:     list
Arguments:  minlag (integer)
            maxlag (integer)
            hfvars (list)

Given a "MIDAS list", hfvars, produces a list holding high-frequency lags
minlag to maxlag. Use positive values for actual lags, negative for leads.
For example, if minlag is -3 and maxlag is 5 then the returned list will
hold 9 series: 3 leads, the contemporary value, and 5 lags.

Note that high-frequency lag 0 corresponds to the first high frequency
period within a low frequency period, for example the first month of a
quarter or the first day of a month.

# hflist
Output:     list
Arguments:  x (vector)
            m (integer)
            prefix (string)

Produces from the vector x a "MIDAS list" of m series, where m is the ratio
of the frequency of observation for the variable in x to the base frequency
of the current dataset. The value of m must be at least 3 and the length of
x must be m times the length of the current sample range.

The names of the series in the returned list are constructed from the given
prefix (which must be an ASCII string of 24 characters or less, and valid as
a gretl identifier), plus one or more digits representing the sub-period of
the observation. An error is flagged if any of these names duplicate names
of existing objects.

# hpfilt
Output:     series
Arguments:  y (series)
            lambda (scalar, optional)

Returns the cycle component from application of the Hodrick-Prescott filter
to series y. If the smoothing parameter, lambda, is not supplied then a
data-based default is used, namely 100 times the square of the periodicity
(100 for annual data, 1600 for quarterly data, and so on). See also
"bkfilt", "bwfilt".

# I
Output:     square matrix
Argument:   n (integer)

Returns an identity matrix with n rows and columns.

# imaxc
Output:     row vector
Argument:   X (matrix)

Returns the row indices of the maxima of the columns of X.

See also "imaxr", "iminc", "maxc".

# imaxr
Output:     column vector
Argument:   X (matrix)

Returns the column indices of the maxima of the rows of X.

See also "imaxc", "iminr", "maxr".

# imhof
Output:     scalar
Arguments:  M (matrix)
            x (scalar)

Computes Prob(u'Au < x) for a quadratic form in standard normal variates, u,
using the procedure developed by Imhof (1961).

If the first argument, M, is a square matrix it is taken to specify A,
otherwise if it's a column vector it is taken to be the precomputed
eigenvalues of A, otherwise an error is flagged.

See also "pvalue".

# iminc
Output:     row vector
Argument:   X (matrix)

Returns the row indices of the minima of the columns of X.

See also "iminr", "imaxc", "minc".

# iminr
Output:     column vector
Argument:   X (matrix)

Returns the column indices of the minima of the rows of X.

See also "iminc", "imaxr", "minr".

# inbundle
Output:     integer
Arguments:  b (bundle)
            key (string)

Checks whether bundle b contains a data-item with name key. The value
returned is an integer code for the type of the item: 0 for no match, 1 for
scalar, 2 for series, 3 for matrix, 4 for string, 5 for bundle and 6 for
array. The function "typestr" may be used to get the string corresponding to
this code.

# infnorm
Output:     scalar
Argument:   X (matrix)

Returns the infinity-norm of X, that is, the maximum across the rows of X of
the sum of absolute values of the row elements.

See also "onenorm".

# inlist
Output:     integer
Arguments:  L (list)
            y (series)

Returns the (1-based) position of y in list L, or 0 if y is not present in
L.

The second argument may be given as the name of a series or alternatively as
an integer ID number. If you know that a series of a certain name (say foo)
exists, then you can call this function as, for example,

	  pos = inlist(L, foo)

Here you are, in effect, asking "Give me the position of series foo in list
L (or 0 if it is not included in L)." However, if you are unsure whether a
series of the given name exists, you should place the name in quotes:

	  pos = inlist(L, "foo")

In this case you are asking, "If there's a series named foo in L give me its
position, otherwise return 0."

# int
Output:     same type as input
Argument:   x (scalar, series or matrix)

Returns the integer part of x, truncating the fractional part. Note: int and
"floor" differ in their effect for negative arguments: int(-3.5) gives -3,
while floor(-3.5) gives -4. See also "ceil".

# inv
Output:     matrix
Argument:   A (square matrix)

Returns the inverse of A. If A is singular or not square, an error message
is produced and nothing is returned. Note that gretl checks automatically
the structure of A and uses the most efficient numerical procedure to
perform the inversion.

The matrix types gretl checks for are: identity; diagonal; symmetric and
positive definite; symmetric but not positive definite; and triangular.

Note: it makes sense to use this function only if you plan to use the
inverse of A more than once. If you just need to compute an expression of
the form A^-1B, you'll be much better off using the "division" operators \
and /. See chapter 15 of the Gretl User's Guide for details.

See also "ginv", "invpd".

# invcdf
Output:     same type as input
Arguments:  d (string)
            ... (see below)
            p (scalar, series or matrix)

Inverse cumulative distribution function calculator. Returns x such that P(X
<= x) = p, where the distribution of X is determined by the string d.
Between the arguments d and p, zero or more additional scalar arguments are
required to specify the parameters of the distribution, as follows.

  Standard normal (c = z, n, or N): no extra arguments

  Gamma (g or G): shape; scale

  Student's t (t): degrees of freedom

  Chi square (c, x, or X): degrees of freedom

  Snedecor's F (f or F): df (num.); df (den.)

  Binomial (b or B): probability; trials

  Poisson (p or P): mean

  Standardized GED (E): shape

  Non-central chi square (ncX): df, non-centrality parameter

  Non-central F (ncF): df (num.), df (den.), non-centrality parameter

  Non-central t (nct): df, non-centrality parameter

See also "cdf", "critical", "pvalue".

# invmills
Output:     same type as input
Argument:   x (scalar, series or matrix)

Returns the inverse Mills ratio at x, that is the ratio between the standard
normal density and the complement to the standard normal distribution
function, both evaluated at x.

This function uses a dedicated algorithm which yields greater accuracy
compared to calculation using "dnorm" and "cnorm", but the difference
between the two methods is appreciable only for very large negative values
of x.

See also "cdf", "cnorm", "dnorm".

# invpd
Output:     square matrix
Argument:   A (positive definite matrix)

Returns the inverse of the symmetric, positive definite matrix A. This
function is slightly faster than "inv" for large matrices, since no check
for symmetry is performed; for that reason it should be used with care.

Note: if you're interested in the inversion of a matrix of the form X'X,
where X is a large matrix, it is preferable to compute it via the prime
operator X'X rather than using the more general syntax X'*X. The former
expression uses a specialized algorithm which has the double advantage of
being more efficient computationally and of ensuring that the result will be
free by construction of machine precision artifacts that may render it
numerically non-symmetric.

# irf
Output:     matrix
Arguments:  target (integer)
            shock (integer)
            alpha (scalar between 0 and 1, optional)

This function is available only when the last model estimated was a VAR or
VECM. It returns a matrix containing the estimated response of the target
variable to an impulse of one standard deviation in the shock variable.
These variables are identified by their position in the model specification:
for example, if target and shock are given as 1 and 3 respectively, the
returned matrix gives the response of the first variable in the system for a
shock to the third variable.

If the optional alpha argument is given, the returned matrix has three
columns: the point estimate of the responses, followed by the lower and
upper limits of a 1 - α confidence interval obtained via bootstrapping. (So
alpha = 0.1 corresponds to 90 percent confidence.) If alpha is omitted or
set to zero, only the point estimate is provided.

The number of periods (rows) over which the response is traced is determined
automatically based on the frequency of the data, but this can be overridden
via the "set" command, as in set horizon 10.

# irr
Output:     scalar
Argument:   x (series or vector)

Returns the Internal Rate of Return for x, considered as a sequence of
payments (negative) and receipts (positive). See also "npv".

# isconst
Output:     integer
Arguments:  y (series or vector)
            panel-code (integer, optional)

Without the optional second argument, returns 1 if y has a constant value
over the current sample range (or over its entire length if y is a vector),
otherwise 0.

The second argument is accepted only if the current dataset is a panel and y
is a series. In that case a panel-code value of 0 calls for a check for
time-invariance, while a value of 1 means check for cross-sectional
invariance (that is, in each time period the value of y is the same for all
groups).

If y is a series, missing values are ignored in checking for constancy.

# isdiscrete
Output:     integer
Argument:   name (string)

If name is the identifier for a currently defined series, returns 1 if the
series is marked as discrete-valued, otherwise 0. If name does not identify
a series, returns NA.

# isdummy
Output:     integer
Argument:   x (series or vector)

If all the values contained in x are 0 or 1 (or missing), returns the number
of ones, otherwise 0.

# isnan
Output:     same type as input
Argument:   x (scalar or matrix)

Given a scalar argument, returns 1 if x is "Not a Number" (NaN), otherwise
0. Given a matrix argument, returns a matrix of the same dimensions with 1s
in positions where the corresponding element of the input is NaN and 0s
elsewhere.

# isoconv
Output:     scalar
Arguments:  date (series)
            &year (reference to series)
            &month (reference to series)
            &day (reference to series, optional)

Given a series date holding dates in ISO 8601 "basic" format (YYYYMMDD),
this function writes the year, month and (optionally) day components into
the series named by the second and subsequent arguments. An example call,
assuming the series dates contains suitable 8-digit values:

	  series y, m, d
	  isoconv(dates, &y, &m, &d)

The return value from this function is 0 on successful completion, non-zero
on error.

# isodate
Output:     see below
Arguments:  ed (scalar or series)
            as-string (boolean, optional)

The argument ed is interpreted as an epoch day, which equals 1 for the first
of January in the year AD 1 on the proleptic Gregorian calendar. The default
return value -- of the same type as ed -- is an 8-digit number, or a series
of such numbers, on the pattern YYYYMMDD (ISO 8601 "basic" format), giving
the Gregorian calendar date corresponding to the epoch day.

If ed is a scalar (only) and the optional second argument as-string is
non-zero, the return value is not numeric but rather a string on the pattern
YYYY-MM-DD (ISO 8601 "extended" format).

For the inverse function, see "epochday"; also see "juldate".

# iwishart
Output:     matrix
Arguments:  S (symmetric matrix)
            v (integer)

Given S (a positive definite p x p scale matrix), returns a drawing from the
Inverse Wishart distribution with v degrees of freedom. The returned matrix
is also p x p. The algorithm of Odell and Feiveson (1966) is used.

# jsonget
Output:     string
Arguments:  buf (string)
            path (string)

The argument buf should be a JSON buffer, as may be retrieved from a
suitable website via the "curl" function, and the path argument should be a
JsonPath specification.

This function returns a string representing the data found in the buffer at
the specified path. Data types of double (floating-point), int (integer) and
string are supported. In the case of doubles or ints, their string
representation is returned (using the "C" locale for doubles). If the object
to which path refers is an array, the members are printed one per line in
the returned string.

An accurate account of JsonPath syntax can be found at
http://goessner.net/articles/JsonPath/. However, please note that the
back-end for jsonget is provided by json-glib, which does not necessarily
support all elements of JsonPath. Moreover, the exact functionality of
json-glib may differ depending on the version you have on your system. See
http://developer.gnome.org/json-glib/ if you need details.

That said, the following operators should be available to jsonget:

  root node, via the $ character

  recursive descent operator: ..

  wildcard operator: *

  subscript operator: []

  set notation operator, for example [i,j]

  slice operator: [start:end:step]

# juldate
Output:     see below
Arguments:  ed (scalar or series)
            as-string (boolean, optional)

The argument ed is interpreted as an epoch day, which equals 1 for the first
of January in the year AD 1 on the proleptic Gregorian calendar. The default
return value -- of the same type as ed -- is an 8-digit number, or a series
of such numbers, on the pattern YYYYMMDD (ISO 8601 "basic" format), giving
the Julian calendar date corresponding to the epoch day.

If ed is a scalar (only) and the optional second argument as-string is
non-zero, the return value is not numeric but rather a string on the pattern
YYYY-MM-DD (ISO 8601 "extended" format).

See also "isodate".

# kdensity
Output:     matrix
Arguments:  x (series or vector)
            scale (scalar, optional)
            control (boolean, optional)

Computes a kernel density estimate for the series or vector x. The returned
matrix has two columns, the first holding a set of evenly spaced abscissae
and the second the estimated density at each of these points.

The optional scale parameter can be used to adjust the degree of smoothing
relative to the default of 1.0 (higher values produce a smoother result).
The control parameter acts as a boolean: 0 (the default) means that the
Gaussian kernel is used; a non-zero value switches to the Epanechnikov
kernel.

A plot of the results may be obtained using the "gnuplot" command, as in

	  matrix d = kdensity(x)
	  gnuplot 2 1 --matrix=d --with-lines --fit=none

# kdsmooth
Output:     scalar
Arguments:  &Mod (reference to bundle)
            MSE (boolean, optional)

Performs disturbance smoothing for a Kalman bundle previously set up by
means of "ksetup" and returns 0 on successful completion or 1 if numerical
problems are encountered.

On successful completion, the smoothed disturbances will be available as
Mod.smdist.

The optional MSE argument determines the contents of the Mod.smdisterr key.
If 0 or omitted, this matrix will contain the unconditional standard errors
of the smoothed disturbances, which are normally used to compute the
so-called auxiliary residuals. Otherwise, Mod.smdisterr will contain the
estimated root mean square deviations of the auxiliary residuals from their
true value.

For more details see chapter 32 of the Gretl User's Guide.

See also "ksetup", "kfilter", "ksmooth", "ksimul".

# kfilter
Output:     scalar
Argument:   &Mod (reference to bundle)

Performs a forward, filtering pass on a Kalman bundle previously set up by
means of "ksetup" and returns 0 on successful completion or 1 if numerical
problems are encountered.

On successful completion, the one-step-ahead prediction errors will be
available as Mod.prederr and the sequence of their covariance matrices as
Mod.pevar. Moreover, the key Mod.llt gives access to a T-vector containing
the log-likelihood by observation.

For more details see chapter 32 of the Gretl User's Guide.

See also "kdsmooth", "ksetup", "ksmooth", "ksimul".

# kmeier
Output:     matrix
Arguments:  d (series or vector)
            cens (series or vector, optional)

Given a sample of duration data, d, possibly accompanied by a record of
censoring status, cens, computes the Kaplan-Meier nonparametric estimator of
the survival function (Kaplan and Meier, 1958). The returned matrix has
three columns holding, respectively, the sorted unique values in d, the
estimated survival function corresponding to the duration value in column 1
and the (large sample) standard error of the estimator, calculated via the
method of Greenwood (1926).

If the cens series is given, the value 0 is taken to indicate an uncensored
observation while a value of 1 indicates a right-censored observation (that
is, the period of observation of the individual in question has ended before
the duration or spell has been recorded as terminated). If cens is not
given, it is assumed that all observations are uncensored. (Note: the
semantics of cens may be extended at some point to cover other types of
censoring.)

See also "naalen".

# kpsscrit
Output:     matrix
Arguments:  T (scalar)
            trend (boolean)

Returns a row vector containing critical values at the 10, 5 and 1 percent
levels for the KPSS test for stationarity of a time series. T should give
the number of observations and trend should be 1 if the test includes a
trend, 0 otherwise.

The critical values given are based on response surfaces estimated in the
manner set out by Sephton (Economics Letters, 1995). See also the "kpss"
command.

# ksetup
Output:     bundle
Arguments:  Y (series, matrix or list)
            H (scalar or matrix)
            F (scalar or matrix)
            Q (scalar or matrix)
            C (matrix, optional)

Sets up a Kalman bundle, that is an object which contains all the
information needed to define a linear state space model of the form

  y(t) = H'a(t)

and state transition equation

  a(t+1) = F a(t) + u(t)

where Var(u) = Q.

Objects created via this function can be later used via the dedicated
functions "kfilter" for filtering, "ksmooth" and "kdsmooth" for smoothing
and "ksimul" for performing simulations.

The class of models that gretl can handle is in fact much wider than the one
implied by the representation above: it is possible to have time-varying
models, models with diffuse priors and exogenous variable in the measurement
equation and models with cross-correlated innovations. For further details,
see chapter 32 of the Gretl User's Guide.

See also "kdsmooth", "kfilter", "ksmooth", "ksimul".

# ksimul
Output:     scalar
Argument:   &Mod (reference to bundle)

Uses a Kalman bundle previously set up by means of "ksetup" to simulate
data.

For details see chapter 32 of the Gretl User's Guide.

See also "ksetup", "kfilter", "ksmooth".

# ksmooth
Output:     matrix
Argument:   &Mod (reference to bundle)

Performs a fixed-point smoothing (backward) pass on a Kalman bundle
previously set up by means of "ksetup" and returns 0 on successful
completion or 1 if numerical problems are encountered.

On successful completion, the smoothed states will be available as Mod.state
and the sequence of their covariance matrices as Mod.stvar. For more details
see chapter 32 of the Gretl User's Guide.

See also "ksetup", "kdsmooth", "kfilter", "ksimul".

# kurtosis
Output:     scalar
Argument:   x (series)

Returns the excess kurtosis of the series x, skipping any missing
observations.

# lags
Output:     list or matrix
Arguments:  p (scalar or vector)
            y (series, list or matrix)
            bylag (boolean, optional)

If the first argument is a scalar, generates lags 1 to p of the series y, or
if y is a list, of all series in the list, or if y is a matrix, of all
columns in the matrix. If p = 0 and y is a series or list, the maximum lag
defaults to the periodicity of the data; otherwise p must be positive.

If a vector is given as the first argument, the lags generated are those
specified in the vector. Common usage in this case would be to give p as,
for example, seq(3,7), hence omitting the first and second lags. However, it
is OK to give a vector with gaps, as in {3,5,7}, although the lags should
always be given in ascending order.

In the case of list output, the generated variables are automatically named
according to the template varname _ i where varname is the name of the
original series and i is the specific lag. The original portion of the name
is truncated if necessary, and may be adjusted in case of non-uniqueness in
the set of names thus constructed.

When y is a list, or a matrix with more than one column, and the lag order
is greater than 1, the default ordering of the terms in the return value is
by variable: all lags of the first input series or column followed by all
lags of the second, and so on. The optional third argument can be used to
change this: if bylag is non-zero then the terms are ordered by lag: lag 1
of all the input series or columns, then lag 2 of all the series or columns,
and so on.

See also "mlag" for use with matrices.

# lastobs
Output:     integer
Argument:   y (series)

Returns the 1-based index of the last non-missing observation for the series
y. Note that if some form of subsampling is in effect, the value returned
may be larger than the dollar variable "$t2". See also "firstobs".

# ldet
Output:     scalar
Argument:   A (square matrix)

Returns the natural log of the determinant of A, computed via the LU
factorization. See also "det", "rcond", "cnumber".

# ldiff
Output:     same type as input
Argument:   y (series or list)

Computes log differences; starting values are set to NA.

When a list is returned, the individual variables are automatically named
according to the template ld_varname where varname is the name of the
original series. The name is truncated if necessary, and may be adjusted in
case of non-uniqueness in the set of names thus constructed.

See also "diff", "sdiff".

# lincomb
Output:     series
Arguments:  L (list)
            b (vector)

Computes a new series as a linear combination of the series in the list L.
The coefficients are given by the vector b, which must have length equal to
the number of series in L.

See also "wmean".

# linearize
Output:     series
Argument:   x (series)

Depends on having TRAMO installed. Returns a "linearized" version of the
input series; that is, a series in which any missing values are replaced by
interpolated values and outliers are adjusted. TRAMO's fully automatic
mechanism is used; consult the TRAMO documentation for details.

Note that if the input series has no missing values and no values that TRAMO
regards as outliers, this function will return a copy of the original
series.

# ljungbox
Output:     scalar
Arguments:  y (series)
            p (integer)

Computes the Ljung-Box Q' statistic for the series y using lag order p, over
the currently defined sample range. The lag order must be greater than or
equal to 1 and less than the number of available observations.

This statistic may be referred to the chi-square distribution with p degrees
of freedom as a test of the null hypothesis that the series y is not
serially correlated. See also "pvalue".

# lngamma
Output:     same type as input
Argument:   x (scalar, series or matrix)

Returns the log of the gamma function of x.

# loess
Output:     series
Arguments:  y (series)
            x (series)
            d (integer, optional)
            q (scalar, optional)
            robust (boolean, optional)

Performs locally-weighted polynomial regression and returns a series holding
predicted values of y for each non-missing value of x. The method is as
described by William Cleveland (1979).

The optional arguments d and q specify the order of the polynomial in x and
the proportion of the data points to be used in local estimation,
respectively. The default values are d = 1 and q = 0.5. The other acceptable
values for d are 0 and 2. Setting d = 0 reduces the local regression to a
form of moving average. The value of q must be greater than 0 and cannot
exceed 1; larger values produce a smoother outcome.

If a non-zero value is given for the robust argument the local regressions
are iterated twice, with the weights being modified based on the residuals
from the previous iteration so as to give less influence to outliers.

See also "nadarwat", and in addition see chapter 36 of the Gretl User's
Guide for details on nonparametric methods.

# log
Output:     same type as input
Argument:   x (scalar, series, matrix or list)

Returns the natural logarithm of x; produces NA for non-positive values.
Note: ln is an acceptable alias for log.

When a list is returned, the individual variables are automatically named
according to the template l_varname where varname is the name of the
original series. The name is truncated if necessary, and may be adjusted in
case of non-uniqueness in the set of names thus constructed.

# log10
Output:     same type as input
Argument:   x (scalar, series or matrix)

Returns the base-10 logarithm of x; produces NA for non-positive values.

# log2
Output:     same type as input
Argument:   x (scalar, series or matrix)

Returns the base-2 logarithm of x; produces NA for non-positive values.

# logistic
Output:     same type as input
Argument:   x (scalar, series or matrix)

Returns the logistic function of the argument x, that is, e^x/(1 + e^x). If
x is a matrix, the function is applied element by element.

# lower
Output:     square matrix
Argument:   A (matrix)

Returns an n x n lower triangular matrix: the elements on and below the
diagonal are equal to the corresponding elements of A; the remaining
elements are zero.

See also "upper".

# lrvar
Output:     scalar
Arguments:  y (series or vector)
            k (integer)

Returns the long-run variance of y, calculated using a Bartlett kernel with
window size k. The default window size, namely the integer part of the cube
root of the sample size, can be selected by giving a negative value for k.

# max
Output:     scalar or series
Argument:   y (series or list)

If the argument y is a series, returns the (scalar) maximum of the
non-missing observations in the series. If the argument is a list, returns a
series each of whose elements is the maximum of the values of the listed
variables at the given observation.

See also "min", "xmax", "xmin".

# maxc
Output:     row vector
Argument:   X (matrix)

Returns a row vector containing the maxima of the columns of X.

See also "imaxc", "maxr", "minc".

# maxr
Output:     column vector
Argument:   X (matrix)

Returns a column vector containing the maxima of the rows of X.

See also "imaxr", "maxc", "minr".

# mcorr
Output:     matrix
Argument:   X (matrix)

Computes a correlation matrix treating each column of X as a variable. See
also "corr", "cov", "mcov".

# mcov
Output:     matrix
Argument:   X (matrix)

Computes a covariance matrix treating each column of X as a variable. See
also "corr", "cov", "mcorr".

# mcovg
Output:     matrix
Arguments:  X (matrix)
            u (vector, optional)
            w (vector, optional)
            p (integer)

Returns the matrix covariogram for a T x k matrix X (typically containing
regressors), an (optional) T -vector u (typically containing residuals), an
(optional) (p+1)-vector of weights w, and a lag order p, which must be
greater than or equal to 0.

The returned matrix is given by

sum_{j=-p}^p sum_j w_{|j|} (X_t' u_t u_{t-j} X_{t-j})

If u is given as null the u terms are omitted, and if w is given as null all
the weights are taken to be 1.0.

# mean
Output:     scalar or series
Argument:   x (series or list)

If x is a series, returns the (scalar) sample mean, skipping any missing
observations.

If x is a list, returns a series y such that y_t is the mean of the values
of the variables in the list at observation t, or NA if there are any
missing values at t.

# meanc
Output:     row vector
Argument:   X (matrix)

Returns the means of the columns of X. See also "meanr", "sumc", "sdc".

# meanr
Output:     column vector
Argument:   X (matrix)

Returns the means of the rows of X. See also "meanc", "sumr".

# median
Output:     scalar or series
Argument:   x (series or list)

If x is a series, returns the (scalar) sample median, skipping any missing
observations.

If x is a list, returns a series y such that y_t is the median of the values
of the variables in the list at observation t, or NA if there are any
missing values at t.

# mexp
Output:     square matrix
Argument:   A (square matrix)

Computes the matrix exponential of A, using algorithm 11.3.1 from Golub and
Van Loan (1996).

# mgradient
Output:     matrix
Arguments:  p (integer)
            theta (vector)
            type (integer or string)

Analytical derivatives for MIDAS weights. Let k denote the number of
elements in the vector of hyper-parameters, theta. This function returns a p
x k matrix holding the gradient of the vector of weights (as calculated by
"mweights") with respect to the elements of theta. The first argument
represents the desired lag order and the last argument specifies the type of
parameterization. See mweights for an account of the acceptable type values.

See also "mweights", "mlincomb".

# min
Output:     scalar or series
Argument:   y (series or list)

If the argument y is a series, returns the (scalar) minimum of the
non-missing observations in the series. If the argument is a list, returns a
series each of whose elements is the minimum of the values of the listed
variables at the given observation.

See also "max", "xmax", "xmin".

# minc
Output:     row vector
Argument:   X (matrix)

Returns the minima of the columns of X.

See also "iminc", "maxc", "minr".

# minr
Output:     column vector
Argument:   X (matrix)

Returns the minima of the rows of X.

See also "iminr", "maxr", "minc".

# missing
Output:     same type as input
Argument:   x (scalar, series or list)

Returns a binary variable holding 1 if x is NA. If x is a series, the
comparison is done element by element; if x is a list of series, the output
is a series with 1 at observations for which at least one series in the list
has a missing value, and 0 otherwise.

See also "misszero", "ok", "zeromiss".

# misszero
Output:     same type as input
Argument:   x (scalar or series)

Converts NAs to zeros. If x is a series, the conversion is done element by
element. See also "missing", "ok", "zeromiss".

# mlag
Output:     matrix
Arguments:  X (matrix)
            p (scalar or vector)
            m (scalar, optional)

Shifts up or down the rows of X. If p is a positive scalar, returns a matrix
in which the columns of X are shifted down by p rows and the first p rows
are filled with the value m. If p is a negative number, X is shifted up and
the last rows are filled with the value m. If m is omitted, it is understood
to be zero.

If p is a vector, the above operation is carried out for each element in p,
joining the resulting matrices horizontally.

See also "lags".

# mlincomb
Output:     series
Arguments:  hfvars (list)
            theta (vector)
            type (integer or string)

A convenience MIDAS function which combines "lincomb" with "mweights". Given
a list hfvars, it constructs a series which is a weighted sum of the
elements of the list, the weights based on the vector of hyper-parameters
theta and the type of parameterization: see mweights for details. Note that
"hflags" is generally the best way to create a list suitable as the first
argument to this function.

To be explicit, the call

	  series s = mlincomb(hfvars, theta, 2)

is equivalent to

	  matrix w = mweights(nelem(hfvars), theta, 2)
	  series s = lincomb(hfvars, w)

but use of mlincomb saves on some typing and also some CPU cycles.

# mnormal
Output:     matrix
Arguments:  r (integer)
            c (integer)

Returns a matrix with r rows and c columns, filled with standard normal
pseudo-random variates. See also "normal", "muniform".

# mols
Output:     matrix
Arguments:  Y (matrix)
            X (matrix)
            &U (reference to matrix, or null)
            &V (reference to matrix, or null)

Returns a k x n matrix of parameter estimates obtained by OLS regression of
the T x n matrix Y on the T x k matrix X.

If the third argument is not null, the T x n matrix U will contain the
residuals. If the final argument is given and is not null then the k x k
matrix V will contain (a) the covariance matrix of the parameter estimates,
if Y has just one column, or (b) X'X^-1 if Y has multiple columns.

By default, estimates are obtained via Cholesky decomposition, with a
fallback to QR decomposition if the columns of X are highly collinear. The
use of SVD can be forced via the command set svd on.

See also "mpols", "mrls".

# monthlen
Output:     integer
Arguments:  month (integer)
            year (integer)
            weeklen (integer)

Returns the number of (relevant) days in the specified month in the
specified year, on the proleptic Gregorian calendar; weeklen, which must
equal 5, 6 or 7, gives the number of days in the week that should be counted
(a value of 6 omits Sundays, and a value of 5 omits both Saturdays and
Sundays).

# movavg
Output:     series
Arguments:  x (series)
            p (scalar)
            control (integer, optional)
            y0 (scalar, optional)

Depending on the value of the parameter p, returns either a simple or an
exponentially weighted moving average of the input series x.

If p > 1, a simple p-term moving average is computed, that is, the
arithmetic mean of x from period t to t-p+1. If a non-zero value is supplied
for the optional control parameter the MA is centered, otherwise it is
"trailing". The optional y0 argument is ignored.

If p is a positive fraction, an exponential moving average is computed:

y(t) = p*x(t) + (1-p)*y(t-1)

By default the output series, y, is initialized using the first value of x,
but the control parameter may be used to specify the number of initial
observations that should be averaged to produce y(0). A zero value for
control indicates that all the observations should be used. Alternatively,
an initializer may be specified using the optional y0 argument; in that case
the control argument is ignored.

# mpols
Output:     matrix
Arguments:  Y (matrix)
            X (matrix)
            &U (reference to matrix, or null)

Works exactly as "mols", except that the calculations are done in multiple
precision using the GMP library.

By default GMP uses 256 bits for each floating point number, but you can
adjust this using the environment variable GRETL_MP_BITS, e.g.
GRETL_MP_BITS=1024.

# mrandgen
Output:     matrix
Arguments:  d (string)
            p1 (scalar)
            p2 (scalar, conditional)
            p3 (scalar, conditional)
            rows (integer)
            cols (integer)
Examples:   matrix mx = mrandgen(u, 0, 100, 50, 1)
            matrix mt14 = mrandgen(t, 14, 20, 20)

Works like "randgen" except that the return value is a matrix rather than a
series. The initial arguments to this function (the number of which depends
on the selected distribution) are as described for randgen, but they must be
followed by two integers to specify the number of rows and columns of the
desired random matrix.

The first example above calls for a uniform random column vector of length
50, while the second example specifies a 20 x 20 random matrix with drawings
from the t distribution with 14 degrees of freedom.

See also "mnormal", "muniform".

# mread
Output:     matrix
Arguments:  fname (string)
            import (boolean, optional)

Reads a matrix from a file named fname. If the filename has the suffix ".gz"
it is assumed that gzip compression has been applied in writing the data; if
it has the suffix ".bin" the file is assumed to be in binary format (see
"mwrite" for details). Otherwise the file is assumed to be plain text,
conforming to the following specification:

  It may start with any number of comments, defined as lines that start with
  the hash mark, #; such lines are ignored.

  The first non-comment line must contain two integers, separated by a space
  or a tab, indicating the number of rows and columns, respectively.

  The columns must be separated by spaces or tab characters.

  The decimal separator must be the dot character, ".".

If the file name does not contain a full path specification, it will be
looked for in several "likely" locations, beginning with the currently set
"workdir". However, if a non-zero value is given for the optional import
argument, the input file is looked for in the user's "dot" directory. This
is intended for use with the matrix-exporting functions offered in the
context of the "foreign" command. In this case the fname argument should be
a plain filename, without any path component.

See also "bread", "mwrite".

# mreverse
Output:     matrix
Argument:   X (matrix)

Returns a matrix containing the rows of X in reverse order. If you wish to
obtain a matrix in which the columns of X appear in reverse order you can
do:

	  matrix Y = mreverse(X')'

# mrls
Output:     matrix
Arguments:  Y (matrix)
            X (matrix)
            R (matrix)
            q (column vector)
            &U (reference to matrix, or null)
            &V (reference to matrix, or null)

Restricted least squares: returns a k x n matrix of parameter estimates
obtained by least-squares regression of the T x n matrix Y on the T x k
matrix X subject to the linear restriction RB = q, where B denotes the
stacked coefficient vector. R must have kn columns; each row of this matrix
represents a linear restriction. The number of rows in q must match the
number of rows in R.

If the fifth argument is not null, the T x n matrix U will contain the
residuals. If the final argument is given and is not null then the k x k
matrix V will hold the restricted counterpart to the matrix X'X^-1. The
variance matrix of the estimates for equation i can be constructed by
multiplying the appropriate sub-matrix of V by an estimate of the error
variance for that equation.

# mshape
Output:     matrix
Arguments:  X (matrix)
            r (integer)
            c (integer)

Rearranges the elements of X into a matrix with r rows and c columns.
Elements are read from X and written to the target in column-major order. If
X contains fewer than k = rc elements, the elements are repeated cyclically;
otherwise, if X has more elements, only the first k are used.

See also "cols", "rows", "unvech", "vec", "vech".

# msortby
Output:     matrix
Arguments:  X (matrix)
            j (integer)

Returns a matrix in which the rows of X are reordered by increasing value of
the elements in column j. This is a stable sort: rows that share the same
value in column j will not be interchanged.

# muniform
Output:     matrix
Arguments:  r (integer)
            c (integer)

Returns a matrix with r rows and c columns, filled with uniform (0,1)
pseudo-random variates. Note: the preferred method for generating a scalar
uniform r.v. is to use the "randgen1" function.

See also "mnormal", "uniform".

# mweights
Output:     matrix
Arguments:  p (integer)
            theta (vector)
            type (integer or string)

Returns a p-vector of MIDAS weights to be applied to p lags of a
high-frequency series, based on the vector theta of hyper-parameters.

The type argument identifies the type of parameterization, which governs the
required number of elements, k, in theta: 1 = normalized exponential Almon
(k at least 1, typically 2); 2 = normalized beta with zero last (k = 2); 3 =
normalized beta with non-zero last lag (k = 3); and 4 = Almon polynomial (k
at least 1). Note that in the normalized beta case the first two elements of
theta must be positive.

The type may be given as an integer code, as shown above, or by one of the
following strings (respectively): nealmon, beta0, betan, almonp. If a string
is used, it should be placed in double quotes. For example, the following
two statements are equivalent:

	  W = mweights(8, theta, 2)
	  W = mweights(8, theta, "beta0")

See also "mgradient", "mlincomb".

# mwrite
Output:     integer
Arguments:  X (matrix)
            fname (string)
            export (boolean, optional)

Writes the matrix X to a file named fname. By default this file will be
plain text; the first line will hold two integers, separated by a tab
character, representing the number of rows and columns; on the following
lines the matrix elements appear, in scientific notation, separated by tabs
(one line per row). See below for alternative formats.

If a file fname already exists, it will be overwritten. The return value is
0 on successful completion; if an error occurs, such as the file being
unwritable, the return value will be non-zero.

The output file will be written in the currently set "workdir", unless the
filename string contains a full path specification. However, if a non-zero
value is given for the export argument, the output file will be written into
the user's "dot" directory, where it is accessible by default via the
matrix-loading functions offered in the context of the "foreign" command. In
this case a plain filename, without any path component, should be given for
the second argument.

Matrices stored via the mwrite function in its default form can be easily
read by other programs; see chapter 15 of the Gretl User's Guide for
details.

Two mutually exclusive inflections of this function are available, as
follows:

  If fname has the suffix ".gz" then the file is written with gzip
  compression.

  If fname has the suffix ".bin" then the file is written in binary format.
  In this case the first 19 bytes contain the characters
  gretl_binary_matrix, the next 8 bytes contain two 32-bit integers giving
  the number of rows and columns, and the remainder of the file contains the
  matrix elements as little-endian "doubles", in column-major order. If
  gretl is run on a big-endian system, the binary values are converted to
  little endian on writing, and converted to big endian on reading.

Note that if the matrix file is to be read by a third-party program it is
not advisable to use the gzip or binary options. But if the file is intended
for reading by gretl the alternative formats save space, and the binary
format allows for much faster reading of large matrices. The gzip format is
not recommended for very large matrices, since decompression can be quite
slow.

See also "mread".

# mxtab
Output:     matrix
Arguments:  x (series or vector)
            y (series or vector)

Returns a matrix holding the cross tabulation of the values contained in x
(by row) and y (by column). The two arguments should be of the same type
(both series or both column vectors), and because of the typical usage of
this function, are assumed to contain integer values only.

See also "values".

# naalen
Output:     matrix
Arguments:  d (series or vector)
            cens (series or vector, optional)

Given a sample of duration data, d, possibly accompanied by a record of
censoring status, cens, computes the Nelson-Aalen nonparametric estimator of
the hazard function (Nelson, 1972; Aalen, 1978). The returned matrix has
three columns holding, respectively, the sorted unique values in d, the
estimated cumulated hazard function corresponding to the duration value in
column 1, and the standard error of the estimator.

If the cens series is given, the value 0 is taken to indicate an uncensored
observation while a value of 1 indicates a right-censored observation (that
is, the period of observation of the individual in question has ended before
the duration or spell has been recorded as terminated). If cens is not
given, it is assumed that all observations are uncensored. (Note: the
semantics of cens may be extended at some point to cover other types of
censoring.)

See also "kmeier".

# nadarwat
Output:     series
Arguments:  y (series)
            x (series)
            h (scalar)

Returns the Nadaraya-Watson nonparametric estimator of the conditional mean
of y given x. It returns a series holding the nonparametric estimate of
E(y_i|x_i) for each non-missing element of the series x.

The kernel function K is given by K = exp(-x^2 / 2h) for |x| < T and zero
otherwise.

The argument h, known as the bandwidth, is a parameter (a positive real
number) given by the user. This is usually a small number: larger values of
h make m(x) smoother; a popular choice is n^-0.2. More details are given in
chapter 36 of the Gretl User's Guide.

The scalar T is used to prevent numerical problems when the kernel function
is evaluated too far away from zero and is called the trim parameter.

The trim parameter can be adjusted via the nadarwat_trim setting, as a
multiple of h. The default value is 4.

The user may provide a negative value for the bandwidth: this is interpreted
as conventional syntax to obtain the leave-one-out estimator, that is a
variant of the estimator that does not use the i-th observation for
evaluating m(x_i). This makes the Nadaraya-Watson estimator more robust
numerically and its usage is normally advised when the estimator is computed
for inference purposes. Of course, the bandwidth actually used is the
absolute value of h.

# nelem
Output:     integer
Argument:   L (list, matrix, bundle or array)

Returns the number of elements in the argument, which may be a list, a
matrix, a bundle, or an array (but not a series).

# ngetenv
Output:     scalar
Argument:   s (string)

If an environment variable by the name of s is defined and has a numerical
value, returns that value; otherwise returns NA. See also "getenv".

# nlines
Output:     scalar
Argument:   buf (string)

Returns a count of the complete lines (that is, lines that end with the
newline character) in buf.

Example:

        string web_page = readfile("http://gretl.sourceforge.net/")
        scalar number = nlines(web_page)
        print number

# NMmax
Output:     scalar
Arguments:  &b (reference to matrix)
            f (function call)
            maxfeval (integer, optional)

Numerical maximization via the Nelder-Mead derivative-free simplex method.
On input the vector b should hold the initial values of a set of parameters,
and the argument f should specify a call to a function that calculates the
(scalar) criterion to be maximized, given the current parameter values and
any other relevant data. On successful completion, NMmax returns the
maximized value of the criterion, and b holds the parameter values which
produce the maximum.

The optional third argument may be used to set the maximum number of
function evaluations; if it is omitted or set to zero the maximum defaults
to 2000. As a special signal to this function the maxfeval value may be set
to a negative number. In this case the absolute value is taken, and NMmax
flags an error if the best value found for the objective function at the
maximum number of function evaluations is not a local optimum. Otherwise
non-convergence in this sense is not treated as an error.

If the object is in fact minimization, either the function call should
return the negative of the criterion or alternatively NMmax may be called
under the alias NMmin.

For more details and examples see the chapter on numerical methods in
chapter 33 of the Gretl User's Guide. See also "simann".

# NMmin
Output:     scalar

An alias for "NMmax"; if called under this name the function acts as a
minimizer.

# nobs
Output:     integer
Argument:   y (series)

Returns the number of non-missing observations for the variable y in the
currently selected sample.

# normal
Output:     series
Arguments:  mu (scalar)
            sigma (scalar)

Generates a series of Gaussian pseudo-random variates with mean mu and
standard deviation sigma. If no arguments are supplied, standard normal
variates N(0,1) are produced. The values are produced using the Ziggurat
method (Marsaglia and Tsang, 2000).

See also "randgen", "mnormal", "muniform".

# normtest
Output:     matrix
Arguments:  y (series or vector)
            method (string, optional)

Performs a test for normality of y. By default this is the Doornik-Hansen
test but the optional method argument can be used to select an alternative:
use swilk to get the Shapiro-Wilk test, jbera for Jarque-Bera test, or
lillie for the Lilliefors test.

The second argument may be given in either quoted or unquoted form. In the
latter case, however, if the argument is the name of a string variable the
value of the variable is substituted. The following shows three acceptable
ways of calling for a Shapiro-Wilk test:

	  matrix nt = normtest(y, swilk)
	  matrix nt = normtest(y, "swilk")
	  string testtype = "swilk"
	  matrix nt = normtest(y, testtype)

The returned matrix is 1 x 2; it holds the test statistic and its p-value.
See also the "normtest" command.

# npcorr
Output:     matrix
Arguments:  x (series or vector)
            y (series or vector)
            method (string, optional)

Calculates a measure of correlation between x and y using a nonparametric
method. If given, the third argument should be either kendall (for Kendall's
tau, version b, the default method) or spearman (for Spearman's rho).

The return value is a 3-vector holding the correlation measure plus a test
statistic and p-value for the null hypothesis of no correlation. Note that
if the sample size is too small the test statistic and/or p-value may be NaN
(not a number, or missing).

See also "corr" for Pearson correlation.

# npv
Output:     scalar
Arguments:  x (series or vector)
            r (scalar)

Returns the Net Present Value of x, considered as a sequence of payments
(negative) and receipts (positive), evaluated at annual discount rate r,
which must be expressed as a decimal fraction, not a percentage (0.05 rather
than 5%). The first value is taken as dated "now" and is not discounted. To
emulate an NPV function in which the first value is discounted, prepend zero
to the input sequence.

Supported data frequencies are annual, quarterly, monthly, and undated
(undated data are treated as if annual).

See also "irr".

# NRmax
Output:     scalar
Arguments:  &b (reference to matrix)
            f (function call)
            g (function call, optional)
            h (function call, optional)

Numerical maximization via the Newton-Raphson method. On input the vector b
should hold the initial values of a set of parameters, and the argument f
should specify a call to a function that calculates the (scalar) criterion
to be maximized, given the current parameter values and any other relevant
data. If the object is in fact minimization, this function should return the
negative of the criterion. On successful completion, NRmax returns the
maximized value of the criterion, and b holds the parameter values which
produce the maximum.

The optional third and fourth arguments provide means of supplying
analytical derivatives and an analytical (negative) Hessian, respectively.
The functions referenced by g and h must take as their first argument a
pre-defined matrix that is of the correct size to contain the gradient or
Hessian, respectively, given in pointer form. They also must take the
parameter vector as an argument (in pointer form or otherwise). Other
arguments are optional. If either or both of the optional arguments are
omitted, a numerical approximation is used.

For more details and examples see the chapter on numerical methods in
chapter 33 of the Gretl User's Guide. See also "BFGSmax", "fdjac".

# NRmin
Output:     scalar

An alias for "NRmax"; if called under this name the function acts as a
minimizer.

# nullspace
Output:     matrix
Argument:   A (matrix)

Computes the right nullspace of A, via the singular value decomposition: the
result is a matrix B such that the product AB is a zero matrix, except when
A has full column rank, in which case an empty matrix is returned.
Otherwise, if A is m x n, B will be n by (n - r), where r is the rank of A.

If A is not of full column rank, then the vertical concatenation of A and
the transpose of B produces a full rank matrix.

Example:

      A = mshape(seq(1,6),2,3)
      B = nullspace(A)
      C = A | B'

      print A B C

      eval A*B
      eval rank(C)

Produces

      ? print A B C
      A (2 x 3)

      1   3   5 
      2   4   6 

      B (3 x 1)

      -0.5 
         1 
      -0.5 

      C (3 x 3)

         1      3      5 
         2      4      6 
      -0.5      1   -0.5 

      ? eval A*B
      -4.4409e-16 
      -4.4409e-16 

      ? eval rank(C)
      3

See also "rank", "svd".

# numhess
Output:     matrix
Arguments:  b (column vector)
            fcall (function call)
            d (scalar, optional)

Calculates a numerical approximation to the Hessian associated with the
n-vector b and the objective function specified by the argument fcall. The
function call should take b as its first argument (either straight or in
pointer form), followed by any additional arguments that may be needed, and
it should return a scalar result. On successful completion numhess returns
an n x n matrix holding the Hessian, which is exactly symmetric by
construction.

The method used is Richardson extrapolation, with four steps. The optional
third argument can be used to set the fraction d of the parameter value used
in setting the initial step size; if this argument is omitted the default is
d = 0.01.

Here is an example of usage:

	  matrix H = numhess(theta, myfunc(&theta, X))

See also "BFGSmax", "fdjac".

# obs
Output:     series

Returns a series of consecutive integers, setting 1 at the start of the
dataset. Note that the result is invariant to subsampling. This function is
especially useful with time-series datasets. Note: you can write t instead
of obs with the same effect.

See also "obsnum".

# obslabel
Output:     string
Argument:   t (integer)

Returns the observation label for observation t, where t is a 1-based index.
The inverse function is provided by "obsnum".

# obsnum
Output:     integer
Argument:   s (string)

Returns an integer corresponding to the observation specified by the string
s. Note that the result is invariant to subsampling. This function is
especially useful with time-series datasets. For example, the following code

	  open denmark 
	  k = obsnum(1980:1)

yields k = 25, indicating that the first quarter of 1980 is the 25th
observation in the denmark dataset.

See also "obs", "obslabel".

# ok
Output:     see below
Argument:   x (scalar, series, matrix or list)

If x is a scalar, returns 1 if x is not NA, otherwise 0. If x is a series,
returns a series with value 1 at observations with non-missing values and
zeros elsewhere. If x is a list, the output is a series with 0 at
observations for which at least one series in the list has a missing value,
and 1 otherwise.

If x is a matrix the behavior is a little different, since matrices cannot
contain NAs: the function returns a matrix of the same dimensions as x, with
1s in positions corresponding to finite elements of x and 0s in positions
where the elements are non-finite (either infinities or not-a-number, as per
the IEEE 754 standard).

See also "missing", "misszero", "zeromiss". But note that these functions
are not applicable to matrices.

# onenorm
Output:     scalar
Argument:   X (matrix)

Returns the 1-norm of the matrix X, that is, the maximum across the columns
of X of the sum of absolute values of the column elements.

See also "infnorm", "rcond".

# ones
Output:     matrix
Arguments:  r (integer)
            c (integer)

Outputs a matrix with r rows and c columns, filled with ones.

See also "seq", "zeros".

# orthdev
Output:     series
Argument:   y (series)

Only applicable if the currently open dataset has a panel structure.
Computes the forward orthogonal deviations for variable y.

This transformation is sometimes used instead of differencing to remove
individual effects from panel data. For compatibility with first
differences, the deviations are stored one step ahead of their true temporal
location (that is, the value at observation t is the deviation that,
strictly speaking, belongs at t - 1). That way one loses the first
observation in each time series, not the last.

See also "diff".

# pdf
Output:     same type as input
Arguments:  d (string)
            ... (see below)
            x (scalar, series or matrix)
Examples:   f1 = pdf(N, -2.5)
            f2 = pdf(X, 3, y)
            f3 = pdf(W, shape, scale, y)

Probability density function calculator. Returns the density at x of the
distribution identified by the code d. See "cdf" for details of the required
(scalar) arguments. The distributions supported by the pdf function are the
normal, Student's t, chi-square, F, Gamma, Exponential, Weibull, Generalized
Error, Binomial and Poisson. Note that for the Binomial and the Poisson
what's calculated is in fact the probability mass at the specified point.
For Student's t, chi-square, F the noncentral variants are supported too.

For the normal distribution, see also "dnorm".

# pergm
Output:     matrix
Arguments:  x (series or vector)
            bandwidth (scalar, optional)

If only the first argument is given, computes the sample periodogram for the
given series or vector. If the second argument is given, computes an
estimate of the spectrum of x using a Bartlett lag window of the given
bandwidth, up to a maximum of half the number of observations (T/2).

Returns a matrix with two columns and T/2 rows: the first column holds the
frequency, omega, from 2pi/T to pi, and the second the corresponding
spectral density.

# pexpand
Output:     series
Argument:   v (vector)

Only applicable if the currently open dataset has a panel structure.
Performs the inverse operation of "pshrink". That is, given a vector of
length equal to the number of individuals in the current panel sample, it
returns a series in which each value is repeated T times, for T the
time-series length of the panel. The resulting series is therefore non-time
varying.

# pmax
Output:     series
Arguments:  y (series)
            mask (series, optional)

Only applicable if the current dataset has a panel structure. Returns a
series holding the maxima of variable y for each cross-sectional unit
(repeated for each time period).

If the optional second argument is provided then observations for which the
value of mask is zero are ignored.

See also "pmin", "pmean", "pnobs", "psd", "pxsum", "pshrink", "psum".

# pmean
Output:     series
Arguments:  y (series)
            mask (series, optional)

Only applicable if the current dataset has a panel structure. Returns a
series holding the time-mean of variable y for each cross-sectional unit,
the values being repeated for each period. Missing observations are skipped
in calculating the means.

If the optional second argument is provided then observations for which the
value of mask is zero are ignored.

See also "pmax", "pmin", "pnobs", "psd", "pxsum", "pshrink", "psum".

# pmin
Output:     series
Arguments:  y (series)
            mask (series, optional)

Only applicable if the current dataset has a panel structure. Returns a
series holding the minima of variable y for each cross-sectional unit
(repeated for each time period).

If the optional second argument is provided then observations for which the
value of mask is zero are ignored.

See also "pmax", "pmean", "pnobs", "psd", "pshrink", "psum".

# pnobs
Output:     series
Arguments:  y (series)
            mask (series, optional)

Only applicable if the current dataset has a panel structure. Returns a
series holding the number of valid observations of variable y for each
cross-sectional unit (repeated for each time period).

If the optional second argument is provided then observations for which the
value of mask is zero are ignored.

See also "pmax", "pmin", "pmean", "psd", "pshrink", "psum".

# polroots
Output:     matrix
Argument:   a (vector)

Finds the roots of a polynomial. If the polynomial is of degree p, the
vector a should contain p + 1 coefficients in ascending order, i.e. starting
with the constant and ending with the coefficient on x^p.

If all the roots are real they are returned in a column vector of length p,
otherwise a p x 2 matrix is returned, the real parts in the first column and
the imaginary parts in the second.

# polyfit
Output:     series
Arguments:  y (series)
            q (integer)

Fits a polynomial trend of order q to the input series y using the method of
orthogonal polynomials. The series returned holds the fitted values.

# princomp
Output:     matrix
Arguments:  X (matrix)
            p (integer)
            covmat (boolean, optional)

Let the matrix X be T x k, containing T observations on k variables. The
argument p must be a positive integer less than or equal to k. This function
returns a T x p matrix, P, holding the first p principal components of X.

The optional third argument acts as a boolean switch: if it is non-zero the
principal components are computed on the basis of the covariance matrix of
the columns of X (the default is to use the correlation matrix).

The elements of P are computed as the sum from i to k of Z_ti times v_ji,
where Z_ti is the standardized value (or just the centered value, if the
covariance matrix is used) of variable i at observation t and v_ji is the
jth eigenvector of the correlation (or covariance) matrix of the X_is, with
the eigenvectors ordered by decreasing value of the corresponding
eigenvalues.

See also "eigensym".

# prodc
Output:     row vector
Argument:   X (matrix)

Returns the product of the elements of X, by column. See also "prodr",
"meanc", "sdc", "sumc".

# prodr
Output:     column vector
Argument:   X (matrix)

Returns the product of the elements of X, by row. See also "prodc", "meanr",
"sumr".

# psd
Output:     series
Arguments:  y (series)
            mask (series, optional)

Only applicable if the current dataset has a panel structure. Returns a
series holding the sample standard deviation of variable y for each
cross-sectional unit (with the values repeated for each time period). The
denominator used is the sample size for each unit minus 1, unless the number
of valid observations for the given unit is 1 (in which case 0 is returned)
or 0 (in which case NA is returned).

If the optional second argument is provided then observations for which the
value of mask is zero are ignored.

Note: this function makes it possible to check whether a given variable
(say, X) is time-invariant via the condition max(psd(X)) == 0.

See also "pmax", "pmin", "pmean", "pnobs", "pshrink", "psum".

# psdroot
Output:     square matrix
Argument:   A (symmetric matrix)

Performs a generalized variant of the Cholesky decomposition of the matrix
A, which must be positive semidefinite (but which may be singular). If the
input matrix is not square an error is flagged, but symmetry is assumed and
not tested; only the lower triangle of A is read. The result is a
lower-triangular matrix L which satisfies A = LL'. Indeterminate elements in
the solution are set to zero.

For the case where A is positive definite, see "cholesky".

# pshrink
Output:     matrix
Argument:   y (series)

Only applicable if the current dataset has a panel structure. Returns a
column vector holding the first valid observation for the series y for each
cross-sectional unit in the panel, over the current sample range. If a unit
has no valid observations for the input series it is skipped.

This function provides a means of compacting the series returned by
functions such as "pmax" and "pmean", in which a value pertaining to each
cross-sectional unit is repeated for each time period.

See "pexpand" for the inverse operation.

# psum
Output:     series
Arguments:  y (series)
            mask (series, optional)

This function is applicable only if the current dataset has a panel
structure. It returns a series holding the sum over time of variable y for
each cross-sectional unit, the values being repeated for each period.
Missing observations are skipped in calculating the sums.

If the optional second argument is provided then observations for which the
value of mask is zero are ignored.

See also "pmax", "pmean", "pmin", "pnobs", "psd", "pxsum", "pshrink".

# pvalue
Output:     same type as input
Arguments:  c (character)
            ... (see below)
            x (scalar, series or matrix)
Examples:   p1 = pvalue(z, 2.2)
            p2 = pvalue(X, 3, 5.67)
            p2 = pvalue(F, 3, 30, 5.67)

P-value calculator. Returns P(X > x), where the distribution of X is
determined by the character c. Between the arguments c and x, zero or more
additional arguments are required to specify the parameters of the
distribution; see "cdf" for details. The distributions supported by the
pvalue function are the standard normal, t, Chi square, F, gamma, binomial,
Poisson, Exponential, Weibull and Generalized Error.

See also "critical", "invcdf", "urcpval", "imhof".

# pxnobs
Output:     series
Arguments:  y (series)
            mask (series, optional)

Only applicable if the current dataset has a panel structure. Returns a
series holding the number of valid observations of y in each time period
(this count being repeated for each unit).

If the optional second argument is provided then observations for which the
value of mask is zero are ignored.

Note that this function works in a different dimension from the "pnobs"
function.

# pxsum
Output:     series
Arguments:  y (series)
            mask (series, optional)

Only applicable if the current dataset has a panel structure. Returns a
series holding the sum of the values of y for each cross-sectional unit in
each period (the values being repeated for each unit).

If the optional second argument is provided then observations for which the
value of mask is zero are ignored.

Note that this function works in a different dimension from the "psum"
function.

# qform
Output:     matrix
Arguments:  x (matrix)
            A (symmetric matrix)

Computes the quadratic form Y = xAx'. Using this function instead of
ordinary matrix multiplication guarantees more speed and better accuracy,
when A is a generic symmetric matrix. However, in the special case when A is
the identity matrix, the simple expression x'x performs much better than
qform(x',I(rows(x)).

If x and A are not conformable, or A is not symmetric, an error is returned.

# qlrpval
Output:     scalar
Arguments:  X2 (scalar)
            df (integer)
            p1 (scalar)
            p2 (scalar)

P-values for the test statistic from the QLR sup-Wald test for a structural
break at an unknown point (see "qlrtest"), as per Bruce Hansen (1997).

The first argument, X2, denotes the (chi-square form of) the maximum Wald
test statistic and df denotes its degrees of freedom. The third and fourth
arguments represent, as decimal fractions of the overall estimation range,
the starting and ending points of the central range of observations over
which the successive Wald tests are calculated. For example if the standard
approach of 15 percent trimming is adopted, you would set p1 to 0.15 and p2
to 0.85.

See also "pvalue", "urcpval".

# qnorm
Output:     same type as input
Argument:   x (scalar, series or matrix)

Returns quantiles for the standard normal distribution. If x is not between
0 and 1, NA is returned. See also "cnorm", "dnorm".

# qrdecomp
Output:     matrix
Arguments:  X (matrix)
            &R (reference to matrix, or null)

Computes the QR decomposition of an m x n matrix X, that is X = QR where Q
is an m x n orthogonal matrix and R is an n x n upper triangular matrix. The
matrix Q is returned directly, while R can be retrieved via the optional
second argument.

See also "eigengen", "eigensym", "svd".

# quadtable
Output:     matrix
Arguments:  n (integer)
            type (integer, optional)
            a (scalar, optional)
            b (scalar, optional)

Returns an n x 2 matrix for use with Gaussian quadrature (numerical
integration). The first column holds the nodes or abscissae, the second the
weights.

The first argument specifies the number of points (rows) to compute. The
second argument codes for the type of quadrature: use 1 for Gauss-Hermite
(the default); 2 for Gauss-Legendre; or 3 for Gauss-Laguerre. The
significance of the optional parameters a and b depends on the selected
type, as explained below.

Gaussian quadrature is a method of approximating numerically the definite
integral of some function of interest. Let the function be represented as
the product f(x)W(x). The types of quadrature differ in the specification of
the component W(x): in the Hermite case this is exp(-x^2); in the Laguerre
case, exp(-x); and in the Legendre case simply W(x) = 1.

For each specification of W, one can compute a set of nodes, x_i, and
weights, w_i, such that the sum from i=1 to n of w_i f(x_i) approximates the
desired integral. The method of Golub and Welsch (1969) is used.

When the Gauss-Legendre type is selected, the optional arguments a and b can
be used to control the lower and upper limits of integration, the default
values being -1 and 1. (In Hermite quadrature the limits are fixed at minus
and plus infinity, while in the Laguerre case they are fixed at 0 and
infinity.)

In the Hermite case a and b play a different role: they can be used to
replace the default form of W(x) with the (closely related) normal
distribution with mean a and standard deviation b. Supplying values of 0 and
1 for these parameters, for example, has the effect of making W(x) into the
standard normal pdf, which is equivalent to multiplying the default nodes by
the square root of two and dividing the weights by the square root of pi.

# quantile
Output:     scalar or matrix
Arguments:  y (series or matrix)
            p (scalar between 0 and 1)

If y is a series, returns the p-quantile for the series. For example, when p
= 0.5, the median is returned.

If y is a matrix, returns a row vector containing the p-quantiles for the
columns of y; that is, each column is treated as a series.

In addition, for matrix y an alternate form of the second argument is
supported: p may be given as a vector. In that case the return value is an m
x n matrix, where m is the number of elements in p and n is the number of
columns in y.

# randgen
Output:     series
Arguments:  d (string)
            p1 (scalar or series)
            p2 (scalar or series, conditional)
            p3 (scalar, conditional)
Examples:   series x = randgen(u, 0, 100)
            series t14 = randgen(t, 14)
            series y = randgen(B, 0.6, 30)
            series g = randgen(G, 1, 1)
            series P = randgen(P, mu)

All-purpose random number generator. The argument d is a string (in most
cases just a single character) which specifies the distribution from which
the pseudo-random numbers should be drawn. The arguments p1 to p3 specify
the parameters of the selected distribution; the number of such parameters
depends on the distribution. For distributions other than the beta-binomial,
the parameters p1 and (if applicable) p2 may be given as either scalars or
series: if they are given as scalars the output series is identically
distributed, while if a series is given for p1 or p2 the distribution is
conditional on the parameter value at each observation. In the case of the
beta-binomial all the parameters must be scalars.

Specifics are given below: the string code for each distribution is shown in
parentheses, followed by the interpretation of the argument p1 and, where
applicable, p2 and p3.

  Uniform (continuous) (u or U): minimum, maximum

  Uniform (discrete) (i): minimum, maximum

  Normal (z, n, or N): mean, standard deviation

  Student's t (t): degrees of freedom

  Chi square (c, x, or X): degrees of freedom

  Snedecor's F (f or F): df (num.), df (den.)

  Gamma (g or G): shape, scale

  Binomial (b or B): probability, number of trials

  Poisson (p or P): mean

  Exponential (exp): scale

  Weibull (w or W): shape, scale

  Generalized Error (E): shape

  Beta (beta): shape1, shape2

  Beta-Binomial (bb): trials, shape1, shape2

See also "normal", "uniform", "mrandgen", "randgen1".

# randgen1
Output:     scalar
Arguments:  d (character)
            p1 (scalar)
            p2 (scalar, conditional)
Examples:   scalar x = randgen1(z, 0, 1)
            scalar g = randgen1(g, 3, 2.5)

Works like "randgen" except that the return value is a scalar rather than a
series.

The first example above calls for a value from the standard normal
distribution, while the second specifies a drawing from the Gamma
distribution with shape 3 and scale 2.5.

See also "mrandgen".

# randint
Output:     integer
Arguments:  min (integer)
            max (integer)

Returns a pseudo-random integer in the closed interval [min, max]. See also
"randgen".

# rank
Output:     integer
Argument:   X (matrix)

Returns the rank of X, numerically computed via the singular value
decomposition. See also "svd".

# ranking
Output:     same type as input
Argument:   y (series or vector)

Returns a series or vector with the ranks of y. The rank for observation i
is the number of elements that are less than y_i plus one half the number of
elements that are equal to y_i. (Intuitively, you may think of chess points,
where victory gives you one point and a draw gives you half a point.) One is
added so the lowest rank is 1 instead of 0.

See also "sort", "sortby".

# rcond
Output:     scalar
Argument:   A (square matrix)

Returns the reciprocal condition number for A with respect to the 1-norm. In
many circumstances, this is a better measure of the sensitivity of A to
numerical operations such as inversion than the determinant.

The value is computed as the reciprocal of the product, 1-norm of A times
1-norm of A-inverse.

See also "det", "ldet", "onenorm".

# readfile
Output:     string
Arguments:  fname (string)
            codeset (string, optional)

If a file by the name of fname exists and is readable, returns a string
containing the content of this file, otherwise flags an error. If fname does
not contain a full path specification, it will be looked for in several
"likely" locations, beginning with the currently set "workdir".

If fname starts with the identifier of a supported internet protocol
(http://, ftp:// or https://), libcurl is invoked to download the resource.
See also "curl" for more elaborate downloading operations.

If the text to be read is not encoded in UTF-8, gretl will try recoding it
from the current locale codeset if that is not UTF-8, or from ISO-8859-15
otherwise. If this simple default does not meet your needs you can use the
optional second argument to specify a codeset. For example, if you want to
read text in Microsoft codepage 1251 and that is not your locale codeset,
you should give a second argument of "cp1251".

Examples:

        string web_page = readfile("http://gretl.sourceforge.net/")
        print web_page

        string current_settings = readfile("@dotdir/.gretl2rc")
        print current_settings

Also see the "sscanf" and "getline" functions.

# regsub
Output:     string
Arguments:  s (string)
            match (string)
            repl (string)

Returns a copy of s in which all occurrences of the pattern match are
replaced using repl. The arguments match and repl are interpreted as
Perl-style regular expressions.

See also "strsub" for simple substitution of literal strings.

# remove
Output:     integer
Argument:   fname (string)

If a file by the name of fname exists and is writable by the user, removes
(deletes) the named file. Returns 0 on successful completion, non-zero if
there is no such file or the file cannot be removed.

If fname contains a full path specification, gretl will attempt to delete
that file and return an error if the file doesn't exist or can't be deleted
for some reason (such as insufficient privileges). If fname does not contain
a full path, then it will be assumed that the given file name is relative to
"workdir". If the file doesn't exist or is unwritable, no other directories
will be searched.

# replace
Output:     same type as input
Arguments:  x (series or matrix)
            find (scalar or vector)
            subst (scalar or vector)

Replaces each element of x equal to the i-th element of find with the
corresponding element of subst.

If find is a scalar, subst must also be a scalar. If find and subst are both
vectors, they must have the same number of elements. But if find is a vector
and subst a scalar, then all matches will be replaced by subst.

Example:

	  a = {1,2,3;3,4,5}
	  find = {1,3,4}
	  subst = {-1,-8, 0}
	  b = replace(a, find, subst)
	  print a b

produces

          a (2 x 3)

          1   2   3 
          3   4   5 

          b (2 x 3)

          -1    2   -8 
          -8    0    5 

# resample
Output:     same type as input
Arguments:  x (series or matrix)
            blocksize (integer, optional)

The initial description of this function pertains to cross-sectional or
time-series data; see below for the case of panel data.

Resamples from x with replacement. In the case of a series argument, each
value of the returned series, y_t, is drawn from among all the values of x_t
with equal probability. When a matrix argument is given, each row of the
returned matrix is drawn from the rows of x with equal probability.

The optional argument blocksize represents the block size for resampling by
moving blocks. If this argument is given it should be a positive integer
greater than or equal to 2. The effect is that the output is composed by
random selection with replacement from among all the possible contiguous
sequences of length blocksize in the input. (In the case of matrix input,
this means contiguous rows.) If the length of the data is not an integer
multiple of the block size, the last selected block is truncated to fit.

If the argument x is a series and the dataset takes the form of a panel,
resampling by moving blocks is not supported. The basic form of resampling
is supported, but has this specific interpretation: the data are resampled
"by individual". Suppose you have a panel in which 100 individuals are
observed over 5 periods. Then the returned series will again be composed of
100 blocks of 5 observations: each block will be drawn with equal
probability from the 100 individual time series, with the time-series order
preserved.

# round
Output:     same type as input
Argument:   x (scalar, series or matrix)

Rounds to the nearest integer. Note that when x lies halfway between two
integers, rounding is done "away from zero", so for example 2.5 rounds to 3,
but round(-3.5) gives -4. This is a common convention in spreadsheet
programs, but other software may yield different results. See also "ceil",
"floor", "int".

# rownames
Output:     integer
Arguments:  M (matrix)
            S (array of strings or list)

Attaches names to the rows of the m x n matrix M. If S is a named list, the
names are taken from the names of the listed series; the list must have m
members. If S is an array of strings, it should contain m elements. For
backward compatibility, a single string may also be given as the second
argument; in that case it should contain m space-separated substrings.

The return value is 0 on successful completion, non-zero on error. See also
"colnames".

Example:

	  matrix M = {1, 2; 2, 1; 4, 1}
	  strings S = array(3)
	  S[1] = "Row1"
	  S[2] = "Row2"
	  S[3] = "Row3"
	  rownames(M, S)
	  print M      

# rows
Output:     integer
Argument:   X (matrix)

Returns the number of rows of the matrix X. See also "cols", "mshape",
"unvech", "vec", "vech".

# sd
Output:     scalar or series
Argument:   x (series or list)

If x is a series, returns the (scalar) sample standard deviation, skipping
any missing observations.

If x is a list, returns a series y such that y_t is the sample standard
deviation of the values of the variables in the list at observation t, or NA
if there are any missing values at t.

See also "var".

# sdc
Output:     row vector
Arguments:  X (matrix)
            df (scalar, optional)

Returns the standard deviations of the columns of X. If df is positive it is
used as the divisor for the column variances, otherwise the divisor is the
number of rows in X (that is, no degrees of freedom correction is applied).
See also "meanc", "sumc".

# sdiff
Output:     same type as input
Argument:   y (series or list)

Computes seasonal differences: y(t) - y(t-k), where k is the periodicity of
the current dataset (see "$pd"). Starting values are set to NA.

When a list is returned, the individual variables are automatically named
according to the template sd_varname where varname is the name of the
original series. The name is truncated if necessary, and may be adjusted in
case of non-uniqueness in the set of names thus constructed.

See also "diff", "ldiff".

# seasonals
Output:     list
Arguments:  baseline (integer, optional)
            center (boolean, optional)

Applicable only if the dataset has a time-series structure with periodicity
greater than 1. Returns a list of dummy variables coding for the period or
season, named S1, S2 and so on.

The optional baseline argument can be used to exclude one period from the
set of dummies. For example, if you give a baseline value of 1 with
quarterly data the returned list will hold dummies for quarters 2, 3 and 4
only. If this argument is omitted or set to zero a full set of dummies is
generated; if non-zero, it must be an integer from 1 to the periodicity of
the data.

The center argument, if non-zero, calls for the dummies to be centered; that
is, to have their population mean subtracted. For example, with quarterly
data centered seasonals will have values -0.25 and 0.75 rather than 0 and 1.

# selifc
Output:     matrix
Arguments:  A (matrix)
            b (row vector)

Selects from A only the columns for which the corresponding element of b is
non-zero. b must be a row vector with the same number of columns as A.

See also "selifr".

# selifr
Output:     matrix
Arguments:  A (matrix)
            b (column vector)

Selects from A only the rows for which the corresponding element of b is
non-zero. b must be a column vector with the same number of rows as A.

See also "selifc", "trimr".

# seq
Output:     row vector
Arguments:  a (scalar)
            b (scalar)
            k (scalar, optional)

Given only two arguments, returns a row vector filled with values from a to
b with an increment of 1, or a decrement of 1 if a is greater than b.

If the third argument is given, returns a row vector containing a sequence
of values starting with a and incremented (or decremented, if a is greater
than b) by k at each step. The final value is the largest member of the
sequence that is less than or equal to b (or mutatis mutandis for a greater
than b). The argument k must be positive.

See also "ones", "zeros".

# setnote
Output:     integer
Arguments:  b (bundle)
            key (string)
            note (string)

Sets a descriptive note for the object identified by key in the bundle b.
This note will be shown when the print command is used on the bundle. This
function returns 0 on success or non-zero on failure (for example, if there
is no object in b under the given key).

# simann
Output:     scalar
Arguments:  &b (reference to matrix)
            f (function call)
            maxit (integer, optional)

Implements simulated annealing, which may be helpful in improving the
initialization for a numerical optimization problem.

On input the first argument holds the initial value of a parameter vector
and the second argument specifies a function call which returns the (scalar)
value of the maximand. The optional third argument specifies the maximum
number of iterations (which defaults to 1024). On successful completion,
simann returns the final value of the maximand and b holds the associated
parameter vector.

For more details and an example see the chapter on numerical methods in
chapter 33 of the Gretl User's Guide. See also "BFGSmax", "NRmax".

# sin
Output:     same type as input
Argument:   x (scalar, series or matrix)

Returns the sine of x. See also "cos", "tan", "atan".

# sinh
Output:     same type as input
Argument:   x (scalar, series or matrix)

Returns the hyperbolic sine of x.

See also "asinh", "cosh", "tanh".

# skewness
Output:     scalar
Argument:   x (series)

Returns the skewness value for the series x, skipping any missing
observations.

# sleep
Output:     scalar
Argument:   ns (integer)

Not of any direct use for econometrics, but can be useful for testing
parallelization methods. This function simply causes the current thread to
"sleep" -- that is, do nothing -- for ns seconds. On wake-up, the function
returns 0.

# smplspan
Output:     scalar
Arguments:  startobs (string)
            endobs (string)
            pd (integer)

Returns the number of observations from startobs to endobs (inclusive) for
time-series data with frequency pd.

The first two arguments should be given in the form preferred by gretl for
annual, quarterly or monthly data -- for example, 1970, 1970:1 or 1970:01
for each of these frequencies, respectively -- or as ISO 8601 dates,
YYYY-MM-DD.

The pd argument must be 1, 4 or 12 (annual, quarterly, monthly); one of the
daily frequencies (5, 6, 7); or 52 (weekly). If pd equals 1, 4 or 12, then
ISO 8601 dates are acceptable for the first two arguments if they indicate
the start of the period in question. For example, 2015-04-01 is acceptable
in place of 2015:2 to represent the second quarter of 2015.

If you already have a dataset of frequency pd in place, with a sufficient
range of observations, then the result of this function could easily be
emulated using "obsnum". The advantange of smplspan is that you can
calculate the number of observations without having a suitable dataset (or
any dataset) in place. An example follows:

	  scalar T = smplspan("2010-01-01", "2015-12-31", 5)
	  nulldata T
	  setobs 7 2010-01-01

This produces:

	  ? scalar T = smplspan("2010-01-01", "2015-12-31", 5)
	  Generated scalar T = 1565
	  ? nulldata T
	  periodicity: 1, maxobs: 1565
	  observations range: 1 to 1565
	  ? setobs 5 2010-01-01
	  Full data range: 2010-01-01 - 2015-12-31 (n = 1565)

After the above, you can be confident that the last observation in the
dataset created via "nulldata" will be 2015-12-31. Note that the number 1565
would have been rather tricky to compute otherwise.

# sort
Output:     same type as input
Argument:   x (series or vector)

Sorts x in ascending order, skipping observations with missing values when x
is a series. See also "dsort", "values". For matrices specifically, see
"msortby".

# sortby
Output:     series
Arguments:  y1 (series)
            y2 (series)

Returns a series containing the elements of y2 sorted by increasing value of
the first argument, y1. See also "sort", "ranking".

# sprintf
Output:     string
Arguments:  format (string)
            ... (see below)

The returned string is constructed by printing the values of the trailing
arguments, indicated by the dots above, under the control of format. It is
meant to give you great flexibility in creating strings. The format is used
to specify the precise way in which you want the arguments to be printed.

In general, format must be an expression that evaluates to a string, but in
most cases will just be a string literal (an alphanumeric sequence
surrounded by double quotes). Some character sequences in the format have a
special meaning: those beginning with the percent character (%) are
interpreted as "placeholders" for the items contained in the argument list;
moreover, special characters such as the newline character are represented
via a combination beginning with a backslash.

For example, the code below

	  scalar x = sqrt(5)
	  string claim = sprintf("sqrt(%d) is (roughly) %6.4f.\n", 5, x)
	  print claim

will output

	  sqrt(5) is (roughly) 2.2361.

where %d indicates that we want an integer at that place in the output;
since it is the leftmost "percent" expression, it is matched to the first
argument, that is 5. The second special sequence is %6.4f, which stands for
a decimal value with 4 digits after the decimal separator and at least 6
digits wide. The number of such sequences must match the number of arguments
following the format string.

See the help page for the "printf" command for more details about the syntax
you can use in format strings.

# sqrt
Output:     same type as input
Argument:   x (scalar, series or matrix)

Returns the positive square root of x; produces NA for negative values.

Note that if the argument is a matrix the operation is performed element by
element and, since matrices cannot contain NA, negative values generate an
error. For the "matrix square root" see "cholesky".

# square
Output:     list
Arguments:  L (list)
            cross-products (boolean, optional)

Returns a list that references the squares of the variables in the list L,
named on the pattern sq_varname. If the optional second argument is present
and has a non-zero value, the returned list also includes the cross-products
of the elements of L; these are named on the pattern var1_var2. In these
patterns the input variable names are truncated if need be, and the output
names may be adjusted in case of duplication of names in the returned list.

# sscanf
Output:     integer
Arguments:  src (string)
            format (string)
            ... (see below)

Reads values from src under the control of format and assigns these values
to one or more trailing arguments, indicated by the dots above. Returns the
number of values assigned. This is a simplified version of the sscanf
function in the C programming language.

src may be either a literal string, enclosed in double quotes, or the name
of a predefined string variable. format is defined similarly to the format
string in "printf" (more on this below). args should be a comma-separated
list containing the names of pre-defined variables: these are the targets of
conversion from src. (For those used to C: one can prefix the names of
numerical variables with & but this is not required.)

Literal text in format is matched against src. Conversion specifiers start
with %, and recognized conversions include %f, %g or %lf for floating-point
numbers; %d for integers; %s for strings; and %m for matrices. You may
insert a positive integer after the percent sign: this sets the maximum
number of characters to read for the given conversion (or the maximum number
of rows in the case of matrix conversion). Alternatively, you can insert a
literal * after the percent to suppress the conversion (thereby skipping any
characters that would otherwise have been converted for the given type). For
example, %3d converts the next 3 characters in source to an integer, if
possible; %*g skips as many characters in source as could be converted to a
single floating-point number.

Matrix conversion works thus: the scanner reads a line of input and counts
the (space- or tab-separated) number of numeric fields. This defines the
number of columns in the matrix. By default, reading then proceeds for as
many lines (rows) as contain the same number of numeric columns, but the
maximum number of rows to read can be limited as described above.

In addition to %s conversion for strings, a simplified version of the C
format %N[chars] is available. In this format N is the maximum number of
characters to read and chars is a set of acceptable characters, enclosed in
square brackets: reading stops if N is reached or if a character not in
chars is encountered. The function of chars can be reversed by giving a
circumflex, ^, as the first character; in that case reading stops if a
character in the given set is found. (Unlike C, the hyphen does not play a
special role in the chars set.)

If the source string does not (fully) match the format, the number of
conversions may fall short of the number of arguments given. This is not in
itself an error so far as gretl is concerned. However, you may wish to check
the number of conversions performed; this is given by the return value.

Some examples follow:

	  scalar x
	  scalar y
	  sscanf("123456", "%3d%3d", x, y)

	  sprintf S, "1 2 3 4\n5 6 7 8"
	  S
	  matrix m
	  sscanf(S, "%m", m)
	  print m

# sst
Output:     scalar
Argument:   y (series)

Returns the sum of squared deviations from the mean for the non-missing
observations in series y. See also "var".

# stringify
Output:     integer
Arguments:  y (series)
            S (array of strings)

Provides a means of defining string values for the series y. Two conditions
must be satisfied for this to work: the target series must have nothing but
integer values, none of them less than 1, and the array S must have at least
n elements where n is the largest value in y. In addition each element of S
must be valid UTF-8. See also "strvals".

The value returned is zero on success or a positive error code on error.

# strlen
Output:     integer
Argument:   s (string)

Returns the number of characters in the string s. Note that this does not
necessarily equal the number of bytes if some characters are outside of the
printable-ASCII range.

Example:

        string s = "regression"
        scalar number = strlen(s)
        print number

# strncmp
Output:     integer
Arguments:  s1 (string)
            s2 (string)
            n (integer, optional)

Compares the two string arguments and returns an integer less than, equal
to, or greater than zero if s1 is found, respectively, to be less than, to
match, or be greater than s2, up to the first n characters. If n is omitted
the comparison proceeds as far as possible.

Note that if you just want to compare two strings for equality, that can be
done without using a function, as in if (s1 == s2) ...

# strsplit
Output:     string or array of strings
Arguments:  s (string)
            i (integer, optional)

With no second argument, returns the array of strings that results from the
splitting of s on white space.

If the second argument is provided, returns space-separated element i from
the string s. The index i is 1-based, and it is an error if i is less than
1. In case s contains no spaces and i equals 1, a copy of the entire input
string is returned; otherwise, in case i exceeds the number of
space-separated elements an empty string is returned.

Examples:

        string basket = "banana apple jackfruit orange"

        strings fruits = strsplit(basket)
        eval fruits[1]
        eval fruits[2]
        eval fruits[3]
        eval fruits[4]

        string favorite = strsplit(basket, 3)
        eval favorite

# strstr
Output:     string
Arguments:  s1 (string)
            s2 (string)

Searches s1 for an occurrence of the string s2. If a match is found, returns
a copy of the portion of s1 that starts with s2, otherwise returns an empty
string.

Example:

        string s1 = "Gretl is an econometrics package"
        string s2 = strstr(s1, "an")
        print s2

# strstrip
Output:     string
Argument:   s (string)

Returns a copy of the argument s from which leading and trailing white space
have been removed.

Example:

        string s1 = "    A lot of white space.  "
        string s2 = strstrip(s1)
        print s1 s2

# strsub
Output:     string
Arguments:  s (string)
            find (string)
            subst (string)

Returns a copy of s in which all occurrences of find are replaced by subst.
See also "regsub" for more complex string replacement via regular
expressions.

Example:

        string s1 =  "Hello, Gretl!"
        string s2 = strsub(s1, "Gretl", "Hansl")
        print s2

# strvals
Output:     array of strings
Argument:   y (series)

If the series y is string-valued, returns an array containing all its
distinct values, ordered by the associated numerical values starting at 1.
If y is not string-valued an empty strings array is returned. See also
"stringify".

# substr
Output:     string
Arguments:  s (string)
            start (integer)
            end (integer)

Returns a substring of s, from the character with (1-based) index start to
that with index end, inclusive.

For example, the code below

        string s1 = "Hello, Gretl!"
        string s2 = substr(s1, 8, 12)
        string s3 = substr("Hello, Gretl!", 8, 12)
        print s2
        print s3

gives:

      ? print s2
      Gretl
      ? print s3
      Gretl

It should be noted that in some cases you may be willing to trade clarity
for conciseness, and use slicing and increment operators, as in

        string s1 = "Hello, Gretl!"
        string s2 = s1[8:12]
        string s3 = s1 + 7
        print s2
        print s3

which would give you

      ? print s2
      Gretl
      ? print s3
      Gretl!

# sum
Output:     scalar or series
Argument:   x (series, matrix or list)

If x is a series, returns the (scalar) sum of the non-missing observations
in x. See also "sumall".

If x is a matrix, returns the sum of the elements of the matrix.

If x is a list, returns a series y such that y_t is the sum of the values of
the variables in the list at observation t, or NA if there are any missing
values at t.

# sumall
Output:     scalar
Argument:   x (series)

Returns the sum of the observations of x over the current sample range, or
NA if there are any missing values. Use "sum" if you want missing values to
be skipped.

# sumc
Output:     row vector
Argument:   X (matrix)

Returns the sums of the columns of X. See also "meanc", "sumr".

# sumr
Output:     column vector
Argument:   X (matrix)

Returns the sums of the rows of X. See also "meanr", "sumc".

# svd
Output:     row vector
Arguments:  X (matrix)
            &U (reference to matrix, or null)
            &V (reference to matrix, or null)

Performs the singular values decomposition of the matrix X.

The singular values are returned in a row vector. The left and/or right
singular vectors U and V may be obtained by supplying non-null values for
arguments 2 and 3, respectively. For any matrix A, the code

	  s = svd(A, &U, &V) 
	  B = (U .* s) * V

should yield B identical to A (apart from machine precision).

See also "eigengen", "eigensym", "qrdecomp".

# tan
Output:     same type as input
Argument:   x (scalar, series or matrix)

Returns the tangent of x. See also "atan", "cos", "sin".

# tanh
Output:     same type as input
Argument:   x (scalar, series or matrix)

Returns the hyperbolic tangent of x.

See also "atanh", "cosh", "sinh".

# toepsolv
Output:     column vector
Arguments:  c (vector)
            r (vector)
            b (vector)

Solves a Toeplitz system of linear equations, that is Tx = b where T is a
square matrix whose element T_i,j equals c_i-j for i>=j and r_j-i for i<=j.
Note that the first elements of c and r must be equal, otherwise an error is
returned. Upon successful completion, the function returns the vector x.

The algorithm used here takes advantage of the special structure of the
matrix T, which makes it much more efficient than other unspecialized
algorithms, especially for large problems. Warning: in certain cases, the
function may spuriously issue a singularity error when in fact the matrix T
is nonsingular; this problem, however, cannot arise when T is positive
definite.

# tolower
Output:     string
Argument:   s (string)

Returns a copy of s in which any upper-case characters are converted to
lower case.

Examples:

        string s1 = "Hello, Gretl!"
        string s2 = tolower(s1)
        print s2

        string s3 = tolower("Hello, Gretl!")
        print s3

# toupper
Output:     string
Argument:   s (string)

Returns a copy of s in which any lower-case characters are converted to
upper case.

Examples:

        string s1 = "Hello, Gretl!"
        string s2 = toupper(s1)
        print s2

        string s3 = toupper("Hello, Gretl!")
        print s3

# tr
Output:     scalar
Argument:   A (square matrix)

Returns the trace of the square matrix A, that is, the sum of its diagonal
elements. See also "diag".

# transp
Output:     matrix
Argument:   X (matrix)

Returns the transpose of X. Note: this is rarely used; in order to get the
transpose of a matrix, in most cases you can just use the prime operator:
X'.

# trimr
Output:     matrix
Arguments:  X (matrix)
            ttop (integer)
            tbot (integer)

Returns a matrix that is a copy of X with ttop rows trimmed at the top and
tbot rows trimmed at the bottom. The latter two arguments must be
non-negative, and must sum to less than the total rows of X.

See also "selifr".

# typeof
Output:     integer
Argument:   name (string)

Returns a numeric type-code if name is the identifier of a currently defined
object: 1 for scalar, 2 for series, 3 for matrix, 4 for string, 5 for
bundle, 6 for array and 7 for list. Otherwise returns 0. The function
"typestr" may be used to get the string corresponding to the return value.

This function can also be used to retrieve the type of a bundle member or
array element. For example:

	  matrices M = array(1)
	  eval typestr(typeof(M))
	  eval typestr(typeof(M[1]))

The first eval result is "array" and the second is "matrix".

# typestr
Output:     string
Argument:   typecode (integer)

Returns the name of the gretl data-type corresponding to typecode. This may
be used in conjunction with the functions "typeof" and "inbundle". The value
returned is one of "scalar", "series", "matrix", "string", "bundle",
"array", "list", or "null".

# uniform
Output:     series
Arguments:  a (scalar)
            b (scalar)

Generates a series of uniform pseudo-random variates in the interval (a, b),
or, if no arguments are supplied, in the interval (0,1). The algorithm used
by default is the SIMD-oriented Fast Mersenne Twister developed by Saito and
Matsumoto (2008).

See also "randgen", "normal", "mnormal", "muniform".

# uniq
Output:     column vector
Argument:   x (series or vector)

Returns a vector containing the distinct elements of x, not sorted but in
their order of appearance. See "values" for a variant that sorts the
elements.

# unvech
Output:     square matrix
Argument:   v (vector)

Returns an n x n symmetric matrix obtained by rearranging the elements of v.
The number of elements in v must be a triangular integer -- i.e., a number k
such that an integer n exists with the property k = n(n+1)/2. This is the
inverse of the function "vech".

See also "mshape", "vech".

# upper
Output:     square matrix
Argument:   A (square matrix)

Returns an n x n upper triangular matrix: the elements on and above the
diagonal are equal to the corresponding elements of A; the remaining
elements are zero.

See also "lower".

# urcpval
Output:     scalar
Arguments:  tau (scalar)
            n (integer)
            niv (integer)
            itv (integer)

P-values for the test statistic from the Dickey-Fuller unit-root test and
the Engle-Granger cointegration test, as per James MacKinnon (1996).

The arguments are as follows: tau denotes the test statistic; n is the
number of observations (or 0 for an asymptotic result); niv is the number of
potentially cointegrated variables when testing for cointegration (or 1 for
a univariate unit-root test); and itv is a code for the model specification:
1 for no constant, 2 for constant included, 3 for constant and linear trend,
4 for constant and quadratic trend.

Note that if the test regression is "augmented" with lags of the dependent
variable, then you should give an n value of 0 to get an asymptotic result.

See also "pvalue", "qlrpval".

# values
Output:     column vector
Argument:   x (series or vector)

Returns a vector containing the distinct elements of x sorted in ascending
order. If you wish to truncate the values to integers before applying this
function, use the expression values(int(x)).

See also "uniq", "dsort", "sort".

# var
Output:     scalar or series
Argument:   x (series or list)

If x is a series, returns the (scalar) sample variance, skipping any missing
observations.

If x is a list, returns a series y such that y_t is the sample variance of
the values of the variables in the list at observation t, or NA if there are
any missing values at t.

In each case the sum of squared deviations from the mean is divided by (n -
1) for n > 1. Otherwise the variance is given as zero if n = 1, or as NA if
n = 0.

See also "sd".

# varname
Output:     string
Argument:   v (integer or list)

If given an integer argument, returns the name of the variable with ID
number v, or generates an error if there is no such variable.

If given a list argument, returns a string containing the names of the
variables in the list, separated by commas. If the supplied list is empty,
so is the returned string. To get an array of strings as return value, use
"varnames" instead.

Example:

        open broiler.gdt
        string s = varname(7)
        print s

# varnames
Output:     array of strings
Argument:   L (list)

Returns an array of strings containing the names of the variables in the
list L. If the supplied list is empty, so is the returned array.

Example:

        open keane.gdt
        list L = year wage status
        strings S = varnames(L)
        eval S[1]
        eval S[2]
        eval S[3]

# varnum
Output:     integer
Argument:   varname (string)

Returns the ID number of the variable called varname, or NA is there is no
such variable.

# varsimul
Output:     matrix
Arguments:  A (matrix)
            U (matrix)
            y0 (matrix)

Simulates a p-order n-variable VAR, that is y(t) = A1 y(t-1) + ... + Ap
y(t-p) + u(t). The coefficient matrix A is composed by stacking the A_i
matrices horizontally; it is n x np, with one row per equation. This
corresponds to the first n rows of the matrix $compan provided by gretl's
var and vecm commands.

The u_t vectors are contained (as rows) in U (T x n). Initial values are in
y0 (p x n).

If the VAR contains deterministic terms and/or exogenous regressors, these
can be handled by folding them into the U matrix: each row of U then becomes
u(t) = B'x(t) + e(t).

The output matrix has T + p rows and n columns; it holds the initial p
values of the endogenous variables plus T simulated values.

See also "$compan", "var", "vecm".

# vec
Output:     column vector
Argument:   X (matrix)

Stacks the columns of X as a column vector. See also "mshape", "unvech",
"vech".

# vech
Output:     column vector
Argument:   A (square matrix)

Returns in a column vector the elements of A on and above the diagonal.
Typically, this function is used on symmetric matrices; in this case, it can
be undone by the function "unvech". See also "vec".

# weekday
Output:     same type as input
Arguments:  year (scalar or series)
            month (scalar or series)
            day (scalar or series)

Returns the day of the week (Sunday = 0, Monday = 1, etc.) for the date(s)
specified by the three arguments, or NA if the date is invalid. Note that
all three arguments must be of the same type, either scalars (integers) or
series.

# wmean
Output:     series
Arguments:  Y (list)
            W (list)

Returns a series y such that y_t is the weighted mean of the values of the
variables in list Y at observation t, the respective weights given by the
values of the variables in list W at t. The weights can therefore be
time-varying. The lists Y and W must be of the same length and the weights
must be non-negative.

See also "wsd", "wvar".

# wsd
Output:     series
Arguments:  Y (list)
            W (list)

Returns a series y such that y_t is the weighted sample standard deviation
of the values of the variables in list Y at observation t, the respective
weights given by the values of the variables in list W at t. The weights can
therefore be time-varying. The lists Y and W must be of the same length and
the weights must be non-negative.

See also "wmean", "wvar".

# wvar
Output:     series
Arguments:  X (list)
            W (list)

Returns a series y such that y_t is the weighted sample variance of the
values of the variables in list X at observation t, the respective weights
given by the values of the variables in list W at t. The weights can
therefore be time-varying. The lists Y and W must be of the same length and
the weights must be non-negative.

See also "wmean", "wsd".

# xmax
Output:     scalar
Arguments:  x (scalar)
            y (scalar)

Returns the greater of x and y, or NA if either value is missing.

See also "xmin", "max", "min".

# xmin
Output:     scalar
Arguments:  x (scalar)
            y (scalar)

Returns the lesser of x and y, or NA if either value is missing.

See also "xmax", "max", "min".

# xmlget
Output:     string
Arguments:  buf (string)
            path (string or array of strings)

The argument buf should be an XML buffer, as may be retrieved from a
suitable website via the "curl" function (or read from file via "readfile"),
and the path argument should be either a single XPath specification or an
array of such.

This function returns a string representing the data found in the XML buffer
at the specified path. If multiple nodes match the path expression the items
of data are printed one per line in the returned string. If an array of
paths is given as the second argument the returned string takes the form of
a comma-separated buffer, with column i holding the matches from path i. In
this case if a string obtained from the XML buffer contains any spaces or
commas it is wrapped in double quotes.

A good introduction to XPath usage and syntax can be found at
https://www.w3schools.com/xml/xml_xpath.asp. The back-end for xmlget is
provided by the xpath module of libxml2, which supports XPath 1.0 but not
XPath 2.0.

See also "jsonget", "readfile".

# zeromiss
Output:     same type as input
Argument:   x (scalar or series)

Converts zeros to NAs. If x is a series, the conversion is done element by
element. See also "missing", "misszero", "ok".

# zeros
Output:     matrix
Arguments:  r (integer)
            c (integer)

Outputs a zero matrix with r rows and c columns. See also "ones", "seq".