File: Function-Index.html

package info (click to toggle)
octave 7.3.0-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 130,464 kB
  • sloc: cpp: 332,823; ansic: 71,320; fortran: 20,963; objc: 8,562; sh: 8,115; yacc: 4,882; lex: 4,438; perl: 1,554; java: 1,366; awk: 1,257; makefile: 652; xml: 173
file content (4369 lines) | stat: -rw-r--r-- 916,483 bytes parent folder | download
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
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<!-- Created by GNU Texinfo 6.8, https://www.gnu.org/software/texinfo/ -->
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Function Index (GNU Octave (version 7.3.0))</title>

<meta name="description" content="Function Index (GNU Octave (version 7.3.0))">
<meta name="keywords" content="Function Index (GNU Octave (version 7.3.0))">
<meta name="resource-type" content="document">
<meta name="distribution" content="global">
<meta name="Generator" content="makeinfo">
<meta name="viewport" content="width=device-width,initial-scale=1">

<link href="index.html" rel="start" title="Top">
<link href="Concept-Index.html" rel="index" title="Concept Index">
<link href="index.html#SEC_Contents" rel="contents" title="Table of Contents">
<link href="index.html" rel="up" title="Top">
<link href="Operator-Index.html" rel="next" title="Operator Index">
<link href="Concept-Index.html" rel="prev" title="Concept Index">
<style type="text/css">
<!--
a.copiable-anchor {visibility: hidden; text-decoration: none; line-height: 0em}
a.summary-letter {text-decoration: none}
blockquote.indentedblock {margin-right: 0em}
div.display {margin-left: 3.2em}
div.example {margin-left: 3.2em}
kbd {font-style: oblique}
pre.display {font-family: inherit}
pre.format {font-family: inherit}
pre.menu-comment {font-family: serif}
pre.menu-preformatted {font-family: serif}
span.nolinebreak {white-space: nowrap}
span.roman {font-family: initial; font-weight: normal}
span.sansserif {font-family: sans-serif; font-weight: normal}
span:hover a.copiable-anchor {visibility: visible}
ul.no-bullet {list-style: none}
-->
</style>
<link rel="stylesheet" type="text/css" href="octave.css">


</head>

<body lang="en">
<div class="unnumbered" id="Function-Index">
<div class="header">
<p>
Next: <a href="Operator-Index.html" accesskey="n" rel="next">Operator Index</a>, Previous: <a href="Concept-Index.html" accesskey="p" rel="prev">Concept Index</a> &nbsp; [<a href="index.html#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="Concept-Index.html" title="Index" rel="index">Index</a>]</p>
</div>
<hr>
<span id="Function-Index-1"></span><h2 class="unnumbered">Function Index</h2>

<table><tr><th valign="top">Jump to: &nbsp; </th><td><a class="summary-letter" href="#Function-Index_fn_letter-A"><b>A</b></a>
 &nbsp; 
<a class="summary-letter" href="#Function-Index_fn_letter-B"><b>B</b></a>
 &nbsp; 
<a class="summary-letter" href="#Function-Index_fn_letter-C"><b>C</b></a>
 &nbsp; 
<a class="summary-letter" href="#Function-Index_fn_letter-D"><b>D</b></a>
 &nbsp; 
<a class="summary-letter" href="#Function-Index_fn_letter-E"><b>E</b></a>
 &nbsp; 
<a class="summary-letter" href="#Function-Index_fn_letter-F"><b>F</b></a>
 &nbsp; 
<a class="summary-letter" href="#Function-Index_fn_letter-G"><b>G</b></a>
 &nbsp; 
<a class="summary-letter" href="#Function-Index_fn_letter-H"><b>H</b></a>
 &nbsp; 
<a class="summary-letter" href="#Function-Index_fn_letter-I"><b>I</b></a>
 &nbsp; 
<a class="summary-letter" href="#Function-Index_fn_letter-J"><b>J</b></a>
 &nbsp; 
<a class="summary-letter" href="#Function-Index_fn_letter-K"><b>K</b></a>
 &nbsp; 
<a class="summary-letter" href="#Function-Index_fn_letter-L"><b>L</b></a>
 &nbsp; 
<a class="summary-letter" href="#Function-Index_fn_letter-M"><b>M</b></a>
 &nbsp; 
<a class="summary-letter" href="#Function-Index_fn_letter-N"><b>N</b></a>
 &nbsp; 
<a class="summary-letter" href="#Function-Index_fn_letter-O"><b>O</b></a>
 &nbsp; 
<a class="summary-letter" href="#Function-Index_fn_letter-P"><b>P</b></a>
 &nbsp; 
<a class="summary-letter" href="#Function-Index_fn_letter-Q"><b>Q</b></a>
 &nbsp; 
<a class="summary-letter" href="#Function-Index_fn_letter-R"><b>R</b></a>
 &nbsp; 
<a class="summary-letter" href="#Function-Index_fn_letter-S"><b>S</b></a>
 &nbsp; 
<a class="summary-letter" href="#Function-Index_fn_letter-T"><b>T</b></a>
 &nbsp; 
<a class="summary-letter" href="#Function-Index_fn_letter-U"><b>U</b></a>
 &nbsp; 
<a class="summary-letter" href="#Function-Index_fn_letter-V"><b>V</b></a>
 &nbsp; 
<a class="summary-letter" href="#Function-Index_fn_letter-W"><b>W</b></a>
 &nbsp; 
<a class="summary-letter" href="#Function-Index_fn_letter-X"><b>X</b></a>
 &nbsp; 
<a class="summary-letter" href="#Function-Index_fn_letter-Y"><b>Y</b></a>
 &nbsp; 
<a class="summary-letter" href="#Function-Index_fn_letter-Z"><b>Z</b></a>
 &nbsp; 
</td></tr></table>
<table class="index-fn" border="0">
<tr><td></td><th align="left">Index Entry</th><td>&nbsp;</td><th align="left"> Section</th></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th id="Function-Index_fn_letter-A">A</th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="Complex-Arithmetic.html#index-abs"><code>abs</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Complex-Arithmetic.html">Complex Arithmetic</a></td></tr>
<tr><td></td><td valign="top"><a href="Accumulation.html#index-accumarray"><code>accumarray</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Accumulation.html">Accumulation</a></td></tr>
<tr><td></td><td valign="top"><a href="Accumulation.html#index-accumarray-1"><code>accumarray</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Accumulation.html">Accumulation</a></td></tr>
<tr><td></td><td valign="top"><a href="Accumulation.html#index-accumdim"><code>accumdim</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Accumulation.html">Accumulation</a></td></tr>
<tr><td></td><td valign="top"><a href="Trigonometry.html#index-acos"><code>acos</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Trigonometry.html">Trigonometry</a></td></tr>
<tr><td></td><td valign="top"><a href="Trigonometry.html#index-acosd"><code>acosd</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Trigonometry.html">Trigonometry</a></td></tr>
<tr><td></td><td valign="top"><a href="Trigonometry.html#index-acosh"><code>acosh</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Trigonometry.html">Trigonometry</a></td></tr>
<tr><td></td><td valign="top"><a href="Trigonometry.html#index-acot"><code>acot</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Trigonometry.html">Trigonometry</a></td></tr>
<tr><td></td><td valign="top"><a href="Trigonometry.html#index-acotd"><code>acotd</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Trigonometry.html">Trigonometry</a></td></tr>
<tr><td></td><td valign="top"><a href="Trigonometry.html#index-acoth"><code>acoth</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Trigonometry.html">Trigonometry</a></td></tr>
<tr><td></td><td valign="top"><a href="Trigonometry.html#index-acsc"><code>acsc</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Trigonometry.html">Trigonometry</a></td></tr>
<tr><td></td><td valign="top"><a href="Trigonometry.html#index-acscd"><code>acscd</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Trigonometry.html">Trigonometry</a></td></tr>
<tr><td></td><td valign="top"><a href="Trigonometry.html#index-acsch"><code>acsch</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Trigonometry.html">Trigonometry</a></td></tr>
<tr><td></td><td valign="top"><a href="Object-Groups.html#index-addlistener"><code>addlistener</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Object-Groups.html">Object Groups</a></td></tr>
<tr><td></td><td valign="top"><a href="Manipulating-the-Load-Path.html#index-addpath"><code>addpath</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Manipulating-the-Load-Path.html">Manipulating the Load Path</a></td></tr>
<tr><td></td><td valign="top"><a href="Manipulating-the-Load-Path.html#index-addpath-1"><code>addpath</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Manipulating-the-Load-Path.html">Manipulating the Load Path</a></td></tr>
<tr><td></td><td valign="top"><a href="User_002dDefined-Preferences.html#index-addpref"><code>addpref</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="User_002dDefined-Preferences.html">User-Defined Preferences</a></td></tr>
<tr><td></td><td valign="top"><a href="User_002dDefined-Preferences.html#index-addpref-1"><code>addpref</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="User_002dDefined-Preferences.html">User-Defined Preferences</a></td></tr>
<tr><td></td><td valign="top"><a href="Object-Groups.html#index-addproperty"><code>addproperty</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Object-Groups.html">Object Groups</a></td></tr>
<tr><td></td><td valign="top"><a href="Object-Groups.html#index-addproperty-1"><code>addproperty</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Object-Groups.html">Object Groups</a></td></tr>
<tr><td></td><td valign="top"><a href="Timing-Utilities.html#index-addtodate"><code>addtodate</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Timing-Utilities.html">Timing Utilities</a></td></tr>
<tr><td></td><td valign="top"><a href="Parser.html#index-add_005finput_005fevent_005fhook"><code>add_input_event_hook</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Parser.html">Parser</a></td></tr>
<tr><td></td><td valign="top"><a href="Parser.html#index-add_005finput_005fevent_005fhook-1"><code>add_input_event_hook</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Parser.html">Parser</a></td></tr>
<tr><td></td><td valign="top"><a href="Special-Functions.html#index-airy"><code>airy</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Special-Functions.html">Special Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Finding-Elements-and-Checking-Conditions.html#index-all"><code>all</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Finding-Elements-and-Checking-Conditions.html">Finding Elements and Checking Conditions</a></td></tr>
<tr><td></td><td valign="top"><a href="Finding-Elements-and-Checking-Conditions.html#index-all-1"><code>all</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Finding-Elements-and-Checking-Conditions.html">Finding Elements and Checking Conditions</a></td></tr>
<tr><td></td><td valign="top"><a href="Graphics-Objects.html#index-allchild"><code>allchild</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Graphics-Objects.html">Graphics Objects</a></td></tr>
<tr><td></td><td valign="top"><a href="Mathematical-Considerations.html#index-amd"><code>amd</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Mathematical-Considerations.html">Mathematical Considerations</a></td></tr>
<tr><td></td><td valign="top"><a href="Mathematical-Considerations.html#index-amd-1"><code>amd</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Mathematical-Considerations.html">Mathematical Considerations</a></td></tr>
<tr><td></td><td valign="top"><a href="Graphics-Objects.html#index-ancestor"><code>ancestor</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Graphics-Objects.html">Graphics Objects</a></td></tr>
<tr><td></td><td valign="top"><a href="Graphics-Objects.html#index-ancestor-1"><code>ancestor</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Graphics-Objects.html">Graphics Objects</a></td></tr>
<tr><td></td><td valign="top"><a href="Element_002dby_002delement-Boolean-Operators.html#index-and"><code>and</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Element_002dby_002delement-Boolean-Operators.html">Element-by-element Boolean Operators</a></td></tr>
<tr><td></td><td valign="top"><a href="Element_002dby_002delement-Boolean-Operators.html#index-and-1"><code>and</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Element_002dby_002delement-Boolean-Operators.html">Element-by-element Boolean Operators</a></td></tr>
<tr><td></td><td valign="top"><a href="Complex-Arithmetic.html#index-angle"><code>angle</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Complex-Arithmetic.html">Complex Arithmetic</a></td></tr>
<tr><td></td><td valign="top"><a href="Plot-Annotations.html#index-annotation"><code>annotation</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Plot-Annotations.html">Plot Annotations</a></td></tr>
<tr><td></td><td valign="top"><a href="Plot-Annotations.html#index-annotation-1"><code>annotation</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Plot-Annotations.html">Plot Annotations</a></td></tr>
<tr><td></td><td valign="top"><a href="Plot-Annotations.html#index-annotation-2"><code>annotation</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Plot-Annotations.html">Plot Annotations</a></td></tr>
<tr><td></td><td valign="top"><a href="Plot-Annotations.html#index-annotation-3"><code>annotation</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Plot-Annotations.html">Plot Annotations</a></td></tr>
<tr><td></td><td valign="top"><a href="Plot-Annotations.html#index-annotation-4"><code>annotation</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Plot-Annotations.html">Plot Annotations</a></td></tr>
<tr><td></td><td valign="top"><a href="Plot-Annotations.html#index-annotation-5"><code>annotation</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Plot-Annotations.html">Plot Annotations</a></td></tr>
<tr><td></td><td valign="top"><a href="Plot-Annotations.html#index-annotation-6"><code>annotation</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Plot-Annotations.html">Plot Annotations</a></td></tr>
<tr><td></td><td valign="top"><a href="Plot-Annotations.html#index-annotation-7"><code>annotation</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Plot-Annotations.html">Plot Annotations</a></td></tr>
<tr><td></td><td valign="top"><a href="Plot-Annotations.html#index-annotation-8"><code>annotation</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Plot-Annotations.html">Plot Annotations</a></td></tr>
<tr><td></td><td valign="top"><a href="Plot-Annotations.html#index-annotation-9"><code>annotation</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Plot-Annotations.html">Plot Annotations</a></td></tr>
<tr><td></td><td valign="top"><a href="Plot-Annotations.html#index-annotation-10"><code>annotation</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Plot-Annotations.html">Plot Annotations</a></td></tr>
<tr><td></td><td valign="top"><a href="Finding-Elements-and-Checking-Conditions.html#index-any"><code>any</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Finding-Elements-and-Checking-Conditions.html">Finding Elements and Checking Conditions</a></td></tr>
<tr><td></td><td valign="top"><a href="Finding-Elements-and-Checking-Conditions.html#index-any-1"><code>any</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Finding-Elements-and-Checking-Conditions.html">Finding Elements and Checking Conditions</a></td></tr>
<tr><td></td><td valign="top"><a href="Signal-Processing.html#index-arch_005ffit"><code>arch_fit</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Signal-Processing.html">Signal Processing</a></td></tr>
<tr><td></td><td valign="top"><a href="Signal-Processing.html#index-arch_005frnd"><code>arch_rnd</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Signal-Processing.html">Signal Processing</a></td></tr>
<tr><td></td><td valign="top"><a href="Signal-Processing.html#index-arch_005ftest"><code>arch_test</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Signal-Processing.html">Signal Processing</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-area"><code>area</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-area-1"><code>area</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-area-2"><code>area</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-area-3"><code>area</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-area-4"><code>area</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-area-5"><code>area</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Complex-Arithmetic.html#index-arg"><code>arg</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Complex-Arithmetic.html">Complex Arithmetic</a></td></tr>
<tr><td></td><td valign="top"><a href="Command-Line-Options.html#index-argv"><code>argv</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Command-Line-Options.html">Command Line Options</a></td></tr>
<tr><td></td><td valign="top"><a href="Signal-Processing.html#index-arma_005frnd"><code>arma_rnd</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Signal-Processing.html">Signal Processing</a></td></tr>
<tr><td></td><td valign="top"><a href="Function-Application.html#index-arrayfun"><code>arrayfun</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Function-Application.html">Function Application</a></td></tr>
<tr><td></td><td valign="top"><a href="Function-Application.html#index-arrayfun-1"><code>arrayfun</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Function-Application.html">Function Application</a></td></tr>
<tr><td></td><td valign="top"><a href="Function-Application.html#index-arrayfun-2"><code>arrayfun</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Function-Application.html">Function Application</a></td></tr>
<tr><td></td><td valign="top"><a href="Function-Application.html#index-arrayfun-3"><code>arrayfun</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Function-Application.html">Function Application</a></td></tr>
<tr><td></td><td valign="top"><a href="Function-Application.html#index-arrayfun-4"><code>arrayfun</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Function-Application.html">Function Application</a></td></tr>
<tr><td></td><td valign="top"><a href="Function-Application.html#index-arrayfun-5"><code>arrayfun</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Function-Application.html">Function Application</a></td></tr>
<tr><td></td><td valign="top"><a href="FTP-Objects.html#index-ascii"><code>ascii</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="FTP-Objects.html">FTP Objects</a></td></tr>
<tr><td></td><td valign="top"><a href="Timing-Utilities.html#index-asctime"><code>asctime</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Timing-Utilities.html">Timing Utilities</a></td></tr>
<tr><td></td><td valign="top"><a href="Trigonometry.html#index-asec"><code>asec</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Trigonometry.html">Trigonometry</a></td></tr>
<tr><td></td><td valign="top"><a href="Trigonometry.html#index-asecd"><code>asecd</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Trigonometry.html">Trigonometry</a></td></tr>
<tr><td></td><td valign="top"><a href="Trigonometry.html#index-asech"><code>asech</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Trigonometry.html">Trigonometry</a></td></tr>
<tr><td></td><td valign="top"><a href="Trigonometry.html#index-asin"><code>asin</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Trigonometry.html">Trigonometry</a></td></tr>
<tr><td></td><td valign="top"><a href="Trigonometry.html#index-asind"><code>asind</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Trigonometry.html">Trigonometry</a></td></tr>
<tr><td></td><td valign="top"><a href="Trigonometry.html#index-asinh"><code>asinh</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Trigonometry.html">Trigonometry</a></td></tr>
<tr><td></td><td valign="top"><a href="Test-Functions.html#index-assert"><code>assert</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Test-Functions.html">Test Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Test-Functions.html#index-assert-1"><code>assert</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Test-Functions.html">Test Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Test-Functions.html#index-assert-2"><code>assert</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Test-Functions.html">Test Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Test-Functions.html#index-assert-3"><code>assert</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Test-Functions.html">Test Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Test-Functions.html#index-assert-4"><code>assert</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Test-Functions.html">Test Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Test-Functions.html#index-assert-5"><code>assert</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Test-Functions.html">Test Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Evaluation-in-a-Different-Context.html#index-assignin"><code>assignin</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Evaluation-in-a-Different-Context.html">Evaluation in a Different Context</a></td></tr>
<tr><td></td><td valign="top"><a href="Trigonometry.html#index-atan"><code>atan</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Trigonometry.html">Trigonometry</a></td></tr>
<tr><td></td><td valign="top"><a href="Trigonometry.html#index-atan2"><code>atan2</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Trigonometry.html">Trigonometry</a></td></tr>
<tr><td></td><td valign="top"><a href="Trigonometry.html#index-atan2d"><code>atan2d</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Trigonometry.html">Trigonometry</a></td></tr>
<tr><td></td><td valign="top"><a href="Trigonometry.html#index-atand"><code>atand</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Trigonometry.html">Trigonometry</a></td></tr>
<tr><td></td><td valign="top"><a href="Trigonometry.html#index-atanh"><code>atanh</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Trigonometry.html">Trigonometry</a></td></tr>
<tr><td></td><td valign="top"><a href="Quitting-Octave.html#index-atexit"><code>atexit</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Quitting-Octave.html">Quitting Octave</a></td></tr>
<tr><td></td><td valign="top"><a href="Quitting-Octave.html#index-atexit-1"><code>atexit</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Quitting-Octave.html">Quitting Octave</a></td></tr>
<tr><td></td><td valign="top"><a href="Audio-Device-Information.html#index-audiodevinfo"><code>audiodevinfo</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Audio-Device-Information.html">Audio Device Information</a></td></tr>
<tr><td></td><td valign="top"><a href="Audio-Device-Information.html#index-audiodevinfo-1"><code>audiodevinfo</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Audio-Device-Information.html">Audio Device Information</a></td></tr>
<tr><td></td><td valign="top"><a href="Audio-Device-Information.html#index-audiodevinfo-2"><code>audiodevinfo</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Audio-Device-Information.html">Audio Device Information</a></td></tr>
<tr><td></td><td valign="top"><a href="Audio-Device-Information.html#index-audiodevinfo-3"><code>audiodevinfo</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Audio-Device-Information.html">Audio Device Information</a></td></tr>
<tr><td></td><td valign="top"><a href="Audio-Device-Information.html#index-audiodevinfo-4"><code>audiodevinfo</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Audio-Device-Information.html">Audio Device Information</a></td></tr>
<tr><td></td><td valign="top"><a href="Audio-Device-Information.html#index-audiodevinfo-5"><code>audiodevinfo</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Audio-Device-Information.html">Audio Device Information</a></td></tr>
<tr><td></td><td valign="top"><a href="Audio-Device-Information.html#index-audiodevinfo-6"><code>audiodevinfo</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Audio-Device-Information.html">Audio Device Information</a></td></tr>
<tr><td></td><td valign="top"><a href="Audio-File-Utilities.html#index-audioformats"><code>audioformats</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Audio-File-Utilities.html">Audio File Utilities</a></td></tr>
<tr><td></td><td valign="top"><a href="Audio-File-Utilities.html#index-audioformats-1"><code>audioformats</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Audio-File-Utilities.html">Audio File Utilities</a></td></tr>
<tr><td></td><td valign="top"><a href="Audio-File-Utilities.html#index-audioinfo"><code>audioinfo</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Audio-File-Utilities.html">Audio File Utilities</a></td></tr>
<tr><td></td><td valign="top"><a href="Audio-Player.html#index-audioplayer"><code>audioplayer</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Audio-Player.html">Audio Player</a></td></tr>
<tr><td></td><td valign="top"><a href="Audio-Player.html#index-audioplayer-1"><code>audioplayer</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Audio-Player.html">Audio Player</a></td></tr>
<tr><td></td><td valign="top"><a href="Audio-Player.html#index-audioplayer-2"><code>audioplayer</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Audio-Player.html">Audio Player</a></td></tr>
<tr><td></td><td valign="top"><a href="Audio-Player.html#index-audioplayer-3"><code>audioplayer</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Audio-Player.html">Audio Player</a></td></tr>
<tr><td></td><td valign="top"><a href="Audio-Player.html#index-audioplayer-4"><code>audioplayer</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Audio-Player.html">Audio Player</a></td></tr>
<tr><td></td><td valign="top"><a href="Audio-File-Utilities.html#index-audioread"><code>audioread</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Audio-File-Utilities.html">Audio File Utilities</a></td></tr>
<tr><td></td><td valign="top"><a href="Audio-File-Utilities.html#index-audioread-1"><code>audioread</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Audio-File-Utilities.html">Audio File Utilities</a></td></tr>
<tr><td></td><td valign="top"><a href="Audio-File-Utilities.html#index-audioread-2"><code>audioread</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Audio-File-Utilities.html">Audio File Utilities</a></td></tr>
<tr><td></td><td valign="top"><a href="Audio-File-Utilities.html#index-audioread-3"><code>audioread</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Audio-File-Utilities.html">Audio File Utilities</a></td></tr>
<tr><td></td><td valign="top"><a href="Audio-Recorder.html#index-audiorecorder"><code>audiorecorder</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Audio-Recorder.html">Audio Recorder</a></td></tr>
<tr><td></td><td valign="top"><a href="Audio-Recorder.html#index-audiorecorder-1"><code>audiorecorder</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Audio-Recorder.html">Audio Recorder</a></td></tr>
<tr><td></td><td valign="top"><a href="Audio-Recorder.html#index-audiorecorder-2"><code>audiorecorder</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Audio-Recorder.html">Audio Recorder</a></td></tr>
<tr><td></td><td valign="top"><a href="Audio-File-Utilities.html#index-audiowrite"><code>audiowrite</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Audio-File-Utilities.html">Audio File Utilities</a></td></tr>
<tr><td></td><td valign="top"><a href="Audio-File-Utilities.html#index-audiowrite-1"><code>audiowrite</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Audio-File-Utilities.html">Audio File Utilities</a></td></tr>
<tr><td></td><td valign="top"><a href="Overloading-and-Autoloading.html#index-autoload"><code>autoload</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Overloading-and-Autoloading.html">Overloading and Autoloading</a></td></tr>
<tr><td></td><td valign="top"><a href="Overloading-and-Autoloading.html#index-autoload-1"><code>autoload</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Overloading-and-Autoloading.html">Overloading and Autoloading</a></td></tr>
<tr><td></td><td valign="top"><a href="Overloading-and-Autoloading.html#index-autoload-2"><code>autoload</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Overloading-and-Autoloading.html">Overloading and Autoloading</a></td></tr>
<tr><td></td><td valign="top"><a href="Signal-Processing.html#index-autoreg_005fmatrix"><code>autoreg_matrix</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Signal-Processing.html">Signal Processing</a></td></tr>
<tr><td></td><td valign="top"><a href="Debug-Mode.html#index-auto_005frepeat_005fdebug_005fcommand"><code>auto_repeat_debug_command</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Debug-Mode.html">Debug Mode</a></td></tr>
<tr><td></td><td valign="top"><a href="Debug-Mode.html#index-auto_005frepeat_005fdebug_005fcommand-1"><code>auto_repeat_debug_command</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Debug-Mode.html">Debug Mode</a></td></tr>
<tr><td></td><td valign="top"><a href="Debug-Mode.html#index-auto_005frepeat_005fdebug_005fcommand-2"><code>auto_repeat_debug_command</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Debug-Mode.html">Debug Mode</a></td></tr>
<tr><td></td><td valign="top"><a href="Representing-Images.html#index-autumn"><code>autumn</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Representing-Images.html">Representing Images</a></td></tr>
<tr><td></td><td valign="top"><a href="Representing-Images.html#index-autumn-1"><code>autumn</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Representing-Images.html">Representing Images</a></td></tr>
<tr><td></td><td valign="top"><a href="Graphics-Toolkits.html#index-available_005fgraphics_005ftoolkits"><code>available_graphics_toolkits</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Graphics-Toolkits.html">Graphics Toolkits</a></td></tr>
<tr><td></td><td valign="top"><a href="Graphics-Objects.html#index-axes"><code>axes</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Graphics-Objects.html">Graphics Objects</a></td></tr>
<tr><td></td><td valign="top"><a href="Graphics-Objects.html#index-axes-1"><code>axes</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Graphics-Objects.html">Graphics Objects</a></td></tr>
<tr><td></td><td valign="top"><a href="Graphics-Objects.html#index-axes-2"><code>axes</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Graphics-Objects.html">Graphics Objects</a></td></tr>
<tr><td></td><td valign="top"><a href="Graphics-Objects.html#index-axes-3"><code>axes</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Graphics-Objects.html">Graphics Objects</a></td></tr>
<tr><td></td><td valign="top"><a href="Graphics-Objects.html#index-axes-4"><code>axes</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Graphics-Objects.html">Graphics Objects</a></td></tr>
<tr><td></td><td valign="top"><a href="Axis-Configuration.html#index-axis"><code>axis</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Axis-Configuration.html">Axis Configuration</a></td></tr>
<tr><td></td><td valign="top"><a href="Axis-Configuration.html#index-axis-1"><code>axis</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Axis-Configuration.html">Axis Configuration</a></td></tr>
<tr><td></td><td valign="top"><a href="Axis-Configuration.html#index-axis-2"><code>axis</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Axis-Configuration.html">Axis Configuration</a></td></tr>
<tr><td></td><td valign="top"><a href="Axis-Configuration.html#index-axis-3"><code>axis</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Axis-Configuration.html">Axis Configuration</a></td></tr>
<tr><td></td><td valign="top"><a href="Axis-Configuration.html#index-axis-4"><code>axis</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Axis-Configuration.html">Axis Configuration</a></td></tr>
<tr><td></td><td valign="top"><a href="Axis-Configuration.html#index-axis-5"><code>axis</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Axis-Configuration.html">Axis Configuration</a></td></tr>
<tr><td></td><td valign="top"><a href="Axis-Configuration.html#index-axis-6"><code>axis</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Axis-Configuration.html">Axis Configuration</a></td></tr>
<tr><td></td><td valign="top"><a href="Axis-Configuration.html#index-axis-7"><code>axis</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Axis-Configuration.html">Axis Configuration</a></td></tr>
<tr><td></td><td valign="top"><a href="Axis-Configuration.html#index-axis-8"><code>axis</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Axis-Configuration.html">Axis Configuration</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th id="Function-Index_fn_letter-B">B</th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="Basic-Matrix-Functions.html#index-balance"><code>balance</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Basic-Matrix-Functions.html">Basic Matrix Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Basic-Matrix-Functions.html#index-balance-1"><code>balance</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Basic-Matrix-Functions.html">Basic Matrix Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Basic-Matrix-Functions.html#index-balance-2"><code>balance</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Basic-Matrix-Functions.html">Basic Matrix Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Basic-Matrix-Functions.html#index-balance-3"><code>balance</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Basic-Matrix-Functions.html">Basic Matrix Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Basic-Matrix-Functions.html#index-balance-4"><code>balance</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Basic-Matrix-Functions.html">Basic Matrix Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Basic-Matrix-Functions.html#index-bandwidth"><code>bandwidth</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Basic-Matrix-Functions.html">Basic Matrix Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Basic-Matrix-Functions.html#index-bandwidth-1"><code>bandwidth</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Basic-Matrix-Functions.html">Basic Matrix Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-bar"><code>bar</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-bar-1"><code>bar</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-bar-2"><code>bar</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-bar-3"><code>bar</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-bar-4"><code>bar</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-bar-5"><code>bar</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-bar-6"><code>bar</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-barh"><code>barh</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-barh-1"><code>barh</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-barh-2"><code>barh</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-barh-3"><code>barh</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-barh-4"><code>barh</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-barh-5"><code>barh</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-barh-6"><code>barh</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Signal-Processing.html#index-bartlett"><code>bartlett</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Signal-Processing.html">Signal Processing</a></td></tr>
<tr><td></td><td valign="top"><a href="Numerical-Data-and-Strings.html#index-base2dec"><code>base2dec</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Numerical-Data-and-Strings.html">Numerical Data and Strings</a></td></tr>
<tr><td></td><td valign="top"><a href="Base64-and-Binary-Data-Transmission.html#index-base64_005fdecode"><code>base64_decode</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Base64-and-Binary-Data-Transmission.html">Base64 and Binary Data Transmission</a></td></tr>
<tr><td></td><td valign="top"><a href="Base64-and-Binary-Data-Transmission.html#index-base64_005fdecode-1"><code>base64_decode</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Base64-and-Binary-Data-Transmission.html">Base64 and Binary Data Transmission</a></td></tr>
<tr><td></td><td valign="top"><a href="Base64-and-Binary-Data-Transmission.html#index-base64_005fencode"><code>base64_encode</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Base64-and-Binary-Data-Transmission.html">Base64 and Binary Data Transmission</a></td></tr>
<tr><td></td><td valign="top"><a href="Raising-Errors.html#index-beep"><code>beep</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Raising-Errors.html">Raising Errors</a></td></tr>
<tr><td></td><td valign="top"><a href="Raising-Errors.html#index-beep_005fon_005ferror"><code>beep_on_error</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Raising-Errors.html">Raising Errors</a></td></tr>
<tr><td></td><td valign="top"><a href="Raising-Errors.html#index-beep_005fon_005ferror-1"><code>beep_on_error</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Raising-Errors.html">Raising Errors</a></td></tr>
<tr><td></td><td valign="top"><a href="Raising-Errors.html#index-beep_005fon_005ferror-2"><code>beep_on_error</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Raising-Errors.html">Raising Errors</a></td></tr>
<tr><td></td><td valign="top"><a href="Special-Functions.html#index-besselh"><code>besselh</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Special-Functions.html">Special Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Special-Functions.html#index-besselh-1"><code>besselh</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Special-Functions.html">Special Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Special-Functions.html#index-besselh-2"><code>besselh</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Special-Functions.html">Special Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Special-Functions.html#index-besselh-3"><code>besselh</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Special-Functions.html">Special Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Special-Functions.html#index-besseli"><code>besseli</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Special-Functions.html">Special Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Special-Functions.html#index-besseli-1"><code>besseli</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Special-Functions.html">Special Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Special-Functions.html#index-besseli-2"><code>besseli</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Special-Functions.html">Special Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Special-Functions.html#index-besselj"><code>besselj</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Special-Functions.html">Special Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Special-Functions.html#index-besselj-1"><code>besselj</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Special-Functions.html">Special Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Special-Functions.html#index-besselj-2"><code>besselj</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Special-Functions.html">Special Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Special-Functions.html#index-besselk"><code>besselk</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Special-Functions.html">Special Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Special-Functions.html#index-besselk-1"><code>besselk</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Special-Functions.html">Special Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Special-Functions.html#index-besselk-2"><code>besselk</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Special-Functions.html">Special Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Special-Functions.html#index-bessely"><code>bessely</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Special-Functions.html">Special Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Special-Functions.html#index-bessely-1"><code>bessely</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Special-Functions.html">Special Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Special-Functions.html#index-bessely-2"><code>bessely</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Special-Functions.html">Special Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Special-Functions.html#index-beta"><code>beta</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Special-Functions.html">Special Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Special-Functions.html#index-betainc"><code>betainc</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Special-Functions.html">Special Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Special-Functions.html#index-betainc-1"><code>betainc</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Special-Functions.html">Special Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Special-Functions.html#index-betaincinv"><code>betaincinv</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Special-Functions.html">Special Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Special-Functions.html#index-betaincinv-1"><code>betaincinv</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Special-Functions.html">Special Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Special-Functions.html#index-betaincinv-2"><code>betaincinv</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Special-Functions.html">Special Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Special-Functions.html#index-betaln"><code>betaln</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Special-Functions.html">Special Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Specialized-Solvers.html#index-bicg"><code>bicg</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Specialized-Solvers.html">Specialized Solvers</a></td></tr>
<tr><td></td><td valign="top"><a href="Specialized-Solvers.html#index-bicg-1"><code>bicg</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Specialized-Solvers.html">Specialized Solvers</a></td></tr>
<tr><td></td><td valign="top"><a href="Specialized-Solvers.html#index-bicg-2"><code>bicg</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Specialized-Solvers.html">Specialized Solvers</a></td></tr>
<tr><td></td><td valign="top"><a href="Specialized-Solvers.html#index-bicg-3"><code>bicg</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Specialized-Solvers.html">Specialized Solvers</a></td></tr>
<tr><td></td><td valign="top"><a href="Specialized-Solvers.html#index-bicg-4"><code>bicg</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Specialized-Solvers.html">Specialized Solvers</a></td></tr>
<tr><td></td><td valign="top"><a href="Specialized-Solvers.html#index-bicg-5"><code>bicg</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Specialized-Solvers.html">Specialized Solvers</a></td></tr>
<tr><td></td><td valign="top"><a href="Specialized-Solvers.html#index-bicg-6"><code>bicg</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Specialized-Solvers.html">Specialized Solvers</a></td></tr>
<tr><td></td><td valign="top"><a href="Specialized-Solvers.html#index-bicg-7"><code>bicg</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Specialized-Solvers.html">Specialized Solvers</a></td></tr>
<tr><td></td><td valign="top"><a href="Specialized-Solvers.html#index-bicg-8"><code>bicg</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Specialized-Solvers.html">Specialized Solvers</a></td></tr>
<tr><td></td><td valign="top"><a href="Specialized-Solvers.html#index-bicg-9"><code>bicg</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Specialized-Solvers.html">Specialized Solvers</a></td></tr>
<tr><td></td><td valign="top"><a href="Specialized-Solvers.html#index-bicgstab"><code>bicgstab</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Specialized-Solvers.html">Specialized Solvers</a></td></tr>
<tr><td></td><td valign="top"><a href="Specialized-Solvers.html#index-bicgstab-1"><code>bicgstab</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Specialized-Solvers.html">Specialized Solvers</a></td></tr>
<tr><td></td><td valign="top"><a href="Specialized-Solvers.html#index-bicgstab-2"><code>bicgstab</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Specialized-Solvers.html">Specialized Solvers</a></td></tr>
<tr><td></td><td valign="top"><a href="Numerical-Data-and-Strings.html#index-bin2dec"><code>bin2dec</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Numerical-Data-and-Strings.html">Numerical Data and Strings</a></td></tr>
<tr><td></td><td valign="top"><a href="FTP-Objects.html#index-binary"><code>binary</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="FTP-Objects.html">FTP Objects</a></td></tr>
<tr><td></td><td valign="top"><a href="Special-Functions.html#index-bincoeff"><code>bincoeff</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Special-Functions.html">Special Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Bit-Manipulations.html#index-bitand"><code>bitand</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Bit-Manipulations.html">Bit Manipulations</a></td></tr>
<tr><td></td><td valign="top"><a href="Bit-Manipulations.html#index-bitcmp"><code>bitcmp</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Bit-Manipulations.html">Bit Manipulations</a></td></tr>
<tr><td></td><td valign="top"><a href="Bit-Manipulations.html#index-bitget"><code>bitget</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Bit-Manipulations.html">Bit Manipulations</a></td></tr>
<tr><td></td><td valign="top"><a href="Bit-Manipulations.html#index-bitor"><code>bitor</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Bit-Manipulations.html">Bit Manipulations</a></td></tr>
<tr><td></td><td valign="top"><a href="Built_002din-Data-Types.html#index-bitpack"><code>bitpack</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Built_002din-Data-Types.html">Built-in Data Types</a></td></tr>
<tr><td></td><td valign="top"><a href="Bit-Manipulations.html#index-bitset"><code>bitset</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Bit-Manipulations.html">Bit Manipulations</a></td></tr>
<tr><td></td><td valign="top"><a href="Bit-Manipulations.html#index-bitset-1"><code>bitset</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Bit-Manipulations.html">Bit Manipulations</a></td></tr>
<tr><td></td><td valign="top"><a href="Bit-Manipulations.html#index-bitshift"><code>bitshift</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Bit-Manipulations.html">Bit Manipulations</a></td></tr>
<tr><td></td><td valign="top"><a href="Bit-Manipulations.html#index-bitshift-1"><code>bitshift</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Bit-Manipulations.html">Bit Manipulations</a></td></tr>
<tr><td></td><td valign="top"><a href="Built_002din-Data-Types.html#index-bitunpack"><code>bitunpack</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Built_002din-Data-Types.html">Built-in Data Types</a></td></tr>
<tr><td></td><td valign="top"><a href="Bit-Manipulations.html#index-bitxor"><code>bitxor</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Bit-Manipulations.html">Bit Manipulations</a></td></tr>
<tr><td></td><td valign="top"><a href="Signal-Processing.html#index-blackman"><code>blackman</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Signal-Processing.html">Signal Processing</a></td></tr>
<tr><td></td><td valign="top"><a href="Signal-Processing.html#index-blackman-1"><code>blackman</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Signal-Processing.html">Signal Processing</a></td></tr>
<tr><td></td><td valign="top"><a href="Signal-Processing.html#index-blackman-2"><code>blackman</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Signal-Processing.html">Signal Processing</a></td></tr>
<tr><td></td><td valign="top"><a href="Strings.html#index-blanks"><code>blanks</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Strings.html">Strings</a></td></tr>
<tr><td></td><td valign="top"><a href="Rearranging-Matrices.html#index-blkdiag"><code>blkdiag</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Rearranging-Matrices.html">Rearranging Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Functions-of-a-Matrix.html#index-blkmm"><code>blkmm</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Functions-of-a-Matrix.html">Functions of a Matrix</a></td></tr>
<tr><td></td><td valign="top"><a href="Representing-Images.html#index-bone"><code>bone</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Representing-Images.html">Representing Images</a></td></tr>
<tr><td></td><td valign="top"><a href="Representing-Images.html#index-bone-1"><code>bone</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Representing-Images.html">Representing Images</a></td></tr>
<tr><td></td><td valign="top"><a href="Descriptive-Statistics.html#index-bounds"><code>bounds</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Descriptive-Statistics.html">Descriptive Statistics</a></td></tr>
<tr><td></td><td valign="top"><a href="Descriptive-Statistics.html#index-bounds-1"><code>bounds</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Descriptive-Statistics.html">Descriptive Statistics</a></td></tr>
<tr><td></td><td valign="top"><a href="Descriptive-Statistics.html#index-bounds-2"><code>bounds</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Descriptive-Statistics.html">Descriptive Statistics</a></td></tr>
<tr><td></td><td valign="top"><a href="Plot-Annotations.html#index-box"><code>box</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Plot-Annotations.html">Plot Annotations</a></td></tr>
<tr><td></td><td valign="top"><a href="Plot-Annotations.html#index-box-1"><code>box</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Plot-Annotations.html">Plot Annotations</a></td></tr>
<tr><td></td><td valign="top"><a href="Plot-Annotations.html#index-box-2"><code>box</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Plot-Annotations.html">Plot Annotations</a></td></tr>
<tr><td></td><td valign="top"><a href="Plot-Annotations.html#index-box-3"><code>box</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Plot-Annotations.html">Plot Annotations</a></td></tr>
<tr><td></td><td valign="top"><a href="Representing-Images.html#index-brighten"><code>brighten</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Representing-Images.html">Representing Images</a></td></tr>
<tr><td></td><td valign="top"><a href="Representing-Images.html#index-brighten-1"><code>brighten</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Representing-Images.html">Representing Images</a></td></tr>
<tr><td></td><td valign="top"><a href="Representing-Images.html#index-brighten-2"><code>brighten</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Representing-Images.html">Representing Images</a></td></tr>
<tr><td></td><td valign="top"><a href="Representing-Images.html#index-brighten-3"><code>brighten</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Representing-Images.html">Representing Images</a></td></tr>
<tr><td></td><td valign="top"><a href="Broadcasting.html#index-bsxfun"><code>bsxfun</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Broadcasting.html">Broadcasting</a></td></tr>
<tr><td></td><td valign="top"><a href="Overloading-and-Autoloading.html#index-builtin"><code>builtin</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Overloading-and-Autoloading.html">Overloading and Autoloading</a></td></tr>
<tr><td></td><td valign="top"><a href="Getting-Help.html#index-built_005fin_005fdocstrings_005ffile"><code>built_in_docstrings_file</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Getting-Help.html">Getting Help</a></td></tr>
<tr><td></td><td valign="top"><a href="Getting-Help.html#index-built_005fin_005fdocstrings_005ffile-1"><code>built_in_docstrings_file</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Getting-Help.html">Getting Help</a></td></tr>
<tr><td></td><td valign="top"><a href="Getting-Help.html#index-built_005fin_005fdocstrings_005ffile-2"><code>built_in_docstrings_file</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Getting-Help.html">Getting Help</a></td></tr>
<tr><td></td><td valign="top"><a href="File-Archiving-Utilities.html#index-bunzip2"><code>bunzip2</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="File-Archiving-Utilities.html">File Archiving Utilities</a></td></tr>
<tr><td></td><td valign="top"><a href="File-Archiving-Utilities.html#index-bunzip2-1"><code>bunzip2</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="File-Archiving-Utilities.html">File Archiving Utilities</a></td></tr>
<tr><td></td><td valign="top"><a href="File-Archiving-Utilities.html#index-bunzip2-2"><code>bunzip2</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="File-Archiving-Utilities.html">File Archiving Utilities</a></td></tr>
<tr><td></td><td valign="top"><a href="Matrices-and-Arrays-in-Oct_002dFiles.html#index-byte_005fsize"><code>byte_size</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Matrices-and-Arrays-in-Oct_002dFiles.html">Matrices and Arrays in Oct-Files</a></td></tr>
<tr><td></td><td valign="top"><a href="File-Archiving-Utilities.html#index-bzip2"><code>bzip2</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="File-Archiving-Utilities.html">File Archiving Utilities</a></td></tr>
<tr><td></td><td valign="top"><a href="File-Archiving-Utilities.html#index-bzip2-1"><code>bzip2</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="File-Archiving-Utilities.html">File Archiving Utilities</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th id="Function-Index_fn_letter-C">C</th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="Timing-Utilities.html#index-calendar"><code>calendar</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Timing-Utilities.html">Timing Utilities</a></td></tr>
<tr><td></td><td valign="top"><a href="Timing-Utilities.html#index-calendar-1"><code>calendar</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Timing-Utilities.html">Timing Utilities</a></td></tr>
<tr><td></td><td valign="top"><a href="Timing-Utilities.html#index-calendar-2"><code>calendar</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Timing-Utilities.html">Timing Utilities</a></td></tr>
<tr><td></td><td valign="top"><a href="Timing-Utilities.html#index-calendar-3"><code>calendar</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Timing-Utilities.html">Timing Utilities</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-camlight"><code>camlight</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-camlight-1"><code>camlight</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-camlight-2"><code>camlight</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-camlight-3"><code>camlight</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-camlight-4"><code>camlight</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-camlight-5"><code>camlight</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-camlight-6"><code>camlight</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-camlight-7"><code>camlight</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-camlight-8"><code>camlight</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-camlookat"><code>camlookat</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-camlookat-1"><code>camlookat</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-camlookat-2"><code>camlookat</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-camlookat-3"><code>camlookat</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-camorbit"><code>camorbit</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-camorbit-1"><code>camorbit</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-camorbit-2"><code>camorbit</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-camorbit-3"><code>camorbit</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-camorbit-4"><code>camorbit</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-camorbit-5"><code>camorbit</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-camorbit-6"><code>camorbit</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-camorbit-7"><code>camorbit</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-camorbit-8"><code>camorbit</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-camorbit-9"><code>camorbit</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-campos"><code>campos</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-campos-1"><code>campos</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-campos-2"><code>campos</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-campos-3"><code>campos</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-campos-4"><code>campos</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-camroll"><code>camroll</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-camroll-1"><code>camroll</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-camtarget"><code>camtarget</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-camtarget-1"><code>camtarget</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-camtarget-2"><code>camtarget</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-camtarget-3"><code>camtarget</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-camtarget-4"><code>camtarget</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-camup"><code>camup</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-camup-1"><code>camup</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-camup-2"><code>camup</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-camup-3"><code>camup</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-camup-4"><code>camup</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-camva"><code>camva</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-camva-1"><code>camva</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-camva-2"><code>camva</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-camva-3"><code>camva</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-camva-4"><code>camva</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-camzoom"><code>camzoom</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-camzoom-1"><code>camzoom</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Filesystem-Utilities.html#index-canonicalize_005ffile_005fname"><code>canonicalize_file_name</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Filesystem-Utilities.html">Filesystem Utilities</a></td></tr>
<tr><td></td><td valign="top"><a href="Coordinate-Transformations.html#index-cart2pol"><code>cart2pol</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Coordinate-Transformations.html">Coordinate Transformations</a></td></tr>
<tr><td></td><td valign="top"><a href="Coordinate-Transformations.html#index-cart2pol-1"><code>cart2pol</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Coordinate-Transformations.html">Coordinate Transformations</a></td></tr>
<tr><td></td><td valign="top"><a href="Coordinate-Transformations.html#index-cart2pol-2"><code>cart2pol</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Coordinate-Transformations.html">Coordinate Transformations</a></td></tr>
<tr><td></td><td valign="top"><a href="Coordinate-Transformations.html#index-cart2pol-3"><code>cart2pol</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Coordinate-Transformations.html">Coordinate Transformations</a></td></tr>
<tr><td></td><td valign="top"><a href="Coordinate-Transformations.html#index-cart2sph"><code>cart2sph</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Coordinate-Transformations.html">Coordinate Transformations</a></td></tr>
<tr><td></td><td valign="top"><a href="Coordinate-Transformations.html#index-cart2sph-1"><code>cart2sph</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Coordinate-Transformations.html">Coordinate Transformations</a></td></tr>
<tr><td></td><td valign="top"><a href="Built_002din-Data-Types.html#index-cast"><code>cast</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Built_002din-Data-Types.html">Built-in Data Types</a></td></tr>
<tr><td></td><td valign="top"><a href="Built_002din-Data-Types.html#index-cast-1"><code>cast</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Built_002din-Data-Types.html">Built-in Data Types</a></td></tr>
<tr><td></td><td valign="top"><a href="Rearranging-Matrices.html#index-cat"><code>cat</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Rearranging-Matrices.html">Rearranging Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Axis-Configuration.html#index-caxis"><code>caxis</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Axis-Configuration.html">Axis Configuration</a></td></tr>
<tr><td></td><td valign="top"><a href="Axis-Configuration.html#index-caxis-1"><code>caxis</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Axis-Configuration.html">Axis Configuration</a></td></tr>
<tr><td></td><td valign="top"><a href="Axis-Configuration.html#index-caxis-2"><code>caxis</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Axis-Configuration.html">Axis Configuration</a></td></tr>
<tr><td></td><td valign="top"><a href="Axis-Configuration.html#index-caxis-3"><code>caxis</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Axis-Configuration.html">Axis Configuration</a></td></tr>
<tr><td></td><td valign="top"><a href="Axis-Configuration.html#index-caxis-4"><code>caxis</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Axis-Configuration.html">Axis Configuration</a></td></tr>
<tr><td></td><td valign="top"><a href="Exponents-and-Logarithms.html#index-cbrt"><code>cbrt</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Exponents-and-Logarithms.html">Exponents and Logarithms</a></td></tr>
<tr><td></td><td valign="top"><a href="Mathematical-Considerations.html#index-ccolamd"><code>ccolamd</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Mathematical-Considerations.html">Mathematical Considerations</a></td></tr>
<tr><td></td><td valign="top"><a href="Mathematical-Considerations.html#index-ccolamd-1"><code>ccolamd</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Mathematical-Considerations.html">Mathematical Considerations</a></td></tr>
<tr><td></td><td valign="top"><a href="Mathematical-Considerations.html#index-ccolamd-2"><code>ccolamd</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Mathematical-Considerations.html">Mathematical Considerations</a></td></tr>
<tr><td></td><td valign="top"><a href="Mathematical-Considerations.html#index-ccolamd-3"><code>ccolamd</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Mathematical-Considerations.html">Mathematical Considerations</a></td></tr>
<tr><td></td><td valign="top"><a href="FTP-Objects.html#index-cd"><code>cd</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="FTP-Objects.html">FTP Objects</a></td></tr>
<tr><td></td><td valign="top"><a href="FTP-Objects.html#index-cd-1"><code>cd</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="FTP-Objects.html">FTP Objects</a></td></tr>
<tr><td></td><td valign="top"><a href="Current-Working-Directory.html#index-cd-2"><code>cd</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Current-Working-Directory.html">Current Working Directory</a></td></tr>
<tr><td></td><td valign="top"><a href="Current-Working-Directory.html#index-cd-3"><code>cd</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Current-Working-Directory.html">Current Working Directory</a></td></tr>
<tr><td></td><td valign="top"><a href="Current-Working-Directory.html#index-cd-4"><code>cd</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Current-Working-Directory.html">Current Working Directory</a></td></tr>
<tr><td></td><td valign="top"><a href="Current-Working-Directory.html#index-cd-5"><code>cd</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Current-Working-Directory.html">Current Working Directory</a></td></tr>
<tr><td></td><td valign="top"><a href="Utility-Functions.html#index-ceil"><code>ceil</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Utility-Functions.html">Utility Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Creating-Cell-Arrays.html#index-cell"><code>cell</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Creating-Cell-Arrays.html">Creating Cell Arrays</a></td></tr>
<tr><td></td><td valign="top"><a href="Creating-Cell-Arrays.html#index-cell-1"><code>cell</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Creating-Cell-Arrays.html">Creating Cell Arrays</a></td></tr>
<tr><td></td><td valign="top"><a href="Creating-Cell-Arrays.html#index-cell-2"><code>cell</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Creating-Cell-Arrays.html">Creating Cell Arrays</a></td></tr>
<tr><td></td><td valign="top"><a href="Creating-Cell-Arrays.html#index-cell-3"><code>cell</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Creating-Cell-Arrays.html">Creating Cell Arrays</a></td></tr>
<tr><td></td><td valign="top"><a href="Processing-Data-in-Cell-Arrays.html#index-cell2mat"><code>cell2mat</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Processing-Data-in-Cell-Arrays.html">Processing Data in Cell Arrays</a></td></tr>
<tr><td></td><td valign="top"><a href="Processing-Data-in-Cell-Arrays.html#index-cell2struct"><code>cell2struct</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Processing-Data-in-Cell-Arrays.html">Processing Data in Cell Arrays</a></td></tr>
<tr><td></td><td valign="top"><a href="Processing-Data-in-Cell-Arrays.html#index-cell2struct-1"><code>cell2struct</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Processing-Data-in-Cell-Arrays.html">Processing Data in Cell Arrays</a></td></tr>
<tr><td></td><td valign="top"><a href="Basic-Usage-of-Cell-Arrays.html#index-celldisp"><code>celldisp</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Basic-Usage-of-Cell-Arrays.html">Basic Usage of Cell Arrays</a></td></tr>
<tr><td></td><td valign="top"><a href="Basic-Usage-of-Cell-Arrays.html#index-celldisp-1"><code>celldisp</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Basic-Usage-of-Cell-Arrays.html">Basic Usage of Cell Arrays</a></td></tr>
<tr><td></td><td valign="top"><a href="Function-Application.html#index-cellfun"><code>cellfun</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Function-Application.html">Function Application</a></td></tr>
<tr><td></td><td valign="top"><a href="Function-Application.html#index-cellfun-1"><code>cellfun</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Function-Application.html">Function Application</a></td></tr>
<tr><td></td><td valign="top"><a href="Function-Application.html#index-cellfun-2"><code>cellfun</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Function-Application.html">Function Application</a></td></tr>
<tr><td></td><td valign="top"><a href="Function-Application.html#index-cellfun-3"><code>cellfun</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Function-Application.html">Function Application</a></td></tr>
<tr><td></td><td valign="top"><a href="Function-Application.html#index-cellfun-4"><code>cellfun</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Function-Application.html">Function Application</a></td></tr>
<tr><td></td><td valign="top"><a href="Function-Application.html#index-cellfun-5"><code>cellfun</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Function-Application.html">Function Application</a></td></tr>
<tr><td></td><td valign="top"><a href="Function-Application.html#index-cellfun-6"><code>cellfun</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Function-Application.html">Function Application</a></td></tr>
<tr><td></td><td valign="top"><a href="Function-Application.html#index-cellfun-7"><code>cellfun</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Function-Application.html">Function Application</a></td></tr>
<tr><td></td><td valign="top"><a href="Indexing-Cell-Arrays.html#index-cellindexmat"><code>cellindexmat</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Indexing-Cell-Arrays.html">Indexing Cell Arrays</a></td></tr>
<tr><td></td><td valign="top"><a href="Creating-Cell-Arrays.html#index-cellslices"><code>cellslices</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Creating-Cell-Arrays.html">Creating Cell Arrays</a></td></tr>
<tr><td></td><td valign="top"><a href="Cell-Arrays-of-Strings.html#index-cellstr"><code>cellstr</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Cell-Arrays-of-Strings.html">Cell Arrays of Strings</a></td></tr>
<tr><td></td><td valign="top"><a href="Basic-Statistical-Functions.html#index-center"><code>center</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Basic-Statistical-Functions.html">Basic Statistical Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Basic-Statistical-Functions.html#index-center-1"><code>center</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Basic-Statistical-Functions.html">Basic Statistical Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Specialized-Solvers.html#index-cgs"><code>cgs</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Specialized-Solvers.html">Specialized Solvers</a></td></tr>
<tr><td></td><td valign="top"><a href="Specialized-Solvers.html#index-cgs-1"><code>cgs</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Specialized-Solvers.html">Specialized Solvers</a></td></tr>
<tr><td></td><td valign="top"><a href="Specialized-Solvers.html#index-cgs-2"><code>cgs</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Specialized-Solvers.html">Specialized Solvers</a></td></tr>
<tr><td></td><td valign="top"><a href="Concatenating-Strings.html#index-char"><code>char</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Concatenating-Strings.html">Concatenating Strings</a></td></tr>
<tr><td></td><td valign="top"><a href="Concatenating-Strings.html#index-char-1"><code>char</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Concatenating-Strings.html">Concatenating Strings</a></td></tr>
<tr><td></td><td valign="top"><a href="Concatenating-Strings.html#index-char-2"><code>char</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Concatenating-Strings.html">Concatenating Strings</a></td></tr>
<tr><td></td><td valign="top"><a href="Concatenating-Strings.html#index-char-3"><code>char</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Concatenating-Strings.html">Concatenating Strings</a></td></tr>
<tr><td></td><td valign="top"><a href="Current-Working-Directory.html#index-chdir"><code>chdir</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Current-Working-Directory.html">Current Working Directory</a></td></tr>
<tr><td></td><td valign="top"><a href="Matrix-Factorizations.html#index-chol"><code>chol</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Matrix-Factorizations.html">Matrix Factorizations</a></td></tr>
<tr><td></td><td valign="top"><a href="Matrix-Factorizations.html#index-chol-1"><code>chol</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Matrix-Factorizations.html">Matrix Factorizations</a></td></tr>
<tr><td></td><td valign="top"><a href="Matrix-Factorizations.html#index-chol-2"><code>chol</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Matrix-Factorizations.html">Matrix Factorizations</a></td></tr>
<tr><td></td><td valign="top"><a href="Matrix-Factorizations.html#index-chol-3"><code>chol</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Matrix-Factorizations.html">Matrix Factorizations</a></td></tr>
<tr><td></td><td valign="top"><a href="Matrix-Factorizations.html#index-chol-4"><code>chol</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Matrix-Factorizations.html">Matrix Factorizations</a></td></tr>
<tr><td></td><td valign="top"><a href="Matrix-Factorizations.html#index-chol-5"><code>chol</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Matrix-Factorizations.html">Matrix Factorizations</a></td></tr>
<tr><td></td><td valign="top"><a href="Matrix-Factorizations.html#index-chol2inv"><code>chol2inv</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Matrix-Factorizations.html">Matrix Factorizations</a></td></tr>
<tr><td></td><td valign="top"><a href="Matrix-Factorizations.html#index-choldelete"><code>choldelete</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Matrix-Factorizations.html">Matrix Factorizations</a></td></tr>
<tr><td></td><td valign="top"><a href="Matrix-Factorizations.html#index-cholinsert"><code>cholinsert</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Matrix-Factorizations.html">Matrix Factorizations</a></td></tr>
<tr><td></td><td valign="top"><a href="Matrix-Factorizations.html#index-cholinsert-1"><code>cholinsert</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Matrix-Factorizations.html">Matrix Factorizations</a></td></tr>
<tr><td></td><td valign="top"><a href="Matrix-Factorizations.html#index-cholinv"><code>cholinv</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Matrix-Factorizations.html">Matrix Factorizations</a></td></tr>
<tr><td></td><td valign="top"><a href="Matrix-Factorizations.html#index-cholshift"><code>cholshift</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Matrix-Factorizations.html">Matrix Factorizations</a></td></tr>
<tr><td></td><td valign="top"><a href="Matrix-Factorizations.html#index-cholupdate"><code>cholupdate</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Matrix-Factorizations.html">Matrix Factorizations</a></td></tr>
<tr><td></td><td valign="top"><a href="Rearranging-Matrices.html#index-circshift"><code>circshift</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Rearranging-Matrices.html">Rearranging Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Rearranging-Matrices.html#index-circshift-1"><code>circshift</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Rearranging-Matrices.html">Rearranging Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Citing-Octave-in-Publications.html#index-citation"><code>citation</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Citing-Octave-in-Publications.html">Citing Octave in Publications</a></td></tr>
<tr><td></td><td valign="top"><a href="Citing-Octave-in-Publications.html#index-citation-1"><code>citation</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Citing-Octave-in-Publications.html">Citing Octave in Publications</a></td></tr>
<tr><td></td><td valign="top"><a href="Manipulation-of-Plot-Windows.html#index-cla"><code>cla</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Manipulation-of-Plot-Windows.html">Manipulation of Plot Windows</a></td></tr>
<tr><td></td><td valign="top"><a href="Manipulation-of-Plot-Windows.html#index-cla-1"><code>cla</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Manipulation-of-Plot-Windows.html">Manipulation of Plot Windows</a></td></tr>
<tr><td></td><td valign="top"><a href="Manipulation-of-Plot-Windows.html#index-cla-2"><code>cla</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Manipulation-of-Plot-Windows.html">Manipulation of Plot Windows</a></td></tr>
<tr><td></td><td valign="top"><a href="Manipulation-of-Plot-Windows.html#index-cla-3"><code>cla</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Manipulation-of-Plot-Windows.html">Manipulation of Plot Windows</a></td></tr>
<tr><td></td><td valign="top"><a href="Plot-Annotations.html#index-clabel"><code>clabel</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Plot-Annotations.html">Plot Annotations</a></td></tr>
<tr><td></td><td valign="top"><a href="Plot-Annotations.html#index-clabel-1"><code>clabel</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Plot-Annotations.html">Plot Annotations</a></td></tr>
<tr><td></td><td valign="top"><a href="Plot-Annotations.html#index-clabel-2"><code>clabel</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Plot-Annotations.html">Plot Annotations</a></td></tr>
<tr><td></td><td valign="top"><a href="Plot-Annotations.html#index-clabel-3"><code>clabel</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Plot-Annotations.html">Plot Annotations</a></td></tr>
<tr><td></td><td valign="top"><a href="Plot-Annotations.html#index-clabel-4"><code>clabel</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Plot-Annotations.html">Plot Annotations</a></td></tr>
<tr><td></td><td valign="top"><a href="Plot-Annotations.html#index-clabel-5"><code>clabel</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Plot-Annotations.html">Plot Annotations</a></td></tr>
<tr><td></td><td valign="top"><a href="Built_002din-Data-Types.html#index-class"><code>class</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Built_002din-Data-Types.html">Built-in Data Types</a></td></tr>
<tr><td></td><td valign="top"><a href="Built_002din-Data-Types.html#index-class-1"><code>class</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Built_002din-Data-Types.html">Built-in Data Types</a></td></tr>
<tr><td></td><td valign="top"><a href="Built_002din-Data-Types.html#index-class-2"><code>class</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Built_002din-Data-Types.html">Built-in Data Types</a></td></tr>
<tr><td></td><td valign="top"><a href="Cursor-Motion.html#index-clc"><code>clc</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Cursor-Motion.html">Cursor Motion</a></td></tr>
<tr><td></td><td valign="top"><a href="Status-of-Variables.html#index-clear"><code>clear</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Status-of-Variables.html">Status of Variables</a></td></tr>
<tr><td></td><td valign="top"><a href="Status-of-Variables.html#index-clear-1"><code>clear</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Status-of-Variables.html">Status of Variables</a></td></tr>
<tr><td></td><td valign="top"><a href="Status-of-Variables.html#index-clear-2"><code>clear</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Status-of-Variables.html">Status of Variables</a></td></tr>
<tr><td></td><td valign="top"><a href="Status-of-Variables.html#index-clearvars"><code>clearvars</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Status-of-Variables.html">Status of Variables</a></td></tr>
<tr><td></td><td valign="top"><a href="Status-of-Variables.html#index-clearvars-1"><code>clearvars</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Status-of-Variables.html">Status of Variables</a></td></tr>
<tr><td></td><td valign="top"><a href="Status-of-Variables.html#index-clearvars-2"><code>clearvars</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Status-of-Variables.html">Status of Variables</a></td></tr>
<tr><td></td><td valign="top"><a href="Status-of-Variables.html#index-clearvars-3"><code>clearvars</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Status-of-Variables.html">Status of Variables</a></td></tr>
<tr><td></td><td valign="top"><a href="Status-of-Variables.html#index-clearvars-4"><code>clearvars</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Status-of-Variables.html">Status of Variables</a></td></tr>
<tr><td></td><td valign="top"><a href="Status-of-Variables.html#index-clearvars-5"><code>clearvars</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Status-of-Variables.html">Status of Variables</a></td></tr>
<tr><td></td><td valign="top"><a href="Manipulation-of-Plot-Windows.html#index-clf"><code>clf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Manipulation-of-Plot-Windows.html">Manipulation of Plot Windows</a></td></tr>
<tr><td></td><td valign="top"><a href="Manipulation-of-Plot-Windows.html#index-clf-1"><code>clf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Manipulation-of-Plot-Windows.html">Manipulation of Plot Windows</a></td></tr>
<tr><td></td><td valign="top"><a href="Manipulation-of-Plot-Windows.html#index-clf-2"><code>clf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Manipulation-of-Plot-Windows.html">Manipulation of Plot Windows</a></td></tr>
<tr><td></td><td valign="top"><a href="Manipulation-of-Plot-Windows.html#index-clf-3"><code>clf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Manipulation-of-Plot-Windows.html">Manipulation of Plot Windows</a></td></tr>
<tr><td></td><td valign="top"><a href="Manipulation-of-Plot-Windows.html#index-clf-4"><code>clf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Manipulation-of-Plot-Windows.html">Manipulation of Plot Windows</a></td></tr>
<tr><td></td><td valign="top"><a href="Timing-Utilities.html#index-clock"><code>clock</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Timing-Utilities.html">Timing Utilities</a></td></tr>
<tr><td></td><td valign="top"><a href="Manipulation-of-Plot-Windows.html#index-close"><code>close</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Manipulation-of-Plot-Windows.html">Manipulation of Plot Windows</a></td></tr>
<tr><td></td><td valign="top"><a href="Manipulation-of-Plot-Windows.html#index-close-1"><code>close</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Manipulation-of-Plot-Windows.html">Manipulation of Plot Windows</a></td></tr>
<tr><td></td><td valign="top"><a href="Manipulation-of-Plot-Windows.html#index-close-2"><code>close</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Manipulation-of-Plot-Windows.html">Manipulation of Plot Windows</a></td></tr>
<tr><td></td><td valign="top"><a href="Manipulation-of-Plot-Windows.html#index-close-3"><code>close</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Manipulation-of-Plot-Windows.html">Manipulation of Plot Windows</a></td></tr>
<tr><td></td><td valign="top"><a href="Manipulation-of-Plot-Windows.html#index-close-4"><code>close</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Manipulation-of-Plot-Windows.html">Manipulation of Plot Windows</a></td></tr>
<tr><td></td><td valign="top"><a href="Manipulation-of-Plot-Windows.html#index-close-5"><code>close</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Manipulation-of-Plot-Windows.html">Manipulation of Plot Windows</a></td></tr>
<tr><td></td><td valign="top"><a href="FTP-Objects.html#index-close-6"><code>close</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="FTP-Objects.html">FTP Objects</a></td></tr>
<tr><td></td><td valign="top"><a href="Manipulation-of-Plot-Windows.html#index-closereq"><code>closereq</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Manipulation-of-Plot-Windows.html">Manipulation of Plot Windows</a></td></tr>
<tr><td></td><td valign="top"><a href="Representing-Images.html#index-cmpermute"><code>cmpermute</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Representing-Images.html">Representing Images</a></td></tr>
<tr><td></td><td valign="top"><a href="Representing-Images.html#index-cmpermute-1"><code>cmpermute</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Representing-Images.html">Representing Images</a></td></tr>
<tr><td></td><td valign="top"><a href="Representing-Images.html#index-cmunique"><code>cmunique</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Representing-Images.html">Representing Images</a></td></tr>
<tr><td></td><td valign="top"><a href="Representing-Images.html#index-cmunique-1"><code>cmunique</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Representing-Images.html">Representing Images</a></td></tr>
<tr><td></td><td valign="top"><a href="Representing-Images.html#index-cmunique-2"><code>cmunique</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Representing-Images.html">Representing Images</a></td></tr>
<tr><td></td><td valign="top"><a href="Mathematical-Considerations.html#index-colamd"><code>colamd</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Mathematical-Considerations.html">Mathematical Considerations</a></td></tr>
<tr><td></td><td valign="top"><a href="Mathematical-Considerations.html#index-colamd-1"><code>colamd</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Mathematical-Considerations.html">Mathematical Considerations</a></td></tr>
<tr><td></td><td valign="top"><a href="Mathematical-Considerations.html#index-colamd-2"><code>colamd</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Mathematical-Considerations.html">Mathematical Considerations</a></td></tr>
<tr><td></td><td valign="top"><a href="Mathematical-Considerations.html#index-colamd-3"><code>colamd</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Mathematical-Considerations.html">Mathematical Considerations</a></td></tr>
<tr><td></td><td valign="top"><a href="Orthogonal-Collocation.html#index-colloc"><code>colloc</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Orthogonal-Collocation.html">Orthogonal Collocation</a></td></tr>
<tr><td></td><td valign="top"><a href="Defining-Indexing-And-Indexed-Assignment.html#index-colon"><code>colon</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Defining-Indexing-And-Indexed-Assignment.html">Defining Indexing And Indexed Assignment</a></td></tr>
<tr><td></td><td valign="top"><a href="Defining-Indexing-And-Indexed-Assignment.html#index-colon-1"><code>colon</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Defining-Indexing-And-Indexed-Assignment.html">Defining Indexing And Indexed Assignment</a></td></tr>
<tr><td></td><td valign="top"><a href="Plot-Annotations.html#index-colorbar"><code>colorbar</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Plot-Annotations.html">Plot Annotations</a></td></tr>
<tr><td></td><td valign="top"><a href="Plot-Annotations.html#index-colorbar-1"><code>colorbar</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Plot-Annotations.html">Plot Annotations</a></td></tr>
<tr><td></td><td valign="top"><a href="Plot-Annotations.html#index-colorbar-2"><code>colorbar</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Plot-Annotations.html">Plot Annotations</a></td></tr>
<tr><td></td><td valign="top"><a href="Plot-Annotations.html#index-colorbar-3"><code>colorbar</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Plot-Annotations.html">Plot Annotations</a></td></tr>
<tr><td></td><td valign="top"><a href="Plot-Annotations.html#index-colorbar-4"><code>colorbar</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Plot-Annotations.html">Plot Annotations</a></td></tr>
<tr><td></td><td valign="top"><a href="Plot-Annotations.html#index-colorbar-5"><code>colorbar</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Plot-Annotations.html">Plot Annotations</a></td></tr>
<tr><td></td><td valign="top"><a href="Plot-Annotations.html#index-colorbar-6"><code>colorbar</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Plot-Annotations.html">Plot Annotations</a></td></tr>
<tr><td></td><td valign="top"><a href="Plot-Annotations.html#index-colorbar-7"><code>colorbar</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Plot-Annotations.html">Plot Annotations</a></td></tr>
<tr><td></td><td valign="top"><a href="Plot-Annotations.html#index-colorbar-8"><code>colorbar</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Plot-Annotations.html">Plot Annotations</a></td></tr>
<tr><td></td><td valign="top"><a href="Representing-Images.html#index-colorcube"><code>colorcube</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Representing-Images.html">Representing Images</a></td></tr>
<tr><td></td><td valign="top"><a href="Representing-Images.html#index-colorcube-1"><code>colorcube</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Representing-Images.html">Representing Images</a></td></tr>
<tr><td></td><td valign="top"><a href="Representing-Images.html#index-colormap"><code>colormap</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Representing-Images.html">Representing Images</a></td></tr>
<tr><td></td><td valign="top"><a href="Representing-Images.html#index-colormap-1"><code>colormap</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Representing-Images.html">Representing Images</a></td></tr>
<tr><td></td><td valign="top"><a href="Representing-Images.html#index-colormap-2"><code>colormap</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Representing-Images.html">Representing Images</a></td></tr>
<tr><td></td><td valign="top"><a href="Representing-Images.html#index-colormap-3"><code>colormap</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Representing-Images.html">Representing Images</a></td></tr>
<tr><td></td><td valign="top"><a href="Representing-Images.html#index-colormap-4"><code>colormap</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Representing-Images.html">Representing Images</a></td></tr>
<tr><td></td><td valign="top"><a href="Representing-Images.html#index-colormap-5"><code>colormap</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Representing-Images.html">Representing Images</a></td></tr>
<tr><td></td><td valign="top"><a href="Mathematical-Considerations.html#index-colperm"><code>colperm</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Mathematical-Considerations.html">Mathematical Considerations</a></td></tr>
<tr><td></td><td valign="top"><a href="Marker-Styles.html#index-colstyle"><code>colstyle</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Marker-Styles.html">Marker Styles</a></td></tr>
<tr><td></td><td valign="top"><a href="Object-Sizes.html#index-columns"><code>columns</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Object-Sizes.html">Object Sizes</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-comet"><code>comet</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-comet-1"><code>comet</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-comet-2"><code>comet</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-comet-3"><code>comet</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-comet3"><code>comet3</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-comet3-1"><code>comet3</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-comet3-2"><code>comet3</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-comet3-3"><code>comet3</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Octave-Workspace-Windows.html#index-commandhistory"><code>commandhistory</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Octave-Workspace-Windows.html">Octave Workspace Windows</a></td></tr>
<tr><td></td><td valign="top"><a href="Octave-Workspace-Windows.html#index-commandwindow"><code>commandwindow</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Octave-Workspace-Windows.html">Octave Workspace Windows</a></td></tr>
<tr><td></td><td valign="top"><a href="Manipulating-the-Load-Path.html#index-command_005fline_005fpath"><code>command_line_path</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Manipulating-the-Load-Path.html">Manipulating the Load Path</a></td></tr>
<tr><td></td><td valign="top"><a href="Finding-Elements-and-Checking-Conditions.html#index-common_005fsize"><code>common_size</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Finding-Elements-and-Checking-Conditions.html">Finding Elements and Checking Conditions</a></td></tr>
<tr><td></td><td valign="top"><a href="Special-Functions.html#index-commutation_005fmatrix"><code>commutation_matrix</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Special-Functions.html">Special Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Finding-Roots.html#index-compan"><code>compan</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Finding-Roots.html">Finding Roots</a></td></tr>
<tr><td></td><td valign="top"><a href="System-Information.html#index-compare_005fversions"><code>compare_versions</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="System-Information.html">System Information</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-compass"><code>compass</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-compass-1"><code>compass</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-compass-2"><code>compass</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-compass-3"><code>compass</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-compass-4"><code>compass</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Commands-for-Completion.html#index-completion_005fappend_005fchar"><code>completion_append_char</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Commands-for-Completion.html">Commands for Completion</a></td></tr>
<tr><td></td><td valign="top"><a href="Commands-for-Completion.html#index-completion_005fappend_005fchar-1"><code>completion_append_char</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Commands-for-Completion.html">Commands for Completion</a></td></tr>
<tr><td></td><td valign="top"><a href="Commands-for-Completion.html#index-completion_005fappend_005fchar-2"><code>completion_append_char</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Commands-for-Completion.html">Commands for Completion</a></td></tr>
<tr><td></td><td valign="top"><a href="Commands-for-Completion.html#index-completion_005fmatches"><code>completion_matches</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Commands-for-Completion.html">Commands for Completion</a></td></tr>
<tr><td></td><td valign="top"><a href="Numeric-Data-Types.html#index-complex"><code>complex</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Numeric-Data-Types.html">Numeric Data Types</a></td></tr>
<tr><td></td><td valign="top"><a href="Numeric-Data-Types.html#index-complex-1"><code>complex</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Numeric-Data-Types.html">Numeric Data Types</a></td></tr>
<tr><td></td><td valign="top"><a href="System-Information.html#index-computer"><code>computer</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="System-Information.html">System Information</a></td></tr>
<tr><td></td><td valign="top"><a href="System-Information.html#index-computer-1"><code>computer</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="System-Information.html">System Information</a></td></tr>
<tr><td></td><td valign="top"><a href="System-Information.html#index-computer-2"><code>computer</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="System-Information.html">System Information</a></td></tr>
<tr><td></td><td valign="top"><a href="System-Information.html#index-computer-3"><code>computer</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="System-Information.html">System Information</a></td></tr>
<tr><td></td><td valign="top"><a href="System-Information.html#index-computer-4"><code>computer</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="System-Information.html">System Information</a></td></tr>
<tr><td></td><td valign="top"><a href="Basic-Matrix-Functions.html#index-cond"><code>cond</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Basic-Matrix-Functions.html">Basic Matrix Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Basic-Matrix-Functions.html#index-cond-1"><code>cond</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Basic-Matrix-Functions.html">Basic Matrix Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Basic-Matrix-Functions.html#index-condeig"><code>condeig</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Basic-Matrix-Functions.html">Basic Matrix Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Basic-Matrix-Functions.html#index-condeig-1"><code>condeig</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Basic-Matrix-Functions.html">Basic Matrix Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Sparse-Linear-Algebra.html#index-condest"><code>condest</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Sparse-Linear-Algebra.html">Sparse Linear Algebra</a></td></tr>
<tr><td></td><td valign="top"><a href="Sparse-Linear-Algebra.html#index-condest-1"><code>condest</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Sparse-Linear-Algebra.html">Sparse Linear Algebra</a></td></tr>
<tr><td></td><td valign="top"><a href="Sparse-Linear-Algebra.html#index-condest-2"><code>condest</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Sparse-Linear-Algebra.html">Sparse Linear Algebra</a></td></tr>
<tr><td></td><td valign="top"><a href="Sparse-Linear-Algebra.html#index-condest-3"><code>condest</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Sparse-Linear-Algebra.html">Sparse Linear Algebra</a></td></tr>
<tr><td></td><td valign="top"><a href="Sparse-Linear-Algebra.html#index-condest-4"><code>condest</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Sparse-Linear-Algebra.html">Sparse Linear Algebra</a></td></tr>
<tr><td></td><td valign="top"><a href="Sparse-Linear-Algebra.html#index-condest-5"><code>condest</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Sparse-Linear-Algebra.html">Sparse Linear Algebra</a></td></tr>
<tr><td></td><td valign="top"><a href="Sparse-Linear-Algebra.html#index-condest-6"><code>condest</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Sparse-Linear-Algebra.html">Sparse Linear Algebra</a></td></tr>
<tr><td></td><td valign="top"><a href="Sparse-Linear-Algebra.html#index-condest-7"><code>condest</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Sparse-Linear-Algebra.html">Sparse Linear Algebra</a></td></tr>
<tr><td></td><td valign="top"><a href="Sparse-Linear-Algebra.html#index-condest-8"><code>condest</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Sparse-Linear-Algebra.html">Sparse Linear Algebra</a></td></tr>
<tr><td></td><td valign="top"><a href="Filesystem-Utilities.html#index-confirm_005frecursive_005frmdir"><code>confirm_recursive_rmdir</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Filesystem-Utilities.html">Filesystem Utilities</a></td></tr>
<tr><td></td><td valign="top"><a href="Filesystem-Utilities.html#index-confirm_005frecursive_005frmdir-1"><code>confirm_recursive_rmdir</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Filesystem-Utilities.html">Filesystem Utilities</a></td></tr>
<tr><td></td><td valign="top"><a href="Filesystem-Utilities.html#index-confirm_005frecursive_005frmdir-2"><code>confirm_recursive_rmdir</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Filesystem-Utilities.html">Filesystem Utilities</a></td></tr>
<tr><td></td><td valign="top"><a href="Complex-Arithmetic.html#index-conj"><code>conj</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Complex-Arithmetic.html">Complex Arithmetic</a></td></tr>
<tr><td></td><td valign="top"><a href="containers_002eMap.html#index-containers_002eMap"><code>containers.Map</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="containers_002eMap.html">containers.Map</a></td></tr>
<tr><td></td><td valign="top"><a href="containers_002eMap.html#index-containers_002eMap-1"><code>containers.Map</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="containers_002eMap.html">containers.Map</a></td></tr>
<tr><td></td><td valign="top"><a href="containers_002eMap.html#index-containers_002eMap-2"><code>containers.Map</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="containers_002eMap.html">containers.Map</a></td></tr>
<tr><td></td><td valign="top"><a href="containers_002eMap.html#index-containers_002eMap-3"><code>containers.Map</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="containers_002eMap.html">containers.Map</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-contour"><code>contour</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-contour-1"><code>contour</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-contour-2"><code>contour</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-contour-3"><code>contour</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-contour-4"><code>contour</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-contour-5"><code>contour</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-contour-6"><code>contour</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-contour3"><code>contour3</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-contour3-1"><code>contour3</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-contour3-2"><code>contour3</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-contour3-3"><code>contour3</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-contour3-4"><code>contour3</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-contour3-5"><code>contour3</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-contour3-6"><code>contour3</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-contourc"><code>contourc</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-contourc-1"><code>contourc</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-contourc-2"><code>contourc</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-contourc-3"><code>contourc</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-contourc-4"><code>contourc</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-contourf"><code>contourf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-contourf-1"><code>contourf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-contourf-2"><code>contourf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-contourf-3"><code>contourf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-contourf-4"><code>contourf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-contourf-5"><code>contourf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-contourf-6"><code>contourf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Representing-Images.html#index-contrast"><code>contrast</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Representing-Images.html">Representing Images</a></td></tr>
<tr><td></td><td valign="top"><a href="Representing-Images.html#index-contrast-1"><code>contrast</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Representing-Images.html">Representing Images</a></td></tr>
<tr><td></td><td valign="top"><a href="Products-of-Polynomials.html#index-conv"><code>conv</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Products-of-Polynomials.html">Products of Polynomials</a></td></tr>
<tr><td></td><td valign="top"><a href="Products-of-Polynomials.html#index-conv-1"><code>conv</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Products-of-Polynomials.html">Products of Polynomials</a></td></tr>
<tr><td></td><td valign="top"><a href="Products-of-Polynomials.html#index-conv2"><code>conv2</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Products-of-Polynomials.html">Products of Polynomials</a></td></tr>
<tr><td></td><td valign="top"><a href="Products-of-Polynomials.html#index-conv2-1"><code>conv2</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Products-of-Polynomials.html">Products of Polynomials</a></td></tr>
<tr><td></td><td valign="top"><a href="Products-of-Polynomials.html#index-conv2-2"><code>conv2</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Products-of-Polynomials.html">Products of Polynomials</a></td></tr>
<tr><td></td><td valign="top"><a href="Convex-Hull.html#index-convhull"><code>convhull</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Convex-Hull.html">Convex Hull</a></td></tr>
<tr><td></td><td valign="top"><a href="Convex-Hull.html#index-convhull-1"><code>convhull</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Convex-Hull.html">Convex Hull</a></td></tr>
<tr><td></td><td valign="top"><a href="Convex-Hull.html#index-convhull-2"><code>convhull</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Convex-Hull.html">Convex Hull</a></td></tr>
<tr><td></td><td valign="top"><a href="Convex-Hull.html#index-convhull-3"><code>convhull</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Convex-Hull.html">Convex Hull</a></td></tr>
<tr><td></td><td valign="top"><a href="Convex-Hull.html#index-convhull-4"><code>convhull</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Convex-Hull.html">Convex Hull</a></td></tr>
<tr><td></td><td valign="top"><a href="Convex-Hull.html#index-convhulln"><code>convhulln</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Convex-Hull.html">Convex Hull</a></td></tr>
<tr><td></td><td valign="top"><a href="Convex-Hull.html#index-convhulln-1"><code>convhulln</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Convex-Hull.html">Convex Hull</a></td></tr>
<tr><td></td><td valign="top"><a href="Convex-Hull.html#index-convhulln-2"><code>convhulln</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Convex-Hull.html">Convex Hull</a></td></tr>
<tr><td></td><td valign="top"><a href="Products-of-Polynomials.html#index-convn"><code>convn</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Products-of-Polynomials.html">Products of Polynomials</a></td></tr>
<tr><td></td><td valign="top"><a href="Products-of-Polynomials.html#index-convn-1"><code>convn</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Products-of-Polynomials.html">Products of Polynomials</a></td></tr>
<tr><td></td><td valign="top"><a href="Representing-Images.html#index-cool"><code>cool</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Representing-Images.html">Representing Images</a></td></tr>
<tr><td></td><td valign="top"><a href="Representing-Images.html#index-cool-1"><code>cool</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Representing-Images.html">Representing Images</a></td></tr>
<tr><td></td><td valign="top"><a href="Representing-Images.html#index-copper"><code>copper</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Representing-Images.html">Representing Images</a></td></tr>
<tr><td></td><td valign="top"><a href="Representing-Images.html#index-copper-1"><code>copper</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Representing-Images.html">Representing Images</a></td></tr>
<tr><td></td><td valign="top"><a href="Filesystem-Utilities.html#index-copyfile"><code>copyfile</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Filesystem-Utilities.html">Filesystem Utilities</a></td></tr>
<tr><td></td><td valign="top"><a href="Filesystem-Utilities.html#index-copyfile-1"><code>copyfile</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Filesystem-Utilities.html">Filesystem Utilities</a></td></tr>
<tr><td></td><td valign="top"><a href="Filesystem-Utilities.html#index-copyfile-2"><code>copyfile</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Filesystem-Utilities.html">Filesystem Utilities</a></td></tr>
<tr><td></td><td valign="top"><a href="Filesystem-Utilities.html#index-copyfile-3"><code>copyfile</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Filesystem-Utilities.html">Filesystem Utilities</a></td></tr>
<tr><td></td><td valign="top"><a href="Filesystem-Utilities.html#index-copyfile-4"><code>copyfile</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Filesystem-Utilities.html">Filesystem Utilities</a></td></tr>
<tr><td></td><td valign="top"><a href="Graphics-Objects.html#index-copyobj"><code>copyobj</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Graphics-Objects.html">Graphics Objects</a></td></tr>
<tr><td></td><td valign="top"><a href="Graphics-Objects.html#index-copyobj-1"><code>copyobj</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Graphics-Objects.html">Graphics Objects</a></td></tr>
<tr><td></td><td valign="top"><a href="Correlation-and-Regression-Analysis.html#index-corr"><code>corr</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Correlation-and-Regression-Analysis.html">Correlation and Regression Analysis</a></td></tr>
<tr><td></td><td valign="top"><a href="Correlation-and-Regression-Analysis.html#index-corr-1"><code>corr</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Correlation-and-Regression-Analysis.html">Correlation and Regression Analysis</a></td></tr>
<tr><td></td><td valign="top"><a href="Correlation-and-Regression-Analysis.html#index-corrcoef"><code>corrcoef</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Correlation-and-Regression-Analysis.html">Correlation and Regression Analysis</a></td></tr>
<tr><td></td><td valign="top"><a href="Correlation-and-Regression-Analysis.html#index-corrcoef-1"><code>corrcoef</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Correlation-and-Regression-Analysis.html">Correlation and Regression Analysis</a></td></tr>
<tr><td></td><td valign="top"><a href="Correlation-and-Regression-Analysis.html#index-corrcoef-2"><code>corrcoef</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Correlation-and-Regression-Analysis.html">Correlation and Regression Analysis</a></td></tr>
<tr><td></td><td valign="top"><a href="Correlation-and-Regression-Analysis.html#index-corrcoef-3"><code>corrcoef</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Correlation-and-Regression-Analysis.html">Correlation and Regression Analysis</a></td></tr>
<tr><td></td><td valign="top"><a href="Correlation-and-Regression-Analysis.html#index-corrcoef-4"><code>corrcoef</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Correlation-and-Regression-Analysis.html">Correlation and Regression Analysis</a></td></tr>
<tr><td></td><td valign="top"><a href="Trigonometry.html#index-cos"><code>cos</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Trigonometry.html">Trigonometry</a></td></tr>
<tr><td></td><td valign="top"><a href="Trigonometry.html#index-cosd"><code>cosd</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Trigonometry.html">Trigonometry</a></td></tr>
<tr><td></td><td valign="top"><a href="Trigonometry.html#index-cosh"><code>cosh</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Trigonometry.html">Trigonometry</a></td></tr>
<tr><td></td><td valign="top"><a href="Special-Functions.html#index-cosint"><code>cosint</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Special-Functions.html">Special Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Trigonometry.html#index-cospi"><code>cospi</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Trigonometry.html">Trigonometry</a></td></tr>
<tr><td></td><td valign="top"><a href="Trigonometry.html#index-cot"><code>cot</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Trigonometry.html">Trigonometry</a></td></tr>
<tr><td></td><td valign="top"><a href="Trigonometry.html#index-cotd"><code>cotd</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Trigonometry.html">Trigonometry</a></td></tr>
<tr><td></td><td valign="top"><a href="Trigonometry.html#index-coth"><code>coth</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Trigonometry.html">Trigonometry</a></td></tr>
<tr><td></td><td valign="top"><a href="Correlation-and-Regression-Analysis.html#index-cov"><code>cov</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Correlation-and-Regression-Analysis.html">Correlation and Regression Analysis</a></td></tr>
<tr><td></td><td valign="top"><a href="Correlation-and-Regression-Analysis.html#index-cov-1"><code>cov</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Correlation-and-Regression-Analysis.html">Correlation and Regression Analysis</a></td></tr>
<tr><td></td><td valign="top"><a href="Correlation-and-Regression-Analysis.html#index-cov-2"><code>cov</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Correlation-and-Regression-Analysis.html">Correlation and Regression Analysis</a></td></tr>
<tr><td></td><td valign="top"><a href="Correlation-and-Regression-Analysis.html#index-cov-3"><code>cov</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Correlation-and-Regression-Analysis.html">Correlation and Regression Analysis</a></td></tr>
<tr><td></td><td valign="top"><a href="Complex-Arithmetic.html#index-cplxpair"><code>cplxpair</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Complex-Arithmetic.html">Complex Arithmetic</a></td></tr>
<tr><td></td><td valign="top"><a href="Complex-Arithmetic.html#index-cplxpair-1"><code>cplxpair</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Complex-Arithmetic.html">Complex Arithmetic</a></td></tr>
<tr><td></td><td valign="top"><a href="Complex-Arithmetic.html#index-cplxpair-2"><code>cplxpair</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Complex-Arithmetic.html">Complex Arithmetic</a></td></tr>
<tr><td></td><td valign="top"><a href="Timing-Utilities.html#index-cputime"><code>cputime</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Timing-Utilities.html">Timing Utilities</a></td></tr>
<tr><td></td><td valign="top"><a href="Saving-Data-on-Unexpected-Exits.html#index-crash_005fdumps_005foctave_005fcore"><code>crash_dumps_octave_core</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Saving-Data-on-Unexpected-Exits.html">Saving Data on Unexpected Exits</a></td></tr>
<tr><td></td><td valign="top"><a href="Saving-Data-on-Unexpected-Exits.html#index-crash_005fdumps_005foctave_005fcore-1"><code>crash_dumps_octave_core</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Saving-Data-on-Unexpected-Exits.html">Saving Data on Unexpected Exits</a></td></tr>
<tr><td></td><td valign="top"><a href="Saving-Data-on-Unexpected-Exits.html#index-crash_005fdumps_005foctave_005fcore-2"><code>crash_dumps_octave_core</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Saving-Data-on-Unexpected-Exits.html">Saving Data on Unexpected Exits</a></td></tr>
<tr><td></td><td valign="top"><a href="Utility-Functions.html#index-cross"><code>cross</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Utility-Functions.html">Utility Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Utility-Functions.html#index-cross-1"><code>cross</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Utility-Functions.html">Utility Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Trigonometry.html#index-csc"><code>csc</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Trigonometry.html">Trigonometry</a></td></tr>
<tr><td></td><td valign="top"><a href="Trigonometry.html#index-cscd"><code>cscd</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Trigonometry.html">Trigonometry</a></td></tr>
<tr><td></td><td valign="top"><a href="Trigonometry.html#index-csch"><code>csch</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Trigonometry.html">Trigonometry</a></td></tr>
<tr><td></td><td valign="top"><a href="Concatenating-Strings.html#index-cstrcat"><code>cstrcat</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Concatenating-Strings.html">Concatenating Strings</a></td></tr>
<tr><td></td><td valign="top"><a href="Simple-File-I_002fO.html#index-csvread"><code>csvread</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Simple-File-I_002fO.html">Simple File I/O</a></td></tr>
<tr><td></td><td valign="top"><a href="Simple-File-I_002fO.html#index-csvread-1"><code>csvread</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Simple-File-I_002fO.html">Simple File I/O</a></td></tr>
<tr><td></td><td valign="top"><a href="Simple-File-I_002fO.html#index-csvwrite"><code>csvwrite</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Simple-File-I_002fO.html">Simple File I/O</a></td></tr>
<tr><td></td><td valign="top"><a href="Simple-File-I_002fO.html#index-csvwrite-1"><code>csvwrite</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Simple-File-I_002fO.html">Simple File I/O</a></td></tr>
<tr><td></td><td valign="top"><a href="Mathematical-Considerations.html#index-csymamd"><code>csymamd</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Mathematical-Considerations.html">Mathematical Considerations</a></td></tr>
<tr><td></td><td valign="top"><a href="Mathematical-Considerations.html#index-csymamd-1"><code>csymamd</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Mathematical-Considerations.html">Mathematical Considerations</a></td></tr>
<tr><td></td><td valign="top"><a href="Mathematical-Considerations.html#index-csymamd-2"><code>csymamd</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Mathematical-Considerations.html">Mathematical Considerations</a></td></tr>
<tr><td></td><td valign="top"><a href="Mathematical-Considerations.html#index-csymamd-3"><code>csymamd</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Mathematical-Considerations.html">Mathematical Considerations</a></td></tr>
<tr><td></td><td valign="top"><a href="Timing-Utilities.html#index-ctime"><code>ctime</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Timing-Utilities.html">Timing Utilities</a></td></tr>
<tr><td></td><td valign="top"><a href="Arithmetic-Ops.html#index-ctranspose"><code>ctranspose</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Arithmetic-Ops.html">Arithmetic Ops</a></td></tr>
<tr><td></td><td valign="top"><a href="Representing-Images.html#index-cubehelix"><code>cubehelix</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Representing-Images.html">Representing Images</a></td></tr>
<tr><td></td><td valign="top"><a href="Representing-Images.html#index-cubehelix-1"><code>cubehelix</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Representing-Images.html">Representing Images</a></td></tr>
<tr><td></td><td valign="top"><a href="Representing-Images.html#index-cubehelix-2"><code>cubehelix</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Representing-Images.html">Representing Images</a></td></tr>
<tr><td></td><td valign="top"><a href="Utility-Functions.html#index-cummax"><code>cummax</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Utility-Functions.html">Utility Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Utility-Functions.html#index-cummax-1"><code>cummax</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Utility-Functions.html">Utility Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Utility-Functions.html#index-cummax-2"><code>cummax</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Utility-Functions.html">Utility Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Utility-Functions.html#index-cummin"><code>cummin</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Utility-Functions.html">Utility Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Utility-Functions.html#index-cummin-1"><code>cummin</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Utility-Functions.html">Utility Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Utility-Functions.html#index-cummin-2"><code>cummin</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Utility-Functions.html">Utility Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Sums-and-Products.html#index-cumprod"><code>cumprod</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Sums-and-Products.html">Sums and Products</a></td></tr>
<tr><td></td><td valign="top"><a href="Sums-and-Products.html#index-cumprod-1"><code>cumprod</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Sums-and-Products.html">Sums and Products</a></td></tr>
<tr><td></td><td valign="top"><a href="Sums-and-Products.html#index-cumsum"><code>cumsum</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Sums-and-Products.html">Sums and Products</a></td></tr>
<tr><td></td><td valign="top"><a href="Sums-and-Products.html#index-cumsum-1"><code>cumsum</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Sums-and-Products.html">Sums and Products</a></td></tr>
<tr><td></td><td valign="top"><a href="Sums-and-Products.html#index-cumsum-2"><code>cumsum</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Sums-and-Products.html">Sums and Products</a></td></tr>
<tr><td></td><td valign="top"><a href="Sums-and-Products.html#index-cumsum-3"><code>cumsum</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Sums-and-Products.html">Sums and Products</a></td></tr>
<tr><td></td><td valign="top"><a href="Functions-of-One-Variable.html#index-cumtrapz"><code>cumtrapz</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Functions-of-One-Variable.html">Functions of One Variable</a></td></tr>
<tr><td></td><td valign="top"><a href="Functions-of-One-Variable.html#index-cumtrapz-1"><code>cumtrapz</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Functions-of-One-Variable.html">Functions of One Variable</a></td></tr>
<tr><td></td><td valign="top"><a href="Functions-of-One-Variable.html#index-cumtrapz-2"><code>cumtrapz</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Functions-of-One-Variable.html">Functions of One Variable</a></td></tr>
<tr><td></td><td valign="top"><a href="Utility-Functions.html#index-curl"><code>curl</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Utility-Functions.html">Utility Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Utility-Functions.html#index-curl-1"><code>curl</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Utility-Functions.html">Utility Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Utility-Functions.html#index-curl-2"><code>curl</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Utility-Functions.html">Utility Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Utility-Functions.html#index-curl-3"><code>curl</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Utility-Functions.html">Utility Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Utility-Functions.html#index-curl-4"><code>curl</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Utility-Functions.html">Utility Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002ddimensional-Geometric-Shapes.html#index-cylinder"><code>cylinder</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002ddimensional-Geometric-Shapes.html">Three-dimensional Geometric Shapes</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002ddimensional-Geometric-Shapes.html#index-cylinder-1"><code>cylinder</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002ddimensional-Geometric-Shapes.html">Three-dimensional Geometric Shapes</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002ddimensional-Geometric-Shapes.html#index-cylinder-2"><code>cylinder</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002ddimensional-Geometric-Shapes.html">Three-dimensional Geometric Shapes</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002ddimensional-Geometric-Shapes.html#index-cylinder-3"><code>cylinder</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002ddimensional-Geometric-Shapes.html">Three-dimensional Geometric Shapes</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002ddimensional-Geometric-Shapes.html#index-cylinder-4"><code>cylinder</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002ddimensional-Geometric-Shapes.html">Three-dimensional Geometric Shapes</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th id="Function-Index_fn_letter-D">D</th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="Aspect-Ratio.html#index-daspect"><code>daspect</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Aspect-Ratio.html">Aspect Ratio</a></td></tr>
<tr><td></td><td valign="top"><a href="Aspect-Ratio.html#index-daspect-1"><code>daspect</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Aspect-Ratio.html">Aspect Ratio</a></td></tr>
<tr><td></td><td valign="top"><a href="Aspect-Ratio.html#index-daspect-2"><code>daspect</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Aspect-Ratio.html">Aspect Ratio</a></td></tr>
<tr><td></td><td valign="top"><a href="Aspect-Ratio.html#index-daspect-3"><code>daspect</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Aspect-Ratio.html">Aspect Ratio</a></td></tr>
<tr><td></td><td valign="top"><a href="Aspect-Ratio.html#index-daspect-4"><code>daspect</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Aspect-Ratio.html">Aspect Ratio</a></td></tr>
<tr><td></td><td valign="top"><a href="Differential_002dAlgebraic-Equations.html#index-daspk"><code>daspk</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Differential_002dAlgebraic-Equations.html">Differential-Algebraic Equations</a></td></tr>
<tr><td></td><td valign="top"><a href="Differential_002dAlgebraic-Equations.html#index-daspk_005foptions"><code>daspk_options</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Differential_002dAlgebraic-Equations.html">Differential-Algebraic Equations</a></td></tr>
<tr><td></td><td valign="top"><a href="Differential_002dAlgebraic-Equations.html#index-daspk_005foptions-1"><code>daspk_options</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Differential_002dAlgebraic-Equations.html">Differential-Algebraic Equations</a></td></tr>
<tr><td></td><td valign="top"><a href="Differential_002dAlgebraic-Equations.html#index-daspk_005foptions-2"><code>daspk_options</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Differential_002dAlgebraic-Equations.html">Differential-Algebraic Equations</a></td></tr>
<tr><td></td><td valign="top"><a href="Differential_002dAlgebraic-Equations.html#index-dasrt"><code>dasrt</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Differential_002dAlgebraic-Equations.html">Differential-Algebraic Equations</a></td></tr>
<tr><td></td><td valign="top"><a href="Differential_002dAlgebraic-Equations.html#index-dasrt-1"><code>dasrt</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Differential_002dAlgebraic-Equations.html">Differential-Algebraic Equations</a></td></tr>
<tr><td></td><td valign="top"><a href="Differential_002dAlgebraic-Equations.html#index-dasrt-2"><code>dasrt</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Differential_002dAlgebraic-Equations.html">Differential-Algebraic Equations</a></td></tr>
<tr><td></td><td valign="top"><a href="Differential_002dAlgebraic-Equations.html#index-dasrt-3"><code>dasrt</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Differential_002dAlgebraic-Equations.html">Differential-Algebraic Equations</a></td></tr>
<tr><td></td><td valign="top"><a href="Differential_002dAlgebraic-Equations.html#index-dasrt_005foptions"><code>dasrt_options</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Differential_002dAlgebraic-Equations.html">Differential-Algebraic Equations</a></td></tr>
<tr><td></td><td valign="top"><a href="Differential_002dAlgebraic-Equations.html#index-dasrt_005foptions-1"><code>dasrt_options</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Differential_002dAlgebraic-Equations.html">Differential-Algebraic Equations</a></td></tr>
<tr><td></td><td valign="top"><a href="Differential_002dAlgebraic-Equations.html#index-dasrt_005foptions-2"><code>dasrt_options</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Differential_002dAlgebraic-Equations.html">Differential-Algebraic Equations</a></td></tr>
<tr><td></td><td valign="top"><a href="Differential_002dAlgebraic-Equations.html#index-dassl"><code>dassl</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Differential_002dAlgebraic-Equations.html">Differential-Algebraic Equations</a></td></tr>
<tr><td></td><td valign="top"><a href="Differential_002dAlgebraic-Equations.html#index-dassl_005foptions"><code>dassl_options</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Differential_002dAlgebraic-Equations.html">Differential-Algebraic Equations</a></td></tr>
<tr><td></td><td valign="top"><a href="Differential_002dAlgebraic-Equations.html#index-dassl_005foptions-1"><code>dassl_options</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Differential_002dAlgebraic-Equations.html">Differential-Algebraic Equations</a></td></tr>
<tr><td></td><td valign="top"><a href="Differential_002dAlgebraic-Equations.html#index-dassl_005foptions-2"><code>dassl_options</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Differential_002dAlgebraic-Equations.html">Differential-Algebraic Equations</a></td></tr>
<tr><td></td><td valign="top"><a href="Timing-Utilities.html#index-date"><code>date</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Timing-Utilities.html">Timing Utilities</a></td></tr>
<tr><td></td><td valign="top"><a href="Timing-Utilities.html#index-datenum"><code>datenum</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Timing-Utilities.html">Timing Utilities</a></td></tr>
<tr><td></td><td valign="top"><a href="Timing-Utilities.html#index-datenum-1"><code>datenum</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Timing-Utilities.html">Timing Utilities</a></td></tr>
<tr><td></td><td valign="top"><a href="Timing-Utilities.html#index-datenum-2"><code>datenum</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Timing-Utilities.html">Timing Utilities</a></td></tr>
<tr><td></td><td valign="top"><a href="Timing-Utilities.html#index-datenum-3"><code>datenum</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Timing-Utilities.html">Timing Utilities</a></td></tr>
<tr><td></td><td valign="top"><a href="Timing-Utilities.html#index-datenum-4"><code>datenum</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Timing-Utilities.html">Timing Utilities</a></td></tr>
<tr><td></td><td valign="top"><a href="Timing-Utilities.html#index-datenum-5"><code>datenum</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Timing-Utilities.html">Timing Utilities</a></td></tr>
<tr><td></td><td valign="top"><a href="Timing-Utilities.html#index-datenum-6"><code>datenum</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Timing-Utilities.html">Timing Utilities</a></td></tr>
<tr><td></td><td valign="top"><a href="Timing-Utilities.html#index-datenum-7"><code>datenum</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Timing-Utilities.html">Timing Utilities</a></td></tr>
<tr><td></td><td valign="top"><a href="Timing-Utilities.html#index-datenum-8"><code>datenum</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Timing-Utilities.html">Timing Utilities</a></td></tr>
<tr><td></td><td valign="top"><a href="Timing-Utilities.html#index-datestr"><code>datestr</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Timing-Utilities.html">Timing Utilities</a></td></tr>
<tr><td></td><td valign="top"><a href="Timing-Utilities.html#index-datestr-1"><code>datestr</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Timing-Utilities.html">Timing Utilities</a></td></tr>
<tr><td></td><td valign="top"><a href="Timing-Utilities.html#index-datestr-2"><code>datestr</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Timing-Utilities.html">Timing Utilities</a></td></tr>
<tr><td></td><td valign="top"><a href="Timing-Utilities.html#index-datetick"><code>datetick</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Timing-Utilities.html">Timing Utilities</a></td></tr>
<tr><td></td><td valign="top"><a href="Timing-Utilities.html#index-datetick-1"><code>datetick</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Timing-Utilities.html">Timing Utilities</a></td></tr>
<tr><td></td><td valign="top"><a href="Timing-Utilities.html#index-datetick-2"><code>datetick</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Timing-Utilities.html">Timing Utilities</a></td></tr>
<tr><td></td><td valign="top"><a href="Timing-Utilities.html#index-datetick-3"><code>datetick</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Timing-Utilities.html">Timing Utilities</a></td></tr>
<tr><td></td><td valign="top"><a href="Timing-Utilities.html#index-datetick-4"><code>datetick</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Timing-Utilities.html">Timing Utilities</a></td></tr>
<tr><td></td><td valign="top"><a href="Timing-Utilities.html#index-datetick-5"><code>datetick</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Timing-Utilities.html">Timing Utilities</a></td></tr>
<tr><td></td><td valign="top"><a href="Timing-Utilities.html#index-datetick-6"><code>datetick</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Timing-Utilities.html">Timing Utilities</a></td></tr>
<tr><td></td><td valign="top"><a href="Timing-Utilities.html#index-datevec"><code>datevec</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Timing-Utilities.html">Timing Utilities</a></td></tr>
<tr><td></td><td valign="top"><a href="Timing-Utilities.html#index-datevec-1"><code>datevec</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Timing-Utilities.html">Timing Utilities</a></td></tr>
<tr><td></td><td valign="top"><a href="Timing-Utilities.html#index-datevec-2"><code>datevec</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Timing-Utilities.html">Timing Utilities</a></td></tr>
<tr><td></td><td valign="top"><a href="Timing-Utilities.html#index-datevec-3"><code>datevec</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Timing-Utilities.html">Timing Utilities</a></td></tr>
<tr><td></td><td valign="top"><a href="Timing-Utilities.html#index-datevec-4"><code>datevec</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Timing-Utilities.html">Timing Utilities</a></td></tr>
<tr><td></td><td valign="top"><a href="Special-Functions.html#index-dawson"><code>dawson</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Special-Functions.html">Special Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Breakpoints.html#index-dbclear"><code>dbclear</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Breakpoints.html">Breakpoints</a></td></tr>
<tr><td></td><td valign="top"><a href="Breakpoints.html#index-dbclear-1"><code>dbclear</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Breakpoints.html">Breakpoints</a></td></tr>
<tr><td></td><td valign="top"><a href="Breakpoints.html#index-dbclear-2"><code>dbclear</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Breakpoints.html">Breakpoints</a></td></tr>
<tr><td></td><td valign="top"><a href="Breakpoints.html#index-dbclear-3"><code>dbclear</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Breakpoints.html">Breakpoints</a></td></tr>
<tr><td></td><td valign="top"><a href="Breakpoints.html#index-dbclear-4"><code>dbclear</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Breakpoints.html">Breakpoints</a></td></tr>
<tr><td></td><td valign="top"><a href="Breakpoints.html#index-dbclear-5"><code>dbclear</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Breakpoints.html">Breakpoints</a></td></tr>
<tr><td></td><td valign="top"><a href="Breakpoints.html#index-dbclear-6"><code>dbclear</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Breakpoints.html">Breakpoints</a></td></tr>
<tr><td></td><td valign="top"><a href="Breakpoints.html#index-dbclear-7"><code>dbclear</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Breakpoints.html">Breakpoints</a></td></tr>
<tr><td></td><td valign="top"><a href="Breakpoints.html#index-dbclear-8"><code>dbclear</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Breakpoints.html">Breakpoints</a></td></tr>
<tr><td></td><td valign="top"><a href="Breakpoints.html#index-dbclear-9"><code>dbclear</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Breakpoints.html">Breakpoints</a></td></tr>
<tr><td></td><td valign="top"><a href="Breakpoints.html#index-dbclear-10"><code>dbclear</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Breakpoints.html">Breakpoints</a></td></tr>
<tr><td></td><td valign="top"><a href="Breakpoints.html#index-dbclear-11"><code>dbclear</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Breakpoints.html">Breakpoints</a></td></tr>
<tr><td></td><td valign="top"><a href="Breakpoints.html#index-dbclear-12"><code>dbclear</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Breakpoints.html">Breakpoints</a></td></tr>
<tr><td></td><td valign="top"><a href="Breakpoints.html#index-dbclear-13"><code>dbclear</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Breakpoints.html">Breakpoints</a></td></tr>
<tr><td></td><td valign="top"><a href="Leaving-Debug-Mode.html#index-dbcont"><code>dbcont</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Leaving-Debug-Mode.html">Leaving Debug Mode</a></td></tr>
<tr><td></td><td valign="top"><a href="Call-Stack.html#index-dbdown"><code>dbdown</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Call-Stack.html">Call Stack</a></td></tr>
<tr><td></td><td valign="top"><a href="Call-Stack.html#index-dbdown-1"><code>dbdown</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Call-Stack.html">Call Stack</a></td></tr>
<tr><td></td><td valign="top"><a href="Debug-Mode.html#index-dblist"><code>dblist</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Debug-Mode.html">Debug Mode</a></td></tr>
<tr><td></td><td valign="top"><a href="Debug-Mode.html#index-dblist-1"><code>dblist</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Debug-Mode.html">Debug Mode</a></td></tr>
<tr><td></td><td valign="top"><a href="Functions-of-Multiple-Variables.html#index-dblquad"><code>dblquad</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Functions-of-Multiple-Variables.html">Functions of Multiple Variables</a></td></tr>
<tr><td></td><td valign="top"><a href="Functions-of-Multiple-Variables.html#index-dblquad-1"><code>dblquad</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Functions-of-Multiple-Variables.html">Functions of Multiple Variables</a></td></tr>
<tr><td></td><td valign="top"><a href="Functions-of-Multiple-Variables.html#index-dblquad-2"><code>dblquad</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Functions-of-Multiple-Variables.html">Functions of Multiple Variables</a></td></tr>
<tr><td></td><td valign="top"><a href="Functions-of-Multiple-Variables.html#index-dblquad-3"><code>dblquad</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Functions-of-Multiple-Variables.html">Functions of Multiple Variables</a></td></tr>
<tr><td></td><td valign="top"><a href="Debug-Mode.html#index-dbnext"><code>dbnext</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Debug-Mode.html">Debug Mode</a></td></tr>
<tr><td></td><td valign="top"><a href="Leaving-Debug-Mode.html#index-dbquit"><code>dbquit</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Leaving-Debug-Mode.html">Leaving Debug Mode</a></td></tr>
<tr><td></td><td valign="top"><a href="Leaving-Debug-Mode.html#index-dbquit-1"><code>dbquit</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Leaving-Debug-Mode.html">Leaving Debug Mode</a></td></tr>
<tr><td></td><td valign="top"><a href="Call-Stack.html#index-dbstack"><code>dbstack</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Call-Stack.html">Call Stack</a></td></tr>
<tr><td></td><td valign="top"><a href="Call-Stack.html#index-dbstack-1"><code>dbstack</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Call-Stack.html">Call Stack</a></td></tr>
<tr><td></td><td valign="top"><a href="Call-Stack.html#index-dbstack-2"><code>dbstack</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Call-Stack.html">Call Stack</a></td></tr>
<tr><td></td><td valign="top"><a href="Call-Stack.html#index-dbstack-3"><code>dbstack</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Call-Stack.html">Call Stack</a></td></tr>
<tr><td></td><td valign="top"><a href="Breakpoints.html#index-dbstatus"><code>dbstatus</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Breakpoints.html">Breakpoints</a></td></tr>
<tr><td></td><td valign="top"><a href="Breakpoints.html#index-dbstatus-1"><code>dbstatus</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Breakpoints.html">Breakpoints</a></td></tr>
<tr><td></td><td valign="top"><a href="Breakpoints.html#index-dbstatus-2"><code>dbstatus</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Breakpoints.html">Breakpoints</a></td></tr>
<tr><td></td><td valign="top"><a href="Debug-Mode.html#index-dbstep"><code>dbstep</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Debug-Mode.html">Debug Mode</a></td></tr>
<tr><td></td><td valign="top"><a href="Debug-Mode.html#index-dbstep-1"><code>dbstep</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Debug-Mode.html">Debug Mode</a></td></tr>
<tr><td></td><td valign="top"><a href="Debug-Mode.html#index-dbstep-2"><code>dbstep</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Debug-Mode.html">Debug Mode</a></td></tr>
<tr><td></td><td valign="top"><a href="Debug-Mode.html#index-dbstep-3"><code>dbstep</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Debug-Mode.html">Debug Mode</a></td></tr>
<tr><td></td><td valign="top"><a href="Breakpoints.html#index-dbstop"><code>dbstop</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Breakpoints.html">Breakpoints</a></td></tr>
<tr><td></td><td valign="top"><a href="Breakpoints.html#index-dbstop-1"><code>dbstop</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Breakpoints.html">Breakpoints</a></td></tr>
<tr><td></td><td valign="top"><a href="Breakpoints.html#index-dbstop-2"><code>dbstop</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Breakpoints.html">Breakpoints</a></td></tr>
<tr><td></td><td valign="top"><a href="Breakpoints.html#index-dbstop-3"><code>dbstop</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Breakpoints.html">Breakpoints</a></td></tr>
<tr><td></td><td valign="top"><a href="Breakpoints.html#index-dbstop-4"><code>dbstop</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Breakpoints.html">Breakpoints</a></td></tr>
<tr><td></td><td valign="top"><a href="Breakpoints.html#index-dbstop-5"><code>dbstop</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Breakpoints.html">Breakpoints</a></td></tr>
<tr><td></td><td valign="top"><a href="Breakpoints.html#index-dbstop-6"><code>dbstop</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Breakpoints.html">Breakpoints</a></td></tr>
<tr><td></td><td valign="top"><a href="Breakpoints.html#index-dbstop-7"><code>dbstop</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Breakpoints.html">Breakpoints</a></td></tr>
<tr><td></td><td valign="top"><a href="Breakpoints.html#index-dbstop-8"><code>dbstop</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Breakpoints.html">Breakpoints</a></td></tr>
<tr><td></td><td valign="top"><a href="Breakpoints.html#index-dbstop-9"><code>dbstop</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Breakpoints.html">Breakpoints</a></td></tr>
<tr><td></td><td valign="top"><a href="Breakpoints.html#index-dbstop-10"><code>dbstop</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Breakpoints.html">Breakpoints</a></td></tr>
<tr><td></td><td valign="top"><a href="Breakpoints.html#index-dbstop-11"><code>dbstop</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Breakpoints.html">Breakpoints</a></td></tr>
<tr><td></td><td valign="top"><a href="Debug-Mode.html#index-dbtype"><code>dbtype</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Debug-Mode.html">Debug Mode</a></td></tr>
<tr><td></td><td valign="top"><a href="Debug-Mode.html#index-dbtype-1"><code>dbtype</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Debug-Mode.html">Debug Mode</a></td></tr>
<tr><td></td><td valign="top"><a href="Debug-Mode.html#index-dbtype-2"><code>dbtype</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Debug-Mode.html">Debug Mode</a></td></tr>
<tr><td></td><td valign="top"><a href="Debug-Mode.html#index-dbtype-3"><code>dbtype</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Debug-Mode.html">Debug Mode</a></td></tr>
<tr><td></td><td valign="top"><a href="Debug-Mode.html#index-dbtype-4"><code>dbtype</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Debug-Mode.html">Debug Mode</a></td></tr>
<tr><td></td><td valign="top"><a href="Debug-Mode.html#index-dbtype-5"><code>dbtype</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Debug-Mode.html">Debug Mode</a></td></tr>
<tr><td></td><td valign="top"><a href="Debug-Mode.html#index-dbtype-6"><code>dbtype</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Debug-Mode.html">Debug Mode</a></td></tr>
<tr><td></td><td valign="top"><a href="Debug-Mode.html#index-dbtype-7"><code>dbtype</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Debug-Mode.html">Debug Mode</a></td></tr>
<tr><td></td><td valign="top"><a href="Call-Stack.html#index-dbup"><code>dbup</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Call-Stack.html">Call Stack</a></td></tr>
<tr><td></td><td valign="top"><a href="Call-Stack.html#index-dbup-1"><code>dbup</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Call-Stack.html">Call Stack</a></td></tr>
<tr><td></td><td valign="top"><a href="Debug-Mode.html#index-dbwhere"><code>dbwhere</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Debug-Mode.html">Debug Mode</a></td></tr>
<tr><td></td><td valign="top"><a href="Variable_002dlength-Return-Lists.html#index-deal"><code>deal</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Variable_002dlength-Return-Lists.html">Variable-length Return Lists</a></td></tr>
<tr><td></td><td valign="top"><a href="Variable_002dlength-Return-Lists.html#index-deal-1"><code>deal</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Variable_002dlength-Return-Lists.html">Variable-length Return Lists</a></td></tr>
<tr><td></td><td valign="top"><a href="Common-String-Operations.html#index-deblank"><code>deblank</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Common-String-Operations.html">Common String Operations</a></td></tr>
<tr><td></td><td valign="top"><a href="Java-Interface-Functions.html#index-debug_005fjava"><code>debug_java</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Java-Interface-Functions.html">Java Interface Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Java-Interface-Functions.html#index-debug_005fjava-1"><code>debug_java</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Java-Interface-Functions.html">Java Interface Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Java-Interface-Functions.html#index-debug_005fjava-2"><code>debug_java</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Java-Interface-Functions.html">Java Interface Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Entering-Debug-Mode.html#index-debug_005fon_005ferror"><code>debug_on_error</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Entering-Debug-Mode.html">Entering Debug Mode</a></td></tr>
<tr><td></td><td valign="top"><a href="Entering-Debug-Mode.html#index-debug_005fon_005ferror-1"><code>debug_on_error</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Entering-Debug-Mode.html">Entering Debug Mode</a></td></tr>
<tr><td></td><td valign="top"><a href="Entering-Debug-Mode.html#index-debug_005fon_005ferror-2"><code>debug_on_error</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Entering-Debug-Mode.html">Entering Debug Mode</a></td></tr>
<tr><td></td><td valign="top"><a href="Entering-Debug-Mode.html#index-debug_005fon_005finterrupt"><code>debug_on_interrupt</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Entering-Debug-Mode.html">Entering Debug Mode</a></td></tr>
<tr><td></td><td valign="top"><a href="Entering-Debug-Mode.html#index-debug_005fon_005finterrupt-1"><code>debug_on_interrupt</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Entering-Debug-Mode.html">Entering Debug Mode</a></td></tr>
<tr><td></td><td valign="top"><a href="Entering-Debug-Mode.html#index-debug_005fon_005finterrupt-2"><code>debug_on_interrupt</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Entering-Debug-Mode.html">Entering Debug Mode</a></td></tr>
<tr><td></td><td valign="top"><a href="Entering-Debug-Mode.html#index-debug_005fon_005fwarning"><code>debug_on_warning</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Entering-Debug-Mode.html">Entering Debug Mode</a></td></tr>
<tr><td></td><td valign="top"><a href="Entering-Debug-Mode.html#index-debug_005fon_005fwarning-1"><code>debug_on_warning</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Entering-Debug-Mode.html">Entering Debug Mode</a></td></tr>
<tr><td></td><td valign="top"><a href="Entering-Debug-Mode.html#index-debug_005fon_005fwarning-2"><code>debug_on_warning</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Entering-Debug-Mode.html">Entering Debug Mode</a></td></tr>
<tr><td></td><td valign="top"><a href="Numerical-Data-and-Strings.html#index-dec2base"><code>dec2base</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Numerical-Data-and-Strings.html">Numerical Data and Strings</a></td></tr>
<tr><td></td><td valign="top"><a href="Numerical-Data-and-Strings.html#index-dec2base-1"><code>dec2base</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Numerical-Data-and-Strings.html">Numerical Data and Strings</a></td></tr>
<tr><td></td><td valign="top"><a href="Numerical-Data-and-Strings.html#index-dec2bin"><code>dec2bin</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Numerical-Data-and-Strings.html">Numerical Data and Strings</a></td></tr>
<tr><td></td><td valign="top"><a href="Numerical-Data-and-Strings.html#index-dec2bin-1"><code>dec2bin</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Numerical-Data-and-Strings.html">Numerical Data and Strings</a></td></tr>
<tr><td></td><td valign="top"><a href="Numerical-Data-and-Strings.html#index-dec2hex"><code>dec2hex</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Numerical-Data-and-Strings.html">Numerical Data and Strings</a></td></tr>
<tr><td></td><td valign="top"><a href="Numerical-Data-and-Strings.html#index-dec2hex-1"><code>dec2hex</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Numerical-Data-and-Strings.html">Numerical Data and Strings</a></td></tr>
<tr><td></td><td valign="top"><a href="Matlab_002dcompatible-solvers.html#index-decic"><code>decic</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Matlab_002dcompatible-solvers.html">Matlab-compatible solvers</a></td></tr>
<tr><td></td><td valign="top"><a href="Matlab_002dcompatible-solvers.html#index-decic-1"><code>decic</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Matlab_002dcompatible-solvers.html">Matlab-compatible solvers</a></td></tr>
<tr><td></td><td valign="top"><a href="Matlab_002dcompatible-solvers.html#index-decic-2"><code>decic</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Matlab_002dcompatible-solvers.html">Matlab-compatible solvers</a></td></tr>
<tr><td></td><td valign="top"><a href="Products-of-Polynomials.html#index-deconv"><code>deconv</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Products-of-Polynomials.html">Products of Polynomials</a></td></tr>
<tr><td></td><td valign="top"><a href="Products-of-Polynomials.html#index-deconv-1"><code>deconv</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Products-of-Polynomials.html">Products of Polynomials</a></td></tr>
<tr><td></td><td valign="top"><a href="Trigonometry.html#index-deg2rad"><code>deg2rad</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Trigonometry.html">Trigonometry</a></td></tr>
<tr><td></td><td valign="top"><a href="Utility-Functions.html#index-del2"><code>del2</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Utility-Functions.html">Utility Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Utility-Functions.html#index-del2-1"><code>del2</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Utility-Functions.html">Utility Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Utility-Functions.html#index-del2-2"><code>del2</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Utility-Functions.html">Utility Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Delaunay-Triangulation.html#index-delaunay"><code>delaunay</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Delaunay-Triangulation.html">Delaunay Triangulation</a></td></tr>
<tr><td></td><td valign="top"><a href="Delaunay-Triangulation.html#index-delaunay-1"><code>delaunay</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Delaunay-Triangulation.html">Delaunay Triangulation</a></td></tr>
<tr><td></td><td valign="top"><a href="Delaunay-Triangulation.html#index-delaunay-2"><code>delaunay</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Delaunay-Triangulation.html">Delaunay Triangulation</a></td></tr>
<tr><td></td><td valign="top"><a href="Delaunay-Triangulation.html#index-delaunay-3"><code>delaunay</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Delaunay-Triangulation.html">Delaunay Triangulation</a></td></tr>
<tr><td></td><td valign="top"><a href="Delaunay-Triangulation.html#index-delaunayn"><code>delaunayn</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Delaunay-Triangulation.html">Delaunay Triangulation</a></td></tr>
<tr><td></td><td valign="top"><a href="Delaunay-Triangulation.html#index-delaunayn-1"><code>delaunayn</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Delaunay-Triangulation.html">Delaunay Triangulation</a></td></tr>
<tr><td></td><td valign="top"><a href="Manipulation-of-Plot-Windows.html#index-delete"><code>delete</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Manipulation-of-Plot-Windows.html">Manipulation of Plot Windows</a></td></tr>
<tr><td></td><td valign="top"><a href="Manipulation-of-Plot-Windows.html#index-delete-1"><code>delete</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Manipulation-of-Plot-Windows.html">Manipulation of Plot Windows</a></td></tr>
<tr><td></td><td valign="top"><a href="Manipulation-of-Plot-Windows.html#index-delete-2"><code>delete</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Manipulation-of-Plot-Windows.html">Manipulation of Plot Windows</a></td></tr>
<tr><td></td><td valign="top"><a href="FTP-Objects.html#index-delete-3"><code>delete</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="FTP-Objects.html">FTP Objects</a></td></tr>
<tr><td></td><td valign="top"><a href="Object-Groups.html#index-dellistener"><code>dellistener</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Object-Groups.html">Object Groups</a></td></tr>
<tr><td></td><td valign="top"><a href="Demonstration-Functions.html#index-demo"><code>demo</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Demonstration-Functions.html">Demonstration Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Demonstration-Functions.html#index-demo-1"><code>demo</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Demonstration-Functions.html">Demonstration Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Demonstration-Functions.html#index-demo-2"><code>demo</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Demonstration-Functions.html">Demonstration Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Demonstration-Functions.html#index-demo-3"><code>demo</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Demonstration-Functions.html">Demonstration Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Basic-Matrix-Functions.html#index-det"><code>det</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Basic-Matrix-Functions.html">Basic Matrix Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Basic-Matrix-Functions.html#index-det-1"><code>det</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Basic-Matrix-Functions.html">Basic Matrix Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Signal-Processing.html#index-detrend"><code>detrend</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Signal-Processing.html">Signal Processing</a></td></tr>
<tr><td></td><td valign="top"><a href="Rearranging-Matrices.html#index-diag"><code>diag</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Rearranging-Matrices.html">Rearranging Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Rearranging-Matrices.html#index-diag-1"><code>diag</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Rearranging-Matrices.html">Rearranging Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Rearranging-Matrices.html#index-diag-2"><code>diag</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Rearranging-Matrices.html">Rearranging Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Rearranging-Matrices.html#index-diag-3"><code>diag</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Rearranging-Matrices.html">Rearranging Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Rearranging-Matrices.html#index-diag-4"><code>diag</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Rearranging-Matrices.html">Rearranging Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="I_002fO-Dialogs.html#index-dialog"><code>dialog</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="I_002fO-Dialogs.html">I/O Dialogs</a></td></tr>
<tr><td></td><td valign="top"><a href="I_002fO-Dialogs.html#index-dialog-1"><code>dialog</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="I_002fO-Dialogs.html">I/O Dialogs</a></td></tr>
<tr><td></td><td valign="top"><a href="A-Sample-Command-Description.html#index-diary"><code>diary</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="A-Sample-Command-Description.html">A Sample Command Description</a></td></tr>
<tr><td></td><td valign="top"><a href="A-Sample-Command-Description.html#index-diary-1"><code>diary</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="A-Sample-Command-Description.html">A Sample Command Description</a></td></tr>
<tr><td></td><td valign="top"><a href="A-Sample-Command-Description.html#index-diary-2"><code>diary</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="A-Sample-Command-Description.html">A Sample Command Description</a></td></tr>
<tr><td></td><td valign="top"><a href="A-Sample-Command-Description.html#index-diary-3"><code>diary</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="A-Sample-Command-Description.html">A Sample Command Description</a></td></tr>
<tr><td></td><td valign="top"><a href="A-Sample-Command-Description.html#index-diary-4"><code>diary</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="A-Sample-Command-Description.html">A Sample Command Description</a></td></tr>
<tr><td></td><td valign="top"><a href="Diary-and-Echo-Commands.html#index-diary-5"><code>diary</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Diary-and-Echo-Commands.html">Diary and Echo Commands</a></td></tr>
<tr><td></td><td valign="top"><a href="Diary-and-Echo-Commands.html#index-diary-6"><code>diary</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Diary-and-Echo-Commands.html">Diary and Echo Commands</a></td></tr>
<tr><td></td><td valign="top"><a href="Diary-and-Echo-Commands.html#index-diary-7"><code>diary</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Diary-and-Echo-Commands.html">Diary and Echo Commands</a></td></tr>
<tr><td></td><td valign="top"><a href="Diary-and-Echo-Commands.html#index-diary-8"><code>diary</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Diary-and-Echo-Commands.html">Diary and Echo Commands</a></td></tr>
<tr><td></td><td valign="top"><a href="Diary-and-Echo-Commands.html#index-diary-9"><code>diary</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Diary-and-Echo-Commands.html">Diary and Echo Commands</a></td></tr>
<tr><td></td><td valign="top"><a href="Finding-Elements-and-Checking-Conditions.html#index-diff"><code>diff</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Finding-Elements-and-Checking-Conditions.html">Finding Elements and Checking Conditions</a></td></tr>
<tr><td></td><td valign="top"><a href="Finding-Elements-and-Checking-Conditions.html#index-diff-1"><code>diff</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Finding-Elements-and-Checking-Conditions.html">Finding Elements and Checking Conditions</a></td></tr>
<tr><td></td><td valign="top"><a href="Finding-Elements-and-Checking-Conditions.html#index-diff-2"><code>diff</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Finding-Elements-and-Checking-Conditions.html">Finding Elements and Checking Conditions</a></td></tr>
<tr><td></td><td valign="top"><a href="Signal-Processing.html#index-diffpara"><code>diffpara</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Signal-Processing.html">Signal Processing</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-diffuse"><code>diffuse</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Matrices-and-Arrays-in-Oct_002dFiles.html#index-dims"><code>dims</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Matrices-and-Arrays-in-Oct_002dFiles.html">Matrices and Arrays in Oct-Files</a></td></tr>
<tr><td></td><td valign="top"><a href="FTP-Objects.html#index-dir"><code>dir</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="FTP-Objects.html">FTP Objects</a></td></tr>
<tr><td></td><td valign="top"><a href="Current-Working-Directory.html#index-dir-1"><code>dir</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Current-Working-Directory.html">Current Working Directory</a></td></tr>
<tr><td></td><td valign="top"><a href="Current-Working-Directory.html#index-dir-2"><code>dir</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Current-Working-Directory.html">Current Working Directory</a></td></tr>
<tr><td></td><td valign="top"><a href="Current-Working-Directory.html#index-dir-3"><code>dir</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Current-Working-Directory.html">Current Working Directory</a></td></tr>
<tr><td></td><td valign="top"><a href="Manipulating-the-Load-Path.html#index-dir_005fencoding"><code>dir_encoding</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Manipulating-the-Load-Path.html">Manipulating the Load Path</a></td></tr>
<tr><td></td><td valign="top"><a href="Manipulating-the-Load-Path.html#index-dir_005fencoding-1"><code>dir_encoding</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Manipulating-the-Load-Path.html">Manipulating the Load Path</a></td></tr>
<tr><td></td><td valign="top"><a href="Manipulating-the-Load-Path.html#index-dir_005fencoding-2"><code>dir_encoding</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Manipulating-the-Load-Path.html">Manipulating the Load Path</a></td></tr>
<tr><td></td><td valign="top"><a href="Manipulating-the-Load-Path.html#index-dir_005fin_005floadpath"><code>dir_in_loadpath</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Manipulating-the-Load-Path.html">Manipulating the Load Path</a></td></tr>
<tr><td></td><td valign="top"><a href="Manipulating-the-Load-Path.html#index-dir_005fin_005floadpath-1"><code>dir_in_loadpath</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Manipulating-the-Load-Path.html">Manipulating the Load Path</a></td></tr>
<tr><td></td><td valign="top"><a href="Distributions.html#index-discrete_005fcdf"><code>discrete_cdf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Distributions.html">Distributions</a></td></tr>
<tr><td></td><td valign="top"><a href="Distributions.html#index-discrete_005finv"><code>discrete_inv</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Distributions.html">Distributions</a></td></tr>
<tr><td></td><td valign="top"><a href="Distributions.html#index-discrete_005fpdf"><code>discrete_pdf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Distributions.html">Distributions</a></td></tr>
<tr><td></td><td valign="top"><a href="Random-Number-Generation.html#index-discrete_005frnd"><code>discrete_rnd</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Random-Number-Generation.html">Random Number Generation</a></td></tr>
<tr><td></td><td valign="top"><a href="Random-Number-Generation.html#index-discrete_005frnd-1"><code>discrete_rnd</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Random-Number-Generation.html">Random Number Generation</a></td></tr>
<tr><td></td><td valign="top"><a href="Random-Number-Generation.html#index-discrete_005frnd-2"><code>discrete_rnd</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Random-Number-Generation.html">Random Number Generation</a></td></tr>
<tr><td></td><td valign="top"><a href="Random-Number-Generation.html#index-discrete_005frnd-3"><code>discrete_rnd</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Random-Number-Generation.html">Random Number Generation</a></td></tr>
<tr><td></td><td valign="top"><a href="Terminal-Output.html#index-disp"><code>disp</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Terminal-Output.html">Terminal Output</a></td></tr>
<tr><td></td><td valign="top"><a href="Terminal-Output.html#index-disp-1"><code>disp</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Terminal-Output.html">Terminal Output</a></td></tr>
<tr><td></td><td valign="top"><a href="Inheritance-and-Aggregation.html#index-display"><code>display</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Inheritance-and-Aggregation.html">Inheritance and Aggregation</a></td></tr>
<tr><td></td><td valign="top"><a href="Utility-Functions.html#index-divergence"><code>divergence</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Utility-Functions.html">Utility Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Utility-Functions.html#index-divergence-1"><code>divergence</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Utility-Functions.html">Utility Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Utility-Functions.html#index-divergence-2"><code>divergence</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Utility-Functions.html">Utility Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Utility-Functions.html#index-divergence-3"><code>divergence</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Utility-Functions.html">Utility Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Simple-File-I_002fO.html#index-dlmread"><code>dlmread</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Simple-File-I_002fO.html">Simple File I/O</a></td></tr>
<tr><td></td><td valign="top"><a href="Simple-File-I_002fO.html#index-dlmread-1"><code>dlmread</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Simple-File-I_002fO.html">Simple File I/O</a></td></tr>
<tr><td></td><td valign="top"><a href="Simple-File-I_002fO.html#index-dlmread-2"><code>dlmread</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Simple-File-I_002fO.html">Simple File I/O</a></td></tr>
<tr><td></td><td valign="top"><a href="Simple-File-I_002fO.html#index-dlmread-3"><code>dlmread</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Simple-File-I_002fO.html">Simple File I/O</a></td></tr>
<tr><td></td><td valign="top"><a href="Simple-File-I_002fO.html#index-dlmread-4"><code>dlmread</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Simple-File-I_002fO.html">Simple File I/O</a></td></tr>
<tr><td></td><td valign="top"><a href="Simple-File-I_002fO.html#index-dlmwrite"><code>dlmwrite</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Simple-File-I_002fO.html">Simple File I/O</a></td></tr>
<tr><td></td><td valign="top"><a href="Simple-File-I_002fO.html#index-dlmwrite-1"><code>dlmwrite</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Simple-File-I_002fO.html">Simple File I/O</a></td></tr>
<tr><td></td><td valign="top"><a href="Simple-File-I_002fO.html#index-dlmwrite-2"><code>dlmwrite</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Simple-File-I_002fO.html">Simple File I/O</a></td></tr>
<tr><td></td><td valign="top"><a href="Simple-File-I_002fO.html#index-dlmwrite-3"><code>dlmwrite</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Simple-File-I_002fO.html">Simple File I/O</a></td></tr>
<tr><td></td><td valign="top"><a href="Simple-File-I_002fO.html#index-dlmwrite-4"><code>dlmwrite</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Simple-File-I_002fO.html">Simple File I/O</a></td></tr>
<tr><td></td><td valign="top"><a href="Mathematical-Considerations.html#index-dmperm"><code>dmperm</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Mathematical-Considerations.html">Mathematical Considerations</a></td></tr>
<tr><td></td><td valign="top"><a href="Mathematical-Considerations.html#index-dmperm-1"><code>dmperm</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Mathematical-Considerations.html">Mathematical Considerations</a></td></tr>
<tr><td></td><td valign="top"><a href="Getting-Help.html#index-doc"><code>doc</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Getting-Help.html">Getting Help</a></td></tr>
<tr><td></td><td valign="top"><a href="Getting-Help.html#index-doc-1"><code>doc</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Getting-Help.html">Getting Help</a></td></tr>
<tr><td></td><td valign="top"><a href="Getting-Help.html#index-doc_005fcache_005fcreate"><code>doc_cache_create</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Getting-Help.html">Getting Help</a></td></tr>
<tr><td></td><td valign="top"><a href="Getting-Help.html#index-doc_005fcache_005fcreate-1"><code>doc_cache_create</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Getting-Help.html">Getting Help</a></td></tr>
<tr><td></td><td valign="top"><a href="Getting-Help.html#index-doc_005fcache_005fcreate-2"><code>doc_cache_create</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Getting-Help.html">Getting Help</a></td></tr>
<tr><td></td><td valign="top"><a href="Getting-Help.html#index-doc_005fcache_005ffile"><code>doc_cache_file</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Getting-Help.html">Getting Help</a></td></tr>
<tr><td></td><td valign="top"><a href="Getting-Help.html#index-doc_005fcache_005ffile-1"><code>doc_cache_file</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Getting-Help.html">Getting Help</a></td></tr>
<tr><td></td><td valign="top"><a href="Getting-Help.html#index-doc_005fcache_005ffile-2"><code>doc_cache_file</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Getting-Help.html">Getting Help</a></td></tr>
<tr><td></td><td valign="top"><a href="Controlling-Subprocesses.html#index-dos"><code>dos</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Controlling-Subprocesses.html">Controlling Subprocesses</a></td></tr>
<tr><td></td><td valign="top"><a href="Controlling-Subprocesses.html#index-dos-1"><code>dos</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Controlling-Subprocesses.html">Controlling Subprocesses</a></td></tr>
<tr><td></td><td valign="top"><a href="Controlling-Subprocesses.html#index-dos-2"><code>dos</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Controlling-Subprocesses.html">Controlling Subprocesses</a></td></tr>
<tr><td></td><td valign="top"><a href="Controlling-Subprocesses.html#index-dos-3"><code>dos</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Controlling-Subprocesses.html">Controlling Subprocesses</a></td></tr>
<tr><td></td><td valign="top"><a href="Utility-Functions.html#index-dot"><code>dot</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Utility-Functions.html">Utility Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Numeric-Data-Types.html#index-double"><code>double</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Numeric-Data-Types.html">Numeric Data Types</a></td></tr>
<tr><td></td><td valign="top"><a href="Common-String-Operations.html#index-do_005fstring_005fescapes"><code>do_string_escapes</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Common-String-Operations.html">Common String Operations</a></td></tr>
<tr><td></td><td valign="top"><a href="Manipulation-of-Plot-Windows.html#index-drawnow"><code>drawnow</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Manipulation-of-Plot-Windows.html">Manipulation of Plot Windows</a></td></tr>
<tr><td></td><td valign="top"><a href="Manipulation-of-Plot-Windows.html#index-drawnow-1"><code>drawnow</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Manipulation-of-Plot-Windows.html">Manipulation of Plot Windows</a></td></tr>
<tr><td></td><td valign="top"><a href="Manipulation-of-Plot-Windows.html#index-drawnow-2"><code>drawnow</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Manipulation-of-Plot-Windows.html">Manipulation of Plot Windows</a></td></tr>
<tr><td></td><td valign="top"><a href="Identifying-Points-in-Triangulation.html#index-dsearch"><code>dsearch</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Identifying-Points-in-Triangulation.html">Identifying Points in Triangulation</a></td></tr>
<tr><td></td><td valign="top"><a href="Identifying-Points-in-Triangulation.html#index-dsearch-1"><code>dsearch</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Identifying-Points-in-Triangulation.html">Identifying Points in Triangulation</a></td></tr>
<tr><td></td><td valign="top"><a href="Identifying-Points-in-Triangulation.html#index-dsearchn"><code>dsearchn</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Identifying-Points-in-Triangulation.html">Identifying Points in Triangulation</a></td></tr>
<tr><td></td><td valign="top"><a href="Identifying-Points-in-Triangulation.html#index-dsearchn-1"><code>dsearchn</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Identifying-Points-in-Triangulation.html">Identifying Points in Triangulation</a></td></tr>
<tr><td></td><td valign="top"><a href="Identifying-Points-in-Triangulation.html#index-dsearchn-2"><code>dsearchn</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Identifying-Points-in-Triangulation.html">Identifying Points in Triangulation</a></td></tr>
<tr><td></td><td valign="top"><a href="Identifying-Points-in-Triangulation.html#index-dsearchn-3"><code>dsearchn</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Identifying-Points-in-Triangulation.html">Identifying Points in Triangulation</a></td></tr>
<tr><td></td><td valign="top"><a href="Controlling-Subprocesses.html#index-dup2"><code>dup2</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Controlling-Subprocesses.html">Controlling Subprocesses</a></td></tr>
<tr><td></td><td valign="top"><a href="Special-Functions.html#index-duplication_005fmatrix"><code>duplication_matrix</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Special-Functions.html">Special Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Signal-Processing.html#index-durbinlevinson"><code>durbinlevinson</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Signal-Processing.html">Signal Processing</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th id="Function-Index_fn_letter-E">E</th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="Mathematical-Constants.html#index-e"><code>e</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Mathematical-Constants.html">Mathematical Constants</a></td></tr>
<tr><td></td><td valign="top"><a href="Mathematical-Constants.html#index-e-1"><code>e</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Mathematical-Constants.html">Mathematical Constants</a></td></tr>
<tr><td></td><td valign="top"><a href="Mathematical-Constants.html#index-e-2"><code>e</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Mathematical-Constants.html">Mathematical Constants</a></td></tr>
<tr><td></td><td valign="top"><a href="Mathematical-Constants.html#index-e-3"><code>e</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Mathematical-Constants.html">Mathematical Constants</a></td></tr>
<tr><td></td><td valign="top"><a href="Mathematical-Constants.html#index-e-4"><code>e</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Mathematical-Constants.html">Mathematical Constants</a></td></tr>
<tr><td></td><td valign="top"><a href="Diary-and-Echo-Commands.html#index-echo"><code>echo</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Diary-and-Echo-Commands.html">Diary and Echo Commands</a></td></tr>
<tr><td></td><td valign="top"><a href="Diary-and-Echo-Commands.html#index-echo-1"><code>echo</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Diary-and-Echo-Commands.html">Diary and Echo Commands</a></td></tr>
<tr><td></td><td valign="top"><a href="Diary-and-Echo-Commands.html#index-echo-2"><code>echo</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Diary-and-Echo-Commands.html">Diary and Echo Commands</a></td></tr>
<tr><td></td><td valign="top"><a href="Diary-and-Echo-Commands.html#index-echo-3"><code>echo</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Diary-and-Echo-Commands.html">Diary and Echo Commands</a></td></tr>
<tr><td></td><td valign="top"><a href="Diary-and-Echo-Commands.html#index-echo-4"><code>echo</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Diary-and-Echo-Commands.html">Diary and Echo Commands</a></td></tr>
<tr><td></td><td valign="top"><a href="Diary-and-Echo-Commands.html#index-echo-5"><code>echo</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Diary-and-Echo-Commands.html">Diary and Echo Commands</a></td></tr>
<tr><td></td><td valign="top"><a href="Diary-and-Echo-Commands.html#index-echo-6"><code>echo</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Diary-and-Echo-Commands.html">Diary and Echo Commands</a></td></tr>
<tr><td></td><td valign="top"><a href="Function-Files.html#index-edit"><code>edit</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Function-Files.html">Function Files</a></td></tr>
<tr><td></td><td valign="top"><a href="Function-Files.html#index-edit-1"><code>edit</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Function-Files.html">Function Files</a></td></tr>
<tr><td></td><td valign="top"><a href="Function-Files.html#index-edit-2"><code>edit</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Function-Files.html">Function Files</a></td></tr>
<tr><td></td><td valign="top"><a href="Function-Files.html#index-edit-3"><code>edit</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Function-Files.html">Function Files</a></td></tr>
<tr><td></td><td valign="top"><a href="Commands-for-History.html#index-EDITOR"><code>EDITOR</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Commands-for-History.html">Commands for History</a></td></tr>
<tr><td></td><td valign="top"><a href="Commands-for-History.html#index-EDITOR-1"><code>EDITOR</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Commands-for-History.html">Commands for History</a></td></tr>
<tr><td></td><td valign="top"><a href="Commands-for-History.html#index-EDITOR-2"><code>EDITOR</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Commands-for-History.html">Commands for History</a></td></tr>
<tr><td></td><td valign="top"><a href="Commands-for-History.html#index-edit_005fhistory"><code>edit_history</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Commands-for-History.html">Commands for History</a></td></tr>
<tr><td></td><td valign="top"><a href="Commands-for-History.html#index-edit_005fhistory-1"><code>edit_history</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Commands-for-History.html">Commands for History</a></td></tr>
<tr><td></td><td valign="top"><a href="Commands-for-History.html#index-edit_005fhistory-2"><code>edit_history</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Commands-for-History.html">Commands for History</a></td></tr>
<tr><td></td><td valign="top"><a href="Basic-Matrix-Functions.html#index-eig"><code>eig</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Basic-Matrix-Functions.html">Basic Matrix Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Basic-Matrix-Functions.html#index-eig-1"><code>eig</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Basic-Matrix-Functions.html">Basic Matrix Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Basic-Matrix-Functions.html#index-eig-2"><code>eig</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Basic-Matrix-Functions.html">Basic Matrix Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Basic-Matrix-Functions.html#index-eig-3"><code>eig</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Basic-Matrix-Functions.html">Basic Matrix Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Basic-Matrix-Functions.html#index-eig-4"><code>eig</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Basic-Matrix-Functions.html">Basic Matrix Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Basic-Matrix-Functions.html#index-eig-5"><code>eig</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Basic-Matrix-Functions.html">Basic Matrix Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Basic-Matrix-Functions.html#index-eig-6"><code>eig</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Basic-Matrix-Functions.html">Basic Matrix Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Basic-Matrix-Functions.html#index-eig-7"><code>eig</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Basic-Matrix-Functions.html">Basic Matrix Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Basic-Matrix-Functions.html#index-eig-8"><code>eig</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Basic-Matrix-Functions.html">Basic Matrix Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Sparse-Linear-Algebra.html#index-eigs"><code>eigs</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Sparse-Linear-Algebra.html">Sparse Linear Algebra</a></td></tr>
<tr><td></td><td valign="top"><a href="Sparse-Linear-Algebra.html#index-eigs-1"><code>eigs</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Sparse-Linear-Algebra.html">Sparse Linear Algebra</a></td></tr>
<tr><td></td><td valign="top"><a href="Sparse-Linear-Algebra.html#index-eigs-2"><code>eigs</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Sparse-Linear-Algebra.html">Sparse Linear Algebra</a></td></tr>
<tr><td></td><td valign="top"><a href="Sparse-Linear-Algebra.html#index-eigs-3"><code>eigs</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Sparse-Linear-Algebra.html">Sparse Linear Algebra</a></td></tr>
<tr><td></td><td valign="top"><a href="Sparse-Linear-Algebra.html#index-eigs-4"><code>eigs</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Sparse-Linear-Algebra.html">Sparse Linear Algebra</a></td></tr>
<tr><td></td><td valign="top"><a href="Sparse-Linear-Algebra.html#index-eigs-5"><code>eigs</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Sparse-Linear-Algebra.html">Sparse Linear Algebra</a></td></tr>
<tr><td></td><td valign="top"><a href="Sparse-Linear-Algebra.html#index-eigs-6"><code>eigs</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Sparse-Linear-Algebra.html">Sparse Linear Algebra</a></td></tr>
<tr><td></td><td valign="top"><a href="Sparse-Linear-Algebra.html#index-eigs-7"><code>eigs</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Sparse-Linear-Algebra.html">Sparse Linear Algebra</a></td></tr>
<tr><td></td><td valign="top"><a href="Sparse-Linear-Algebra.html#index-eigs-8"><code>eigs</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Sparse-Linear-Algebra.html">Sparse Linear Algebra</a></td></tr>
<tr><td></td><td valign="top"><a href="Sparse-Linear-Algebra.html#index-eigs-9"><code>eigs</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Sparse-Linear-Algebra.html">Sparse Linear Algebra</a></td></tr>
<tr><td></td><td valign="top"><a href="Sparse-Linear-Algebra.html#index-eigs-10"><code>eigs</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Sparse-Linear-Algebra.html">Sparse Linear Algebra</a></td></tr>
<tr><td></td><td valign="top"><a href="Sparse-Linear-Algebra.html#index-eigs-11"><code>eigs</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Sparse-Linear-Algebra.html">Sparse Linear Algebra</a></td></tr>
<tr><td></td><td valign="top"><a href="Sparse-Linear-Algebra.html#index-eigs-12"><code>eigs</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Sparse-Linear-Algebra.html">Sparse Linear Algebra</a></td></tr>
<tr><td></td><td valign="top"><a href="Sparse-Linear-Algebra.html#index-eigs-13"><code>eigs</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Sparse-Linear-Algebra.html">Sparse Linear Algebra</a></td></tr>
<tr><td></td><td valign="top"><a href="Sparse-Linear-Algebra.html#index-eigs-14"><code>eigs</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Sparse-Linear-Algebra.html">Sparse Linear Algebra</a></td></tr>
<tr><td></td><td valign="top"><a href="Sparse-Linear-Algebra.html#index-eigs-15"><code>eigs</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Sparse-Linear-Algebra.html">Sparse Linear Algebra</a></td></tr>
<tr><td></td><td valign="top"><a href="Sparse-Linear-Algebra.html#index-eigs-16"><code>eigs</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Sparse-Linear-Algebra.html">Sparse Linear Algebra</a></td></tr>
<tr><td></td><td valign="top"><a href="Sparse-Linear-Algebra.html#index-eigs-17"><code>eigs</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Sparse-Linear-Algebra.html">Sparse Linear Algebra</a></td></tr>
<tr><td></td><td valign="top"><a href="Matrices-and-Arrays-in-Oct_002dFiles.html#index-elem"><code>elem</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Matrices-and-Arrays-in-Oct_002dFiles.html">Matrices and Arrays in Oct-Files</a></td></tr>
<tr><td></td><td valign="top"><a href="Special-Functions.html#index-ellipj"><code>ellipj</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Special-Functions.html">Special Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Special-Functions.html#index-ellipj-1"><code>ellipj</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Special-Functions.html">Special Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Special-Functions.html#index-ellipke"><code>ellipke</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Special-Functions.html">Special Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Special-Functions.html#index-ellipke-1"><code>ellipke</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Special-Functions.html">Special Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Special-Functions.html#index-ellipke-2"><code>ellipke</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Special-Functions.html">Special Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002ddimensional-Geometric-Shapes.html#index-ellipsoid"><code>ellipsoid</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002ddimensional-Geometric-Shapes.html">Three-dimensional Geometric Shapes</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002ddimensional-Geometric-Shapes.html#index-ellipsoid-1"><code>ellipsoid</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002ddimensional-Geometric-Shapes.html">Three-dimensional Geometric Shapes</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002ddimensional-Geometric-Shapes.html#index-ellipsoid-2"><code>ellipsoid</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002ddimensional-Geometric-Shapes.html">Three-dimensional Geometric Shapes</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002ddimensional-Geometric-Shapes.html#index-ellipsoid-3"><code>ellipsoid</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002ddimensional-Geometric-Shapes.html">Three-dimensional Geometric Shapes</a></td></tr>
<tr><td></td><td valign="top"><a href="Distributions.html#index-empirical_005fcdf"><code>empirical_cdf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Distributions.html">Distributions</a></td></tr>
<tr><td></td><td valign="top"><a href="Distributions.html#index-empirical_005finv"><code>empirical_inv</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Distributions.html">Distributions</a></td></tr>
<tr><td></td><td valign="top"><a href="Distributions.html#index-empirical_005fpdf"><code>empirical_pdf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Distributions.html">Distributions</a></td></tr>
<tr><td></td><td valign="top"><a href="Random-Number-Generation.html#index-empirical_005frnd"><code>empirical_rnd</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Random-Number-Generation.html">Random Number Generation</a></td></tr>
<tr><td></td><td valign="top"><a href="Random-Number-Generation.html#index-empirical_005frnd-1"><code>empirical_rnd</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Random-Number-Generation.html">Random Number Generation</a></td></tr>
<tr><td></td><td valign="top"><a href="Random-Number-Generation.html#index-empirical_005frnd-2"><code>empirical_rnd</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Random-Number-Generation.html">Random Number Generation</a></td></tr>
<tr><td></td><td valign="top"><a href="Random-Number-Generation.html#index-empirical_005frnd-3"><code>empirical_rnd</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Random-Number-Generation.html">Random Number Generation</a></td></tr>
<tr><td></td><td valign="top"><a href="Group-Database-Functions.html#index-endgrent"><code>endgrent</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Group-Database-Functions.html">Group Database Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Password-Database-Functions.html#index-endpwent"><code>endpwent</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Password-Database-Functions.html">Password Database Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Searching-in-Strings.html#index-endsWith"><code>endsWith</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Searching-in-Strings.html">Searching in Strings</a></td></tr>
<tr><td></td><td valign="top"><a href="Searching-in-Strings.html#index-endsWith-1"><code>endsWith</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Searching-in-Strings.html">Searching in Strings</a></td></tr>
<tr><td></td><td valign="top"><a href="Timing-Utilities.html#index-eomday"><code>eomday</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Timing-Utilities.html">Timing Utilities</a></td></tr>
<tr><td></td><td valign="top"><a href="Mathematical-Constants.html#index-eps"><code>eps</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Mathematical-Constants.html">Mathematical Constants</a></td></tr>
<tr><td></td><td valign="top"><a href="Mathematical-Constants.html#index-eps-1"><code>eps</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Mathematical-Constants.html">Mathematical Constants</a></td></tr>
<tr><td></td><td valign="top"><a href="Mathematical-Constants.html#index-eps-2"><code>eps</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Mathematical-Constants.html">Mathematical Constants</a></td></tr>
<tr><td></td><td valign="top"><a href="Mathematical-Constants.html#index-eps-3"><code>eps</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Mathematical-Constants.html">Mathematical Constants</a></td></tr>
<tr><td></td><td valign="top"><a href="Mathematical-Constants.html#index-eps-4"><code>eps</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Mathematical-Constants.html">Mathematical Constants</a></td></tr>
<tr><td></td><td valign="top"><a href="Comparison-Ops.html#index-eq"><code>eq</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Comparison-Ops.html">Comparison Ops</a></td></tr>
<tr><td></td><td valign="top"><a href="Searching-and-Replacing-in-Strings.html#index-erase"><code>erase</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Searching-and-Replacing-in-Strings.html">Searching and Replacing in Strings</a></td></tr>
<tr><td></td><td valign="top"><a href="Special-Functions.html#index-erf"><code>erf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Special-Functions.html">Special Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Special-Functions.html#index-erfc"><code>erfc</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Special-Functions.html">Special Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Special-Functions.html#index-erfcinv"><code>erfcinv</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Special-Functions.html">Special Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Special-Functions.html#index-erfcx"><code>erfcx</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Special-Functions.html">Special Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Special-Functions.html#index-erfi"><code>erfi</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Special-Functions.html">Special Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Special-Functions.html#index-erfinv"><code>erfinv</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Special-Functions.html">Special Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Catching-Errors.html#index-errno"><code>errno</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Catching-Errors.html">Catching Errors</a></td></tr>
<tr><td></td><td valign="top"><a href="Catching-Errors.html#index-errno-1"><code>errno</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Catching-Errors.html">Catching Errors</a></td></tr>
<tr><td></td><td valign="top"><a href="Catching-Errors.html#index-errno-2"><code>errno</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Catching-Errors.html">Catching Errors</a></td></tr>
<tr><td></td><td valign="top"><a href="Catching-Errors.html#index-errno_005flist"><code>errno_list</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Catching-Errors.html">Catching Errors</a></td></tr>
<tr><td></td><td valign="top"><a href="Raising-Errors.html#index-error"><code>error</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Raising-Errors.html">Raising Errors</a></td></tr>
<tr><td></td><td valign="top"><a href="Raising-Errors.html#index-error-1"><code>error</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Raising-Errors.html">Raising Errors</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-errorbar"><code>errorbar</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-errorbar-1"><code>errorbar</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-errorbar-2"><code>errorbar</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-errorbar-3"><code>errorbar</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-errorbar-4"><code>errorbar</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-errorbar-5"><code>errorbar</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-errorbar-6"><code>errorbar</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-errorbar-7"><code>errorbar</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-errorbar-8"><code>errorbar</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-errorbar-9"><code>errorbar</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="I_002fO-Dialogs.html#index-errordlg"><code>errordlg</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="I_002fO-Dialogs.html">I/O Dialogs</a></td></tr>
<tr><td></td><td valign="top"><a href="I_002fO-Dialogs.html#index-errordlg-1"><code>errordlg</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="I_002fO-Dialogs.html">I/O Dialogs</a></td></tr>
<tr><td></td><td valign="top"><a href="I_002fO-Dialogs.html#index-errordlg-2"><code>errordlg</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="I_002fO-Dialogs.html">I/O Dialogs</a></td></tr>
<tr><td></td><td valign="top"><a href="I_002fO-Dialogs.html#index-errordlg-3"><code>errordlg</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="I_002fO-Dialogs.html">I/O Dialogs</a></td></tr>
<tr><td></td><td valign="top"><a href="I_002fO-Dialogs.html#index-errordlg-4"><code>errordlg</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="I_002fO-Dialogs.html">I/O Dialogs</a></td></tr>
<tr><td></td><td valign="top"><a href="Timing-Utilities.html#index-etime"><code>etime</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Timing-Utilities.html">Timing Utilities</a></td></tr>
<tr><td></td><td valign="top"><a href="Information.html#index-etree"><code>etree</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Information.html">Information</a></td></tr>
<tr><td></td><td valign="top"><a href="Information.html#index-etree-1"><code>etree</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Information.html">Information</a></td></tr>
<tr><td></td><td valign="top"><a href="Information.html#index-etree-2"><code>etree</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Information.html">Information</a></td></tr>
<tr><td></td><td valign="top"><a href="Information.html#index-etreeplot"><code>etreeplot</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Information.html">Information</a></td></tr>
<tr><td></td><td valign="top"><a href="Information.html#index-etreeplot-1"><code>etreeplot</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Information.html">Information</a></td></tr>
<tr><td></td><td valign="top"><a href="Evaluation.html#index-eval"><code>eval</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Evaluation.html">Evaluation</a></td></tr>
<tr><td></td><td valign="top"><a href="Evaluation.html#index-eval-1"><code>eval</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Evaluation.html">Evaluation</a></td></tr>
<tr><td></td><td valign="top"><a href="Evaluation.html#index-evalc"><code>evalc</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Evaluation.html">Evaluation</a></td></tr>
<tr><td></td><td valign="top"><a href="Evaluation.html#index-evalc-1"><code>evalc</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Evaluation.html">Evaluation</a></td></tr>
<tr><td></td><td valign="top"><a href="Evaluation-in-a-Different-Context.html#index-evalin"><code>evalin</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Evaluation-in-a-Different-Context.html">Evaluation in a Different Context</a></td></tr>
<tr><td></td><td valign="top"><a href="Evaluation-in-a-Different-Context.html#index-evalin-1"><code>evalin</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Evaluation-in-a-Different-Context.html">Evaluation in a Different Context</a></td></tr>
<tr><td></td><td valign="top"><a href="Demonstration-Functions.html#index-example"><code>example</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Demonstration-Functions.html">Demonstration Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Demonstration-Functions.html#index-example-1"><code>example</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Demonstration-Functions.html">Demonstration Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Demonstration-Functions.html#index-example-2"><code>example</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Demonstration-Functions.html">Demonstration Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Demonstration-Functions.html#index-example-3"><code>example</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Demonstration-Functions.html">Demonstration Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Demonstration-Functions.html#index-example-4"><code>example</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Demonstration-Functions.html">Demonstration Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Controlling-Subprocesses.html#index-exec"><code>exec</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Controlling-Subprocesses.html">Controlling Subprocesses</a></td></tr>
<tr><td></td><td valign="top"><a href="Controlling-Subprocesses.html#index-EXEC_005fPATH"><code>EXEC_PATH</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Controlling-Subprocesses.html">Controlling Subprocesses</a></td></tr>
<tr><td></td><td valign="top"><a href="Controlling-Subprocesses.html#index-EXEC_005fPATH-1"><code>EXEC_PATH</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Controlling-Subprocesses.html">Controlling Subprocesses</a></td></tr>
<tr><td></td><td valign="top"><a href="Controlling-Subprocesses.html#index-EXEC_005fPATH-2"><code>EXEC_PATH</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Controlling-Subprocesses.html">Controlling Subprocesses</a></td></tr>
<tr><td></td><td valign="top"><a href="Status-of-Variables.html#index-exist"><code>exist</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Status-of-Variables.html">Status of Variables</a></td></tr>
<tr><td></td><td valign="top"><a href="Status-of-Variables.html#index-exist-1"><code>exist</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Status-of-Variables.html">Status of Variables</a></td></tr>
<tr><td></td><td valign="top"><a href="Exponents-and-Logarithms.html#index-exp"><code>exp</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Exponents-and-Logarithms.html">Exponents and Logarithms</a></td></tr>
<tr><td></td><td valign="top"><a href="Special-Functions.html#index-expint"><code>expint</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Special-Functions.html">Special Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Functions-of-a-Matrix.html#index-expm"><code>expm</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Functions-of-a-Matrix.html">Functions of a Matrix</a></td></tr>
<tr><td></td><td valign="top"><a href="Exponents-and-Logarithms.html#index-expm1"><code>expm1</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Exponents-and-Logarithms.html">Exponents and Logarithms</a></td></tr>
<tr><td></td><td valign="top"><a href="Special-Utility-Matrices.html#index-eye"><code>eye</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Special-Utility-Matrices.html">Special Utility Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Special-Utility-Matrices.html#index-eye-1"><code>eye</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Special-Utility-Matrices.html">Special Utility Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Special-Utility-Matrices.html#index-eye-2"><code>eye</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Special-Utility-Matrices.html">Special Utility Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Special-Utility-Matrices.html#index-eye-3"><code>eye</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Special-Utility-Matrices.html">Special Utility Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002ddimensional-Function-Plotting.html#index-ezcontour"><code>ezcontour</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002ddimensional-Function-Plotting.html">Two-dimensional Function Plotting</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002ddimensional-Function-Plotting.html#index-ezcontour-1"><code>ezcontour</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002ddimensional-Function-Plotting.html">Two-dimensional Function Plotting</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002ddimensional-Function-Plotting.html#index-ezcontour-2"><code>ezcontour</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002ddimensional-Function-Plotting.html">Two-dimensional Function Plotting</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002ddimensional-Function-Plotting.html#index-ezcontour-3"><code>ezcontour</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002ddimensional-Function-Plotting.html">Two-dimensional Function Plotting</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002ddimensional-Function-Plotting.html#index-ezcontour-4"><code>ezcontour</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002ddimensional-Function-Plotting.html">Two-dimensional Function Plotting</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002ddimensional-Function-Plotting.html#index-ezcontourf"><code>ezcontourf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002ddimensional-Function-Plotting.html">Two-dimensional Function Plotting</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002ddimensional-Function-Plotting.html#index-ezcontourf-1"><code>ezcontourf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002ddimensional-Function-Plotting.html">Two-dimensional Function Plotting</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002ddimensional-Function-Plotting.html#index-ezcontourf-2"><code>ezcontourf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002ddimensional-Function-Plotting.html">Two-dimensional Function Plotting</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002ddimensional-Function-Plotting.html#index-ezcontourf-3"><code>ezcontourf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002ddimensional-Function-Plotting.html">Two-dimensional Function Plotting</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002ddimensional-Function-Plotting.html#index-ezcontourf-4"><code>ezcontourf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002ddimensional-Function-Plotting.html">Two-dimensional Function Plotting</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002ddimensional-Function-Plotting.html#index-ezmesh"><code>ezmesh</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002ddimensional-Function-Plotting.html">Three-dimensional Function Plotting</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002ddimensional-Function-Plotting.html#index-ezmesh-1"><code>ezmesh</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002ddimensional-Function-Plotting.html">Three-dimensional Function Plotting</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002ddimensional-Function-Plotting.html#index-ezmesh-2"><code>ezmesh</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002ddimensional-Function-Plotting.html">Three-dimensional Function Plotting</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002ddimensional-Function-Plotting.html#index-ezmesh-3"><code>ezmesh</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002ddimensional-Function-Plotting.html">Three-dimensional Function Plotting</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002ddimensional-Function-Plotting.html#index-ezmesh-4"><code>ezmesh</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002ddimensional-Function-Plotting.html">Three-dimensional Function Plotting</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002ddimensional-Function-Plotting.html#index-ezmesh-5"><code>ezmesh</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002ddimensional-Function-Plotting.html">Three-dimensional Function Plotting</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002ddimensional-Function-Plotting.html#index-ezmesh-6"><code>ezmesh</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002ddimensional-Function-Plotting.html">Three-dimensional Function Plotting</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002ddimensional-Function-Plotting.html#index-ezmeshc"><code>ezmeshc</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002ddimensional-Function-Plotting.html">Three-dimensional Function Plotting</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002ddimensional-Function-Plotting.html#index-ezmeshc-1"><code>ezmeshc</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002ddimensional-Function-Plotting.html">Three-dimensional Function Plotting</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002ddimensional-Function-Plotting.html#index-ezmeshc-2"><code>ezmeshc</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002ddimensional-Function-Plotting.html">Three-dimensional Function Plotting</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002ddimensional-Function-Plotting.html#index-ezmeshc-3"><code>ezmeshc</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002ddimensional-Function-Plotting.html">Three-dimensional Function Plotting</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002ddimensional-Function-Plotting.html#index-ezmeshc-4"><code>ezmeshc</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002ddimensional-Function-Plotting.html">Three-dimensional Function Plotting</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002ddimensional-Function-Plotting.html#index-ezmeshc-5"><code>ezmeshc</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002ddimensional-Function-Plotting.html">Three-dimensional Function Plotting</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002ddimensional-Function-Plotting.html#index-ezmeshc-6"><code>ezmeshc</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002ddimensional-Function-Plotting.html">Three-dimensional Function Plotting</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002ddimensional-Function-Plotting.html#index-ezplot"><code>ezplot</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002ddimensional-Function-Plotting.html">Two-dimensional Function Plotting</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002ddimensional-Function-Plotting.html#index-ezplot-1"><code>ezplot</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002ddimensional-Function-Plotting.html">Two-dimensional Function Plotting</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002ddimensional-Function-Plotting.html#index-ezplot-2"><code>ezplot</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002ddimensional-Function-Plotting.html">Two-dimensional Function Plotting</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002ddimensional-Function-Plotting.html#index-ezplot-3"><code>ezplot</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002ddimensional-Function-Plotting.html">Two-dimensional Function Plotting</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002ddimensional-Function-Plotting.html#index-ezplot-4"><code>ezplot</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002ddimensional-Function-Plotting.html">Two-dimensional Function Plotting</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002ddimensional-Function-Plotting.html#index-ezplot-5"><code>ezplot</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002ddimensional-Function-Plotting.html">Two-dimensional Function Plotting</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002ddimensional-Function-Plotting.html#index-ezplot-6"><code>ezplot</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002ddimensional-Function-Plotting.html">Two-dimensional Function Plotting</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002ddimensional-Function-Plotting.html#index-ezplot3"><code>ezplot3</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002ddimensional-Function-Plotting.html">Three-dimensional Function Plotting</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002ddimensional-Function-Plotting.html#index-ezplot3-1"><code>ezplot3</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002ddimensional-Function-Plotting.html">Three-dimensional Function Plotting</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002ddimensional-Function-Plotting.html#index-ezplot3-2"><code>ezplot3</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002ddimensional-Function-Plotting.html">Three-dimensional Function Plotting</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002ddimensional-Function-Plotting.html#index-ezplot3-3"><code>ezplot3</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002ddimensional-Function-Plotting.html">Three-dimensional Function Plotting</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002ddimensional-Function-Plotting.html#index-ezplot3-4"><code>ezplot3</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002ddimensional-Function-Plotting.html">Three-dimensional Function Plotting</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002ddimensional-Function-Plotting.html#index-ezplot3-5"><code>ezplot3</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002ddimensional-Function-Plotting.html">Three-dimensional Function Plotting</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002ddimensional-Function-Plotting.html#index-ezpolar"><code>ezpolar</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002ddimensional-Function-Plotting.html">Two-dimensional Function Plotting</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002ddimensional-Function-Plotting.html#index-ezpolar-1"><code>ezpolar</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002ddimensional-Function-Plotting.html">Two-dimensional Function Plotting</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002ddimensional-Function-Plotting.html#index-ezpolar-2"><code>ezpolar</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002ddimensional-Function-Plotting.html">Two-dimensional Function Plotting</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002ddimensional-Function-Plotting.html#index-ezpolar-3"><code>ezpolar</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002ddimensional-Function-Plotting.html">Two-dimensional Function Plotting</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002ddimensional-Function-Plotting.html#index-ezpolar-4"><code>ezpolar</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002ddimensional-Function-Plotting.html">Two-dimensional Function Plotting</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002ddimensional-Function-Plotting.html#index-ezsurf"><code>ezsurf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002ddimensional-Function-Plotting.html">Three-dimensional Function Plotting</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002ddimensional-Function-Plotting.html#index-ezsurf-1"><code>ezsurf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002ddimensional-Function-Plotting.html">Three-dimensional Function Plotting</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002ddimensional-Function-Plotting.html#index-ezsurf-2"><code>ezsurf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002ddimensional-Function-Plotting.html">Three-dimensional Function Plotting</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002ddimensional-Function-Plotting.html#index-ezsurf-3"><code>ezsurf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002ddimensional-Function-Plotting.html">Three-dimensional Function Plotting</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002ddimensional-Function-Plotting.html#index-ezsurf-4"><code>ezsurf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002ddimensional-Function-Plotting.html">Three-dimensional Function Plotting</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002ddimensional-Function-Plotting.html#index-ezsurf-5"><code>ezsurf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002ddimensional-Function-Plotting.html">Three-dimensional Function Plotting</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002ddimensional-Function-Plotting.html#index-ezsurf-6"><code>ezsurf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002ddimensional-Function-Plotting.html">Three-dimensional Function Plotting</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002ddimensional-Function-Plotting.html#index-ezsurfc"><code>ezsurfc</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002ddimensional-Function-Plotting.html">Three-dimensional Function Plotting</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002ddimensional-Function-Plotting.html#index-ezsurfc-1"><code>ezsurfc</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002ddimensional-Function-Plotting.html">Three-dimensional Function Plotting</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002ddimensional-Function-Plotting.html#index-ezsurfc-2"><code>ezsurfc</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002ddimensional-Function-Plotting.html">Three-dimensional Function Plotting</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002ddimensional-Function-Plotting.html#index-ezsurfc-3"><code>ezsurfc</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002ddimensional-Function-Plotting.html">Three-dimensional Function Plotting</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002ddimensional-Function-Plotting.html#index-ezsurfc-4"><code>ezsurfc</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002ddimensional-Function-Plotting.html">Three-dimensional Function Plotting</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002ddimensional-Function-Plotting.html#index-ezsurfc-5"><code>ezsurfc</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002ddimensional-Function-Plotting.html">Three-dimensional Function Plotting</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002ddimensional-Function-Plotting.html#index-ezsurfc-6"><code>ezsurfc</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002ddimensional-Function-Plotting.html">Three-dimensional Function Plotting</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th id="Function-Index_fn_letter-F">F</th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="Utility-Functions.html#index-factor"><code>factor</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Utility-Functions.html">Utility Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Utility-Functions.html#index-factor-1"><code>factor</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Utility-Functions.html">Utility Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Utility-Functions.html#index-factorial"><code>factorial</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Utility-Functions.html">Utility Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Test-Functions.html#index-fail"><code>fail</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Test-Functions.html">Test Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Test-Functions.html#index-fail-1"><code>fail</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Test-Functions.html">Test Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Test-Functions.html#index-fail-2"><code>fail</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Test-Functions.html">Test Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Test-Functions.html#index-fail-3"><code>fail</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Test-Functions.html">Test Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Logical-Values.html#index-false"><code>false</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Logical-Values.html">Logical Values</a></td></tr>
<tr><td></td><td valign="top"><a href="Logical-Values.html#index-false-1"><code>false</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Logical-Values.html">Logical Values</a></td></tr>
<tr><td></td><td valign="top"><a href="Logical-Values.html#index-false-2"><code>false</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Logical-Values.html">Logical Values</a></td></tr>
<tr><td></td><td valign="top"><a href="Logical-Values.html#index-false-3"><code>false</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Logical-Values.html">Logical Values</a></td></tr>
<tr><td></td><td valign="top"><a href="EOF-and-Errors.html#index-fclear"><code>fclear</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="EOF-and-Errors.html">EOF and Errors</a></td></tr>
<tr><td></td><td valign="top"><a href="Opening-and-Closing-Files.html#index-fclose"><code>fclose</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Opening-and-Closing-Files.html">Opening and Closing Files</a></td></tr>
<tr><td></td><td valign="top"><a href="Opening-and-Closing-Files.html#index-fclose-1"><code>fclose</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Opening-and-Closing-Files.html">Opening and Closing Files</a></td></tr>
<tr><td></td><td valign="top"><a href="Opening-and-Closing-Files.html#index-fclose-2"><code>fclose</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Opening-and-Closing-Files.html">Opening and Closing Files</a></td></tr>
<tr><td></td><td valign="top"><a href="Controlling-Subprocesses.html#index-fcntl"><code>fcntl</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Controlling-Subprocesses.html">Controlling Subprocesses</a></td></tr>
<tr><td></td><td valign="top"><a href="Controlling-Subprocesses.html#index-fcntl-1"><code>fcntl</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Controlling-Subprocesses.html">Controlling Subprocesses</a></td></tr>
<tr><td></td><td valign="top"><a href="Simple-File-I_002fO.html#index-fdisp"><code>fdisp</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Simple-File-I_002fO.html">Simple File I/O</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-feather"><code>feather</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-feather-1"><code>feather</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-feather-2"><code>feather</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-feather-3"><code>feather</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-feather-4"><code>feather</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="EOF-and-Errors.html#index-feof"><code>feof</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="EOF-and-Errors.html">EOF and Errors</a></td></tr>
<tr><td></td><td valign="top"><a href="EOF-and-Errors.html#index-ferror"><code>ferror</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="EOF-and-Errors.html">EOF and Errors</a></td></tr>
<tr><td></td><td valign="top"><a href="EOF-and-Errors.html#index-ferror-1"><code>ferror</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="EOF-and-Errors.html">EOF and Errors</a></td></tr>
<tr><td></td><td valign="top"><a href="EOF-and-Errors.html#index-ferror-2"><code>ferror</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="EOF-and-Errors.html">EOF and Errors</a></td></tr>
<tr><td></td><td valign="top"><a href="Calling-a-Function-by-its-Name.html#index-feval"><code>feval</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Calling-a-Function-by-its-Name.html">Calling a Function by its Name</a></td></tr>
<tr><td></td><td valign="top"><a href="Paging-Screen-Output.html#index-fflush"><code>fflush</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Paging-Screen-Output.html">Paging Screen Output</a></td></tr>
<tr><td></td><td valign="top"><a href="Signal-Processing.html#index-fft"><code>fft</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Signal-Processing.html">Signal Processing</a></td></tr>
<tr><td></td><td valign="top"><a href="Signal-Processing.html#index-fft-1"><code>fft</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Signal-Processing.html">Signal Processing</a></td></tr>
<tr><td></td><td valign="top"><a href="Signal-Processing.html#index-fft-2"><code>fft</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Signal-Processing.html">Signal Processing</a></td></tr>
<tr><td></td><td valign="top"><a href="Signal-Processing.html#index-fft2"><code>fft2</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Signal-Processing.html">Signal Processing</a></td></tr>
<tr><td></td><td valign="top"><a href="Signal-Processing.html#index-fft2-1"><code>fft2</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Signal-Processing.html">Signal Processing</a></td></tr>
<tr><td></td><td valign="top"><a href="Signal-Processing.html#index-fftconv"><code>fftconv</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Signal-Processing.html">Signal Processing</a></td></tr>
<tr><td></td><td valign="top"><a href="Signal-Processing.html#index-fftconv-1"><code>fftconv</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Signal-Processing.html">Signal Processing</a></td></tr>
<tr><td></td><td valign="top"><a href="Signal-Processing.html#index-fftfilt"><code>fftfilt</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Signal-Processing.html">Signal Processing</a></td></tr>
<tr><td></td><td valign="top"><a href="Signal-Processing.html#index-fftfilt-1"><code>fftfilt</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Signal-Processing.html">Signal Processing</a></td></tr>
<tr><td></td><td valign="top"><a href="Signal-Processing.html#index-fftn"><code>fftn</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Signal-Processing.html">Signal Processing</a></td></tr>
<tr><td></td><td valign="top"><a href="Signal-Processing.html#index-fftn-1"><code>fftn</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Signal-Processing.html">Signal Processing</a></td></tr>
<tr><td></td><td valign="top"><a href="Signal-Processing.html#index-fftshift"><code>fftshift</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Signal-Processing.html">Signal Processing</a></td></tr>
<tr><td></td><td valign="top"><a href="Signal-Processing.html#index-fftshift-1"><code>fftshift</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Signal-Processing.html">Signal Processing</a></td></tr>
<tr><td></td><td valign="top"><a href="Signal-Processing.html#index-fftw"><code>fftw</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Signal-Processing.html">Signal Processing</a></td></tr>
<tr><td></td><td valign="top"><a href="Signal-Processing.html#index-fftw-1"><code>fftw</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Signal-Processing.html">Signal Processing</a></td></tr>
<tr><td></td><td valign="top"><a href="Signal-Processing.html#index-fftw-2"><code>fftw</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Signal-Processing.html">Signal Processing</a></td></tr>
<tr><td></td><td valign="top"><a href="Signal-Processing.html#index-fftw-3"><code>fftw</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Signal-Processing.html">Signal Processing</a></td></tr>
<tr><td></td><td valign="top"><a href="Signal-Processing.html#index-fftw-4"><code>fftw</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Signal-Processing.html">Signal Processing</a></td></tr>
<tr><td></td><td valign="top"><a href="Signal-Processing.html#index-fftw-5"><code>fftw</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Signal-Processing.html">Signal Processing</a></td></tr>
<tr><td></td><td valign="top"><a href="Line_002dOriented-Input.html#index-fgetl"><code>fgetl</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Line_002dOriented-Input.html">Line-Oriented Input</a></td></tr>
<tr><td></td><td valign="top"><a href="Line_002dOriented-Input.html#index-fgetl-1"><code>fgetl</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Line_002dOriented-Input.html">Line-Oriented Input</a></td></tr>
<tr><td></td><td valign="top"><a href="Line_002dOriented-Input.html#index-fgets"><code>fgets</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Line_002dOriented-Input.html">Line-Oriented Input</a></td></tr>
<tr><td></td><td valign="top"><a href="Line_002dOriented-Input.html#index-fgets-1"><code>fgets</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Line_002dOriented-Input.html">Line-Oriented Input</a></td></tr>
<tr><td></td><td valign="top"><a href="Manipulating-Structures.html#index-fieldnames"><code>fieldnames</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Manipulating-Structures.html">Manipulating Structures</a></td></tr>
<tr><td></td><td valign="top"><a href="Manipulating-Structures.html#index-fieldnames-1"><code>fieldnames</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Manipulating-Structures.html">Manipulating Structures</a></td></tr>
<tr><td></td><td valign="top"><a href="Manipulating-Structures.html#index-fieldnames-2"><code>fieldnames</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Manipulating-Structures.html">Manipulating Structures</a></td></tr>
<tr><td></td><td valign="top"><a href="Manipulating-Structures.html#index-fieldnames-3"><code>fieldnames</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Manipulating-Structures.html">Manipulating Structures</a></td></tr>
<tr><td></td><td valign="top"><a href="Multiple-Plot-Windows.html#index-figure"><code>figure</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Multiple-Plot-Windows.html">Multiple Plot Windows</a></td></tr>
<tr><td></td><td valign="top"><a href="Multiple-Plot-Windows.html#index-figure-1"><code>figure</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Multiple-Plot-Windows.html">Multiple Plot Windows</a></td></tr>
<tr><td></td><td valign="top"><a href="Multiple-Plot-Windows.html#index-figure-2"><code>figure</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Multiple-Plot-Windows.html">Multiple Plot Windows</a></td></tr>
<tr><td></td><td valign="top"><a href="Multiple-Plot-Windows.html#index-figure-3"><code>figure</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Multiple-Plot-Windows.html">Multiple Plot Windows</a></td></tr>
<tr><td></td><td valign="top"><a href="Multiple-Plot-Windows.html#index-figure-4"><code>figure</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Multiple-Plot-Windows.html">Multiple Plot Windows</a></td></tr>
<tr><td></td><td valign="top"><a href="Filesystem-Utilities.html#index-fileattrib"><code>fileattrib</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Filesystem-Utilities.html">Filesystem Utilities</a></td></tr>
<tr><td></td><td valign="top"><a href="Filesystem-Utilities.html#index-fileattrib-1"><code>fileattrib</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Filesystem-Utilities.html">Filesystem Utilities</a></td></tr>
<tr><td></td><td valign="top"><a href="Filesystem-Utilities.html#index-fileattrib-2"><code>fileattrib</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Filesystem-Utilities.html">Filesystem Utilities</a></td></tr>
<tr><td></td><td valign="top"><a href="Filesystem-Utilities.html#index-fileattrib-3"><code>fileattrib</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Filesystem-Utilities.html">Filesystem Utilities</a></td></tr>
<tr><td></td><td valign="top"><a href="Octave-Workspace-Windows.html#index-filebrowser"><code>filebrowser</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Octave-Workspace-Windows.html">Octave Workspace Windows</a></td></tr>
<tr><td></td><td valign="top"><a href="Filesystem-Utilities.html#index-fileparts"><code>fileparts</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Filesystem-Utilities.html">Filesystem Utilities</a></td></tr>
<tr><td></td><td valign="top"><a href="Simple-File-I_002fO.html#index-fileread"><code>fileread</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Simple-File-I_002fO.html">Simple File I/O</a></td></tr>
<tr><td></td><td valign="top"><a href="Filesystem-Utilities.html#index-filesep"><code>filesep</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Filesystem-Utilities.html">Filesystem Utilities</a></td></tr>
<tr><td></td><td valign="top"><a href="Filesystem-Utilities.html#index-filesep-1"><code>filesep</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Filesystem-Utilities.html">Filesystem Utilities</a></td></tr>
<tr><td></td><td valign="top"><a href="Manipulating-the-Load-Path.html#index-file_005fin_005floadpath"><code>file_in_loadpath</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Manipulating-the-Load-Path.html">Manipulating the Load Path</a></td></tr>
<tr><td></td><td valign="top"><a href="Manipulating-the-Load-Path.html#index-file_005fin_005floadpath-1"><code>file_in_loadpath</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Manipulating-the-Load-Path.html">Manipulating the Load Path</a></td></tr>
<tr><td></td><td valign="top"><a href="Filesystem-Utilities.html#index-file_005fin_005fpath"><code>file_in_path</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Filesystem-Utilities.html">Filesystem Utilities</a></td></tr>
<tr><td></td><td valign="top"><a href="Filesystem-Utilities.html#index-file_005fin_005fpath-1"><code>file_in_path</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Filesystem-Utilities.html">Filesystem Utilities</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-fill"><code>fill</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-fill-1"><code>fill</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-fill-2"><code>fill</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-fill-3"><code>fill</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-fill-4"><code>fill</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-fill3"><code>fill3</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-fill3-1"><code>fill3</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-fill3-2"><code>fill3</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-fill3-3"><code>fill3</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-fill3-4"><code>fill3</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Signal-Processing.html#index-filter"><code>filter</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Signal-Processing.html">Signal Processing</a></td></tr>
<tr><td></td><td valign="top"><a href="Signal-Processing.html#index-filter-1"><code>filter</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Signal-Processing.html">Signal Processing</a></td></tr>
<tr><td></td><td valign="top"><a href="Signal-Processing.html#index-filter-2"><code>filter</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Signal-Processing.html">Signal Processing</a></td></tr>
<tr><td></td><td valign="top"><a href="Signal-Processing.html#index-filter-3"><code>filter</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Signal-Processing.html">Signal Processing</a></td></tr>
<tr><td></td><td valign="top"><a href="Signal-Processing.html#index-filter2"><code>filter2</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Signal-Processing.html">Signal Processing</a></td></tr>
<tr><td></td><td valign="top"><a href="Signal-Processing.html#index-filter2-1"><code>filter2</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Signal-Processing.html">Signal Processing</a></td></tr>
<tr><td></td><td valign="top"><a href="Finding-Elements-and-Checking-Conditions.html#index-find"><code>find</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Finding-Elements-and-Checking-Conditions.html">Finding Elements and Checking Conditions</a></td></tr>
<tr><td></td><td valign="top"><a href="Finding-Elements-and-Checking-Conditions.html#index-find-1"><code>find</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Finding-Elements-and-Checking-Conditions.html">Finding Elements and Checking Conditions</a></td></tr>
<tr><td></td><td valign="top"><a href="Finding-Elements-and-Checking-Conditions.html#index-find-2"><code>find</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Finding-Elements-and-Checking-Conditions.html">Finding Elements and Checking Conditions</a></td></tr>
<tr><td></td><td valign="top"><a href="Finding-Elements-and-Checking-Conditions.html#index-find-3"><code>find</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Finding-Elements-and-Checking-Conditions.html">Finding Elements and Checking Conditions</a></td></tr>
<tr><td></td><td valign="top"><a href="Finding-Elements-and-Checking-Conditions.html#index-find-4"><code>find</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Finding-Elements-and-Checking-Conditions.html">Finding Elements and Checking Conditions</a></td></tr>
<tr><td></td><td valign="top"><a href="Searching-Properties.html#index-findall"><code>findall</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Searching-Properties.html">Searching Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Searching-Properties.html#index-findall-1"><code>findall</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Searching-Properties.html">Searching Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Searching-Properties.html#index-findall-2"><code>findall</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Searching-Properties.html">Searching Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Searching-Properties.html#index-findall-3"><code>findall</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Searching-Properties.html">Searching Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Searching-Properties.html#index-findall-4"><code>findall</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Searching-Properties.html">Searching Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Searching-Properties.html#index-findall-5"><code>findall</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Searching-Properties.html">Searching Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Searching-Properties.html#index-findall-6"><code>findall</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Searching-Properties.html">Searching Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Searching-Properties.html#index-findall-7"><code>findall</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Searching-Properties.html">Searching Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Graphics-Objects.html#index-findfigs"><code>findfigs</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Graphics-Objects.html">Graphics Objects</a></td></tr>
<tr><td></td><td valign="top"><a href="Searching-Properties.html#index-findobj"><code>findobj</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Searching-Properties.html">Searching Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Searching-Properties.html#index-findobj-1"><code>findobj</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Searching-Properties.html">Searching Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Searching-Properties.html#index-findobj-2"><code>findobj</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Searching-Properties.html">Searching Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Searching-Properties.html#index-findobj-3"><code>findobj</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Searching-Properties.html">Searching Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Searching-Properties.html#index-findobj-4"><code>findobj</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Searching-Properties.html">Searching Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Searching-Properties.html#index-findobj-5"><code>findobj</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Searching-Properties.html">Searching Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Searching-Properties.html#index-findobj-6"><code>findobj</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Searching-Properties.html">Searching Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Searching-Properties.html#index-findobj-7"><code>findobj</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Searching-Properties.html">Searching Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Searching-in-Strings.html#index-findstr"><code>findstr</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Searching-in-Strings.html">Searching in Strings</a></td></tr>
<tr><td></td><td valign="top"><a href="Searching-in-Strings.html#index-findstr-1"><code>findstr</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Searching-in-Strings.html">Searching in Strings</a></td></tr>
<tr><td></td><td valign="top"><a href="Utility-Functions.html#index-fix"><code>fix</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Utility-Functions.html">Utility Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Matrices.html#index-fixed_005fpoint_005fformat"><code>fixed_point_format</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Matrices.html">Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Matrices.html#index-fixed_005fpoint_005fformat-1"><code>fixed_point_format</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Matrices.html">Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Matrices.html#index-fixed_005fpoint_005fformat-2"><code>fixed_point_format</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Matrices.html">Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Representing-Images.html#index-flag"><code>flag</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Representing-Images.html">Representing Images</a></td></tr>
<tr><td></td><td valign="top"><a href="Representing-Images.html#index-flag-1"><code>flag</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Representing-Images.html">Representing Images</a></td></tr>
<tr><td></td><td valign="top"><a href="Integer-Data-Types.html#index-flintmax"><code>flintmax</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Integer-Data-Types.html">Integer Data Types</a></td></tr>
<tr><td></td><td valign="top"><a href="Integer-Data-Types.html#index-flintmax-1"><code>flintmax</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Integer-Data-Types.html">Integer Data Types</a></td></tr>
<tr><td></td><td valign="top"><a href="Integer-Data-Types.html#index-flintmax-2"><code>flintmax</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Integer-Data-Types.html">Integer Data Types</a></td></tr>
<tr><td></td><td valign="top"><a href="Integer-Data-Types.html#index-flintmax-3"><code>flintmax</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Integer-Data-Types.html">Integer Data Types</a></td></tr>
<tr><td></td><td valign="top"><a href="Rearranging-Matrices.html#index-flip"><code>flip</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Rearranging-Matrices.html">Rearranging Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Rearranging-Matrices.html#index-flip-1"><code>flip</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Rearranging-Matrices.html">Rearranging Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Rearranging-Matrices.html#index-fliplr"><code>fliplr</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Rearranging-Matrices.html">Rearranging Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Rearranging-Matrices.html#index-flipud"><code>flipud</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Rearranging-Matrices.html">Rearranging Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Utility-Functions.html#index-floor"><code>floor</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Utility-Functions.html">Utility Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Minimizers.html#index-fminbnd"><code>fminbnd</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Minimizers.html">Minimizers</a></td></tr>
<tr><td></td><td valign="top"><a href="Minimizers.html#index-fminbnd-1"><code>fminbnd</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Minimizers.html">Minimizers</a></td></tr>
<tr><td></td><td valign="top"><a href="Minimizers.html#index-fminbnd-2"><code>fminbnd</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Minimizers.html">Minimizers</a></td></tr>
<tr><td></td><td valign="top"><a href="Minimizers.html#index-fminsearch"><code>fminsearch</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Minimizers.html">Minimizers</a></td></tr>
<tr><td></td><td valign="top"><a href="Minimizers.html#index-fminsearch-1"><code>fminsearch</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Minimizers.html">Minimizers</a></td></tr>
<tr><td></td><td valign="top"><a href="Minimizers.html#index-fminsearch-2"><code>fminsearch</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Minimizers.html">Minimizers</a></td></tr>
<tr><td></td><td valign="top"><a href="Minimizers.html#index-fminsearch-3"><code>fminsearch</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Minimizers.html">Minimizers</a></td></tr>
<tr><td></td><td valign="top"><a href="Minimizers.html#index-fminunc"><code>fminunc</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Minimizers.html">Minimizers</a></td></tr>
<tr><td></td><td valign="top"><a href="Minimizers.html#index-fminunc-1"><code>fminunc</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Minimizers.html">Minimizers</a></td></tr>
<tr><td></td><td valign="top"><a href="Minimizers.html#index-fminunc-2"><code>fminunc</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Minimizers.html">Minimizers</a></td></tr>
<tr><td></td><td valign="top"><a href="A-Sample-Function-Description.html#index-foo"><code>foo</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="A-Sample-Function-Description.html">A Sample Function Description</a></td></tr>
<tr><td></td><td valign="top"><a href="A-Sample-Function-Description.html#index-foo-1"><code>foo</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="A-Sample-Function-Description.html">A Sample Function Description</a></td></tr>
<tr><td></td><td valign="top"><a href="A-Sample-Function-Description.html#index-foo-2"><code>foo</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="A-Sample-Function-Description.html">A Sample Function Description</a></td></tr>
<tr><td></td><td valign="top"><a href="Opening-and-Closing-Files.html#index-fopen"><code>fopen</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Opening-and-Closing-Files.html">Opening and Closing Files</a></td></tr>
<tr><td></td><td valign="top"><a href="Opening-and-Closing-Files.html#index-fopen-1"><code>fopen</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Opening-and-Closing-Files.html">Opening and Closing Files</a></td></tr>
<tr><td></td><td valign="top"><a href="Opening-and-Closing-Files.html#index-fopen-2"><code>fopen</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Opening-and-Closing-Files.html">Opening and Closing Files</a></td></tr>
<tr><td></td><td valign="top"><a href="Opening-and-Closing-Files.html#index-fopen-3"><code>fopen</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Opening-and-Closing-Files.html">Opening and Closing Files</a></td></tr>
<tr><td></td><td valign="top"><a href="Opening-and-Closing-Files.html#index-fopen-4"><code>fopen</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Opening-and-Closing-Files.html">Opening and Closing Files</a></td></tr>
<tr><td></td><td valign="top"><a href="Opening-and-Closing-Files.html#index-fopen-5"><code>fopen</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Opening-and-Closing-Files.html">Opening and Closing Files</a></td></tr>
<tr><td></td><td valign="top"><a href="Opening-and-Closing-Files.html#index-fopen-6"><code>fopen</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Opening-and-Closing-Files.html">Opening and Closing Files</a></td></tr>
<tr><td></td><td valign="top"><a href="Controlling-Subprocesses.html#index-fork"><code>fork</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Controlling-Subprocesses.html">Controlling Subprocesses</a></td></tr>
<tr><td></td><td valign="top"><a href="Terminal-Output.html#index-format"><code>format</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Terminal-Output.html">Terminal Output</a></td></tr>
<tr><td></td><td valign="top"><a href="Terminal-Output.html#index-format-1"><code>format</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Terminal-Output.html">Terminal Output</a></td></tr>
<tr><td></td><td valign="top"><a href="Terminal-Output.html#index-format-2"><code>format</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Terminal-Output.html">Terminal Output</a></td></tr>
<tr><td></td><td valign="top"><a href="Matrices-and-Arrays-in-Oct_002dFiles.html#index-fortran_005fvec"><code>fortran_vec</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Matrices-and-Arrays-in-Oct_002dFiles.html">Matrices and Arrays in Oct-Files</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002ddimensional-Function-Plotting.html#index-fplot"><code>fplot</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002ddimensional-Function-Plotting.html">Two-dimensional Function Plotting</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002ddimensional-Function-Plotting.html#index-fplot-1"><code>fplot</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002ddimensional-Function-Plotting.html">Two-dimensional Function Plotting</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002ddimensional-Function-Plotting.html#index-fplot-2"><code>fplot</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002ddimensional-Function-Plotting.html">Two-dimensional Function Plotting</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002ddimensional-Function-Plotting.html#index-fplot-3"><code>fplot</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002ddimensional-Function-Plotting.html">Two-dimensional Function Plotting</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002ddimensional-Function-Plotting.html#index-fplot-4"><code>fplot</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002ddimensional-Function-Plotting.html">Two-dimensional Function Plotting</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002ddimensional-Function-Plotting.html#index-fplot-5"><code>fplot</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002ddimensional-Function-Plotting.html">Two-dimensional Function Plotting</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002ddimensional-Function-Plotting.html#index-fplot-6"><code>fplot</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002ddimensional-Function-Plotting.html">Two-dimensional Function Plotting</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002ddimensional-Function-Plotting.html#index-fplot-7"><code>fplot</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002ddimensional-Function-Plotting.html">Two-dimensional Function Plotting</a></td></tr>
<tr><td></td><td valign="top"><a href="Formatted-Output.html#index-fprintf"><code>fprintf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Formatted-Output.html">Formatted Output</a></td></tr>
<tr><td></td><td valign="top"><a href="Formatted-Output.html#index-fprintf-1"><code>fprintf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Formatted-Output.html">Formatted Output</a></td></tr>
<tr><td></td><td valign="top"><a href="Formatted-Output.html#index-fprintf-2"><code>fprintf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Formatted-Output.html">Formatted Output</a></td></tr>
<tr><td></td><td valign="top"><a href="Simple-Output.html#index-fputs"><code>fputs</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Simple-Output.html">Simple Output</a></td></tr>
<tr><td></td><td valign="top"><a href="Simple-Output.html#index-fputs-1"><code>fputs</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Simple-Output.html">Simple Output</a></td></tr>
<tr><td></td><td valign="top"><a href="Signal-Processing.html#index-fractdiff"><code>fractdiff</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Signal-Processing.html">Signal Processing</a></td></tr>
<tr><td></td><td valign="top"><a href="Representing-Images.html#index-frame2im"><code>frame2im</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Representing-Images.html">Representing Images</a></td></tr>
<tr><td></td><td valign="top"><a href="Binary-I_002fO.html#index-fread"><code>fread</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Binary-I_002fO.html">Binary I/O</a></td></tr>
<tr><td></td><td valign="top"><a href="Binary-I_002fO.html#index-fread-1"><code>fread</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Binary-I_002fO.html">Binary I/O</a></td></tr>
<tr><td></td><td valign="top"><a href="Binary-I_002fO.html#index-fread-2"><code>fread</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Binary-I_002fO.html">Binary I/O</a></td></tr>
<tr><td></td><td valign="top"><a href="Binary-I_002fO.html#index-fread-3"><code>fread</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Binary-I_002fO.html">Binary I/O</a></td></tr>
<tr><td></td><td valign="top"><a href="Binary-I_002fO.html#index-fread-4"><code>fread</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Binary-I_002fO.html">Binary I/O</a></td></tr>
<tr><td></td><td valign="top"><a href="Binary-I_002fO.html#index-fread-5"><code>fread</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Binary-I_002fO.html">Binary I/O</a></td></tr>
<tr><td></td><td valign="top"><a href="EOF-and-Errors.html#index-freport"><code>freport</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="EOF-and-Errors.html">EOF and Errors</a></td></tr>
<tr><td></td><td valign="top"><a href="Signal-Processing.html#index-freqz"><code>freqz</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Signal-Processing.html">Signal Processing</a></td></tr>
<tr><td></td><td valign="top"><a href="Signal-Processing.html#index-freqz-1"><code>freqz</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Signal-Processing.html">Signal Processing</a></td></tr>
<tr><td></td><td valign="top"><a href="Signal-Processing.html#index-freqz-2"><code>freqz</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Signal-Processing.html">Signal Processing</a></td></tr>
<tr><td></td><td valign="top"><a href="Signal-Processing.html#index-freqz-3"><code>freqz</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Signal-Processing.html">Signal Processing</a></td></tr>
<tr><td></td><td valign="top"><a href="Signal-Processing.html#index-freqz-4"><code>freqz</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Signal-Processing.html">Signal Processing</a></td></tr>
<tr><td></td><td valign="top"><a href="Signal-Processing.html#index-freqz-5"><code>freqz</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Signal-Processing.html">Signal Processing</a></td></tr>
<tr><td></td><td valign="top"><a href="Signal-Processing.html#index-freqz-6"><code>freqz</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Signal-Processing.html">Signal Processing</a></td></tr>
<tr><td></td><td valign="top"><a href="Signal-Processing.html#index-freqz_005fplot"><code>freqz_plot</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Signal-Processing.html">Signal Processing</a></td></tr>
<tr><td></td><td valign="top"><a href="Signal-Processing.html#index-freqz_005fplot-1"><code>freqz_plot</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Signal-Processing.html">Signal Processing</a></td></tr>
<tr><td></td><td valign="top"><a href="File-Positioning.html#index-frewind"><code>frewind</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="File-Positioning.html">File Positioning</a></td></tr>
<tr><td></td><td valign="top"><a href="File-Positioning.html#index-frewind-1"><code>frewind</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="File-Positioning.html">File Positioning</a></td></tr>
<tr><td></td><td valign="top"><a href="Formatted-Input.html#index-fscanf"><code>fscanf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Formatted-Input.html">Formatted Input</a></td></tr>
<tr><td></td><td valign="top"><a href="Formatted-Input.html#index-fscanf-1"><code>fscanf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Formatted-Input.html">Formatted Input</a></td></tr>
<tr><td></td><td valign="top"><a href="File-Positioning.html#index-fseek"><code>fseek</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="File-Positioning.html">File Positioning</a></td></tr>
<tr><td></td><td valign="top"><a href="File-Positioning.html#index-fseek-1"><code>fseek</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="File-Positioning.html">File Positioning</a></td></tr>
<tr><td></td><td valign="top"><a href="File-Positioning.html#index-fseek-2"><code>fseek</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="File-Positioning.html">File Positioning</a></td></tr>
<tr><td></td><td valign="top"><a href="Line_002dOriented-Input.html#index-fskipl"><code>fskipl</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Line_002dOriented-Input.html">Line-Oriented Input</a></td></tr>
<tr><td></td><td valign="top"><a href="Line_002dOriented-Input.html#index-fskipl-1"><code>fskipl</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Line_002dOriented-Input.html">Line-Oriented Input</a></td></tr>
<tr><td></td><td valign="top"><a href="Line_002dOriented-Input.html#index-fskipl-2"><code>fskipl</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Line_002dOriented-Input.html">Line-Oriented Input</a></td></tr>
<tr><td></td><td valign="top"><a href="Solvers.html#index-fsolve"><code>fsolve</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Solvers.html">Solvers</a></td></tr>
<tr><td></td><td valign="top"><a href="Solvers.html#index-fsolve-1"><code>fsolve</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Solvers.html">Solvers</a></td></tr>
<tr><td></td><td valign="top"><a href="Solvers.html#index-fsolve-2"><code>fsolve</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Solvers.html">Solvers</a></td></tr>
<tr><td></td><td valign="top"><a href="File-Positioning.html#index-ftell"><code>ftell</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="File-Positioning.html">File Positioning</a></td></tr>
<tr><td></td><td valign="top"><a href="FTP-Objects.html#index-ftp"><code>ftp</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="FTP-Objects.html">FTP Objects</a></td></tr>
<tr><td></td><td valign="top"><a href="FTP-Objects.html#index-ftp-1"><code>ftp</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="FTP-Objects.html">FTP Objects</a></td></tr>
<tr><td></td><td valign="top"><a href="Creating-Sparse-Matrices.html#index-full"><code>full</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Creating-Sparse-Matrices.html">Creating Sparse Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Filesystem-Utilities.html#index-fullfile"><code>fullfile</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Filesystem-Utilities.html">Filesystem Utilities</a></td></tr>
<tr><td></td><td valign="top"><a href="Function-Handles.html#index-func2str"><code>func2str</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Function-Handles.html">Function Handles</a></td></tr>
<tr><td></td><td valign="top"><a href="Function-Handles.html#index-functions"><code>functions</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Function-Handles.html">Function Handles</a></td></tr>
<tr><td></td><td valign="top"><a href="Binary-I_002fO.html#index-fwrite"><code>fwrite</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Binary-I_002fO.html">Binary I/O</a></td></tr>
<tr><td></td><td valign="top"><a href="Binary-I_002fO.html#index-fwrite-1"><code>fwrite</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Binary-I_002fO.html">Binary I/O</a></td></tr>
<tr><td></td><td valign="top"><a href="Binary-I_002fO.html#index-fwrite-2"><code>fwrite</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Binary-I_002fO.html">Binary I/O</a></td></tr>
<tr><td></td><td valign="top"><a href="Binary-I_002fO.html#index-fwrite-3"><code>fwrite</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Binary-I_002fO.html">Binary I/O</a></td></tr>
<tr><td></td><td valign="top"><a href="Binary-I_002fO.html#index-fwrite-4"><code>fwrite</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Binary-I_002fO.html">Binary I/O</a></td></tr>
<tr><td></td><td valign="top"><a href="Solvers.html#index-fzero"><code>fzero</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Solvers.html">Solvers</a></td></tr>
<tr><td></td><td valign="top"><a href="Solvers.html#index-fzero-1"><code>fzero</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Solvers.html">Solvers</a></td></tr>
<tr><td></td><td valign="top"><a href="Solvers.html#index-fzero-2"><code>fzero</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Solvers.html">Solvers</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th id="Function-Index_fn_letter-G">G</th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="Famous-Matrices.html#index-gallery"><code>gallery</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Famous-Matrices.html">Famous Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Famous-Matrices.html#index-gallery-1"><code>gallery</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Famous-Matrices.html">Famous Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Famous-Matrices.html#index-gallery-2"><code>gallery</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Famous-Matrices.html">Famous Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Famous-Matrices.html#index-gallery-3"><code>gallery</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Famous-Matrices.html">Famous Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Famous-Matrices.html#index-gallery-4"><code>gallery</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Famous-Matrices.html">Famous Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Famous-Matrices.html#index-gallery-5"><code>gallery</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Famous-Matrices.html">Famous Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Famous-Matrices.html#index-gallery-6"><code>gallery</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Famous-Matrices.html">Famous Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Famous-Matrices.html#index-gallery-7"><code>gallery</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Famous-Matrices.html">Famous Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Famous-Matrices.html#index-gallery-8"><code>gallery</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Famous-Matrices.html">Famous Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Famous-Matrices.html#index-gallery-9"><code>gallery</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Famous-Matrices.html">Famous Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Famous-Matrices.html#index-gallery-10"><code>gallery</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Famous-Matrices.html">Famous Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Famous-Matrices.html#index-gallery-11"><code>gallery</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Famous-Matrices.html">Famous Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Famous-Matrices.html#index-gallery-12"><code>gallery</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Famous-Matrices.html">Famous Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Famous-Matrices.html#index-gallery-13"><code>gallery</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Famous-Matrices.html">Famous Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Famous-Matrices.html#index-gallery-14"><code>gallery</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Famous-Matrices.html">Famous Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Famous-Matrices.html#index-gallery-15"><code>gallery</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Famous-Matrices.html">Famous Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Famous-Matrices.html#index-gallery-16"><code>gallery</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Famous-Matrices.html">Famous Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Famous-Matrices.html#index-gallery-17"><code>gallery</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Famous-Matrices.html">Famous Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Famous-Matrices.html#index-gallery-18"><code>gallery</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Famous-Matrices.html">Famous Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Famous-Matrices.html#index-gallery-19"><code>gallery</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Famous-Matrices.html">Famous Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Famous-Matrices.html#index-gallery-20"><code>gallery</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Famous-Matrices.html">Famous Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Famous-Matrices.html#index-gallery-21"><code>gallery</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Famous-Matrices.html">Famous Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Famous-Matrices.html#index-gallery-22"><code>gallery</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Famous-Matrices.html">Famous Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Famous-Matrices.html#index-gallery-23"><code>gallery</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Famous-Matrices.html">Famous Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Famous-Matrices.html#index-gallery-24"><code>gallery</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Famous-Matrices.html">Famous Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Famous-Matrices.html#index-gallery-25"><code>gallery</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Famous-Matrices.html">Famous Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Famous-Matrices.html#index-gallery-26"><code>gallery</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Famous-Matrices.html">Famous Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Famous-Matrices.html#index-gallery-27"><code>gallery</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Famous-Matrices.html">Famous Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Famous-Matrices.html#index-gallery-28"><code>gallery</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Famous-Matrices.html">Famous Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Famous-Matrices.html#index-gallery-29"><code>gallery</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Famous-Matrices.html">Famous Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Famous-Matrices.html#index-gallery-30"><code>gallery</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Famous-Matrices.html">Famous Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Famous-Matrices.html#index-gallery-31"><code>gallery</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Famous-Matrices.html">Famous Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Famous-Matrices.html#index-gallery-32"><code>gallery</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Famous-Matrices.html">Famous Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Famous-Matrices.html#index-gallery-33"><code>gallery</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Famous-Matrices.html">Famous Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Famous-Matrices.html#index-gallery-34"><code>gallery</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Famous-Matrices.html">Famous Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Famous-Matrices.html#index-gallery-35"><code>gallery</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Famous-Matrices.html">Famous Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Famous-Matrices.html#index-gallery-36"><code>gallery</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Famous-Matrices.html">Famous Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Famous-Matrices.html#index-gallery-37"><code>gallery</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Famous-Matrices.html">Famous Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Famous-Matrices.html#index-gallery-38"><code>gallery</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Famous-Matrices.html">Famous Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Famous-Matrices.html#index-gallery-39"><code>gallery</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Famous-Matrices.html">Famous Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Famous-Matrices.html#index-gallery-40"><code>gallery</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Famous-Matrices.html">Famous Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Famous-Matrices.html#index-gallery-41"><code>gallery</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Famous-Matrices.html">Famous Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Famous-Matrices.html#index-gallery-42"><code>gallery</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Famous-Matrices.html">Famous Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Famous-Matrices.html#index-gallery-43"><code>gallery</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Famous-Matrices.html">Famous Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Famous-Matrices.html#index-gallery-44"><code>gallery</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Famous-Matrices.html">Famous Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Famous-Matrices.html#index-gallery-45"><code>gallery</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Famous-Matrices.html">Famous Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Famous-Matrices.html#index-gallery-46"><code>gallery</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Famous-Matrices.html">Famous Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Famous-Matrices.html#index-gallery-47"><code>gallery</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Famous-Matrices.html">Famous Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Famous-Matrices.html#index-gallery-48"><code>gallery</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Famous-Matrices.html">Famous Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Famous-Matrices.html#index-gallery-49"><code>gallery</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Famous-Matrices.html">Famous Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Famous-Matrices.html#index-gallery-50"><code>gallery</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Famous-Matrices.html">Famous Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Famous-Matrices.html#index-gallery-51"><code>gallery</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Famous-Matrices.html">Famous Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Famous-Matrices.html#index-gallery-52"><code>gallery</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Famous-Matrices.html">Famous Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Famous-Matrices.html#index-gallery-53"><code>gallery</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Famous-Matrices.html">Famous Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Famous-Matrices.html#index-gallery-54"><code>gallery</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Famous-Matrices.html">Famous Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Famous-Matrices.html#index-gallery-55"><code>gallery</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Famous-Matrices.html">Famous Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Famous-Matrices.html#index-gallery-56"><code>gallery</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Famous-Matrices.html">Famous Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Famous-Matrices.html#index-gallery-57"><code>gallery</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Famous-Matrices.html">Famous Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Famous-Matrices.html#index-gallery-58"><code>gallery</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Famous-Matrices.html">Famous Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Famous-Matrices.html#index-gallery-59"><code>gallery</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Famous-Matrices.html">Famous Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Famous-Matrices.html#index-gallery-60"><code>gallery</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Famous-Matrices.html">Famous Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Famous-Matrices.html#index-gallery-61"><code>gallery</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Famous-Matrices.html">Famous Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Famous-Matrices.html#index-gallery-62"><code>gallery</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Famous-Matrices.html">Famous Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Famous-Matrices.html#index-gallery-63"><code>gallery</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Famous-Matrices.html">Famous Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Famous-Matrices.html#index-gallery-64"><code>gallery</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Famous-Matrices.html">Famous Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Famous-Matrices.html#index-gallery-65"><code>gallery</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Famous-Matrices.html">Famous Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Famous-Matrices.html#index-gallery-66"><code>gallery</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Famous-Matrices.html">Famous Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Famous-Matrices.html#index-gallery-67"><code>gallery</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Famous-Matrices.html">Famous Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Famous-Matrices.html#index-gallery-68"><code>gallery</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Famous-Matrices.html">Famous Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Famous-Matrices.html#index-gallery-69"><code>gallery</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Famous-Matrices.html">Famous Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Famous-Matrices.html#index-gallery-70"><code>gallery</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Famous-Matrices.html">Famous Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Famous-Matrices.html#index-gallery-71"><code>gallery</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Famous-Matrices.html">Famous Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Famous-Matrices.html#index-gallery-72"><code>gallery</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Famous-Matrices.html">Famous Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Famous-Matrices.html#index-gallery-73"><code>gallery</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Famous-Matrices.html">Famous Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Famous-Matrices.html#index-gallery-74"><code>gallery</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Famous-Matrices.html">Famous Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Famous-Matrices.html#index-gallery-75"><code>gallery</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Famous-Matrices.html">Famous Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Famous-Matrices.html#index-gallery-76"><code>gallery</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Famous-Matrices.html">Famous Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Famous-Matrices.html#index-gallery-77"><code>gallery</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Famous-Matrices.html">Famous Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Famous-Matrices.html#index-gallery-78"><code>gallery</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Famous-Matrices.html">Famous Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Famous-Matrices.html#index-gallery-79"><code>gallery</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Famous-Matrices.html">Famous Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Famous-Matrices.html#index-gallery-80"><code>gallery</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Famous-Matrices.html">Famous Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Famous-Matrices.html#index-gallery-81"><code>gallery</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Famous-Matrices.html">Famous Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Famous-Matrices.html#index-gallery-82"><code>gallery</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Famous-Matrices.html">Famous Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Famous-Matrices.html#index-gallery-83"><code>gallery</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Famous-Matrices.html">Famous Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Famous-Matrices.html#index-gallery-84"><code>gallery</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Famous-Matrices.html">Famous Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Famous-Matrices.html#index-gallery-85"><code>gallery</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Famous-Matrices.html">Famous Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Famous-Matrices.html#index-gallery-86"><code>gallery</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Famous-Matrices.html">Famous Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Famous-Matrices.html#index-gallery-87"><code>gallery</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Famous-Matrices.html">Famous Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Famous-Matrices.html#index-gallery-88"><code>gallery</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Famous-Matrices.html">Famous Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Famous-Matrices.html#index-gallery-89"><code>gallery</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Famous-Matrices.html">Famous Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Famous-Matrices.html#index-gallery-90"><code>gallery</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Famous-Matrices.html">Famous Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Famous-Matrices.html#index-gallery-91"><code>gallery</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Famous-Matrices.html">Famous Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Famous-Matrices.html#index-gallery-92"><code>gallery</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Famous-Matrices.html">Famous Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Famous-Matrices.html#index-gallery-93"><code>gallery</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Famous-Matrices.html">Famous Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Famous-Matrices.html#index-gallery-94"><code>gallery</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Famous-Matrices.html">Famous Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Famous-Matrices.html#index-gallery-95"><code>gallery</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Famous-Matrices.html">Famous Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Famous-Matrices.html#index-gallery-96"><code>gallery</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Famous-Matrices.html">Famous Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Famous-Matrices.html#index-gallery-97"><code>gallery</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Famous-Matrices.html">Famous Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Famous-Matrices.html#index-gallery-98"><code>gallery</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Famous-Matrices.html">Famous Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Famous-Matrices.html#index-gallery-99"><code>gallery</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Famous-Matrices.html">Famous Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Famous-Matrices.html#index-gallery-100"><code>gallery</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Famous-Matrices.html">Famous Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Famous-Matrices.html#index-gallery-101"><code>gallery</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Famous-Matrices.html">Famous Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Famous-Matrices.html#index-gallery-102"><code>gallery</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Famous-Matrices.html">Famous Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Famous-Matrices.html#index-gallery-103"><code>gallery</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Famous-Matrices.html">Famous Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Famous-Matrices.html#index-gallery-104"><code>gallery</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Famous-Matrices.html">Famous Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Famous-Matrices.html#index-gallery-105"><code>gallery</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Famous-Matrices.html">Famous Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Famous-Matrices.html#index-gallery-106"><code>gallery</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Famous-Matrices.html">Famous Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Famous-Matrices.html#index-gallery-107"><code>gallery</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Famous-Matrices.html">Famous Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Famous-Matrices.html#index-gallery-108"><code>gallery</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Famous-Matrices.html">Famous Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Famous-Matrices.html#index-gallery-109"><code>gallery</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Famous-Matrices.html">Famous Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Famous-Matrices.html#index-gallery-110"><code>gallery</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Famous-Matrices.html">Famous Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Famous-Matrices.html#index-gallery-111"><code>gallery</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Famous-Matrices.html">Famous Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Famous-Matrices.html#index-gallery-112"><code>gallery</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Famous-Matrices.html">Famous Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Famous-Matrices.html#index-gallery-113"><code>gallery</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Famous-Matrices.html">Famous Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Famous-Matrices.html#index-gallery-114"><code>gallery</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Famous-Matrices.html">Famous Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Famous-Matrices.html#index-gallery-115"><code>gallery</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Famous-Matrices.html">Famous Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Famous-Matrices.html#index-gallery-116"><code>gallery</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Famous-Matrices.html">Famous Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Famous-Matrices.html#index-gallery-117"><code>gallery</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Famous-Matrices.html">Famous Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Special-Functions.html#index-gamma"><code>gamma</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Special-Functions.html">Special Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Special-Functions.html#index-gammainc"><code>gammainc</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Special-Functions.html">Special Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Special-Functions.html#index-gammainc-1"><code>gammainc</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Special-Functions.html">Special Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Special-Functions.html#index-gammaincinv"><code>gammaincinv</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Special-Functions.html">Special Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Special-Functions.html#index-gammaincinv-1"><code>gammaincinv</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Special-Functions.html">Special Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Special-Functions.html#index-gammaln"><code>gammaln</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Special-Functions.html">Special Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Graphics-Objects.html#index-gca"><code>gca</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Graphics-Objects.html">Graphics Objects</a></td></tr>
<tr><td></td><td valign="top"><a href="Callbacks.html#index-gcbf"><code>gcbf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Callbacks.html">Callbacks</a></td></tr>
<tr><td></td><td valign="top"><a href="Callbacks.html#index-gcbo"><code>gcbo</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Callbacks.html">Callbacks</a></td></tr>
<tr><td></td><td valign="top"><a href="Callbacks.html#index-gcbo-1"><code>gcbo</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Callbacks.html">Callbacks</a></td></tr>
<tr><td></td><td valign="top"><a href="Utility-Functions.html#index-gcd"><code>gcd</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Utility-Functions.html">Utility Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Utility-Functions.html#index-gcd-1"><code>gcd</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Utility-Functions.html">Utility Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Graphics-Objects.html#index-gcf"><code>gcf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Graphics-Objects.html">Graphics Objects</a></td></tr>
<tr><td></td><td valign="top"><a href="Graphics-Objects.html#index-gco"><code>gco</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Graphics-Objects.html">Graphics Objects</a></td></tr>
<tr><td></td><td valign="top"><a href="Graphics-Objects.html#index-gco-1"><code>gco</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Graphics-Objects.html">Graphics Objects</a></td></tr>
<tr><td></td><td valign="top"><a href="Comparison-Ops.html#index-ge"><code>ge</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Comparison-Ops.html">Comparison Ops</a></td></tr>
<tr><td></td><td valign="top"><a href="Manipulating-the-Load-Path.html#index-genpath"><code>genpath</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Manipulating-the-Load-Path.html">Manipulating the Load Path</a></td></tr>
<tr><td></td><td valign="top"><a href="Manipulating-the-Load-Path.html#index-genpath-1"><code>genpath</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Manipulating-the-Load-Path.html">Manipulating the Load Path</a></td></tr>
<tr><td></td><td valign="top"><a href="Graphics-Objects.html#index-get"><code>get</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Graphics-Objects.html">Graphics Objects</a></td></tr>
<tr><td></td><td valign="top"><a href="Graphics-Objects.html#index-get-1"><code>get</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Graphics-Objects.html">Graphics Objects</a></td></tr>
<tr><td></td><td valign="top"><a href="Player-Properties.html#index-get-2"><code>get</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Player-Properties.html">Player Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Player-Properties.html#index-get-3"><code>get</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Player-Properties.html">Player Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Recorder-Properties.html#index-get-4"><code>get</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Recorder-Properties.html">Recorder Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Recorder-Properties.html#index-get-5"><code>get</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Recorder-Properties.html">Recorder Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Application_002ddefined-Data.html#index-getappdata"><code>getappdata</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Application_002ddefined-Data.html">Application-defined Data</a></td></tr>
<tr><td></td><td valign="top"><a href="Application_002ddefined-Data.html#index-getappdata-1"><code>getappdata</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Application_002ddefined-Data.html">Application-defined Data</a></td></tr>
<tr><td></td><td valign="top"><a href="Data-Retrieval.html#index-getaudiodata"><code>getaudiodata</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Data-Retrieval.html">Data Retrieval</a></td></tr>
<tr><td></td><td valign="top"><a href="Data-Retrieval.html#index-getaudiodata-1"><code>getaudiodata</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Data-Retrieval.html">Data Retrieval</a></td></tr>
<tr><td></td><td valign="top"><a href="Process-ID-Information.html#index-getegid"><code>getegid</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Process-ID-Information.html">Process ID Information</a></td></tr>
<tr><td></td><td valign="top"><a href="Environment-Variables.html#index-getenv"><code>getenv</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Environment-Variables.html">Environment Variables</a></td></tr>
<tr><td></td><td valign="top"><a href="Process-ID-Information.html#index-geteuid"><code>geteuid</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Process-ID-Information.html">Process ID Information</a></td></tr>
<tr><td></td><td valign="top"><a href="Manipulating-Structures.html#index-getfield"><code>getfield</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Manipulating-Structures.html">Manipulating Structures</a></td></tr>
<tr><td></td><td valign="top"><a href="Manipulating-Structures.html#index-getfield-1"><code>getfield</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Manipulating-Structures.html">Manipulating Structures</a></td></tr>
<tr><td></td><td valign="top"><a href="Representing-Images.html#index-getframe"><code>getframe</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Representing-Images.html">Representing Images</a></td></tr>
<tr><td></td><td valign="top"><a href="Representing-Images.html#index-getframe-1"><code>getframe</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Representing-Images.html">Representing Images</a></td></tr>
<tr><td></td><td valign="top"><a href="Representing-Images.html#index-getframe-2"><code>getframe</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Representing-Images.html">Representing Images</a></td></tr>
<tr><td></td><td valign="top"><a href="Representing-Images.html#index-getframe-3"><code>getframe</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Representing-Images.html">Representing Images</a></td></tr>
<tr><td></td><td valign="top"><a href="Process-ID-Information.html#index-getgid"><code>getgid</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Process-ID-Information.html">Process ID Information</a></td></tr>
<tr><td></td><td valign="top"><a href="Group-Database-Functions.html#index-getgrent"><code>getgrent</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Group-Database-Functions.html">Group Database Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Group-Database-Functions.html#index-getgrgid"><code>getgrgid</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Group-Database-Functions.html">Group Database Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Group-Database-Functions.html#index-getgrnam"><code>getgrnam</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Group-Database-Functions.html">Group Database Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Networking-Utilities.html#index-gethostname"><code>gethostname</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Networking-Utilities.html">Networking Utilities</a></td></tr>
<tr><td></td><td valign="top"><a href="Process-ID-Information.html#index-getpgrp"><code>getpgrp</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Process-ID-Information.html">Process ID Information</a></td></tr>
<tr><td></td><td valign="top"><a href="Process-ID-Information.html#index-getpid"><code>getpid</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Process-ID-Information.html">Process ID Information</a></td></tr>
<tr><td></td><td valign="top"><a href="GUI-Utility-Functions.html#index-getpixelposition"><code>getpixelposition</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="GUI-Utility-Functions.html">GUI Utility Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="GUI-Utility-Functions.html#index-getpixelposition-1"><code>getpixelposition</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="GUI-Utility-Functions.html">GUI Utility Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Data-Retrieval.html#index-getplayer"><code>getplayer</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Data-Retrieval.html">Data Retrieval</a></td></tr>
<tr><td></td><td valign="top"><a href="Process-ID-Information.html#index-getppid"><code>getppid</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Process-ID-Information.html">Process ID Information</a></td></tr>
<tr><td></td><td valign="top"><a href="User_002dDefined-Preferences.html#index-getpref"><code>getpref</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="User_002dDefined-Preferences.html">User-Defined Preferences</a></td></tr>
<tr><td></td><td valign="top"><a href="User_002dDefined-Preferences.html#index-getpref-1"><code>getpref</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="User_002dDefined-Preferences.html">User-Defined Preferences</a></td></tr>
<tr><td></td><td valign="top"><a href="User_002dDefined-Preferences.html#index-getpref-2"><code>getpref</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="User_002dDefined-Preferences.html">User-Defined Preferences</a></td></tr>
<tr><td></td><td valign="top"><a href="User_002dDefined-Preferences.html#index-getpref-3"><code>getpref</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="User_002dDefined-Preferences.html">User-Defined Preferences</a></td></tr>
<tr><td></td><td valign="top"><a href="User_002dDefined-Preferences.html#index-getpref-4"><code>getpref</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="User_002dDefined-Preferences.html">User-Defined Preferences</a></td></tr>
<tr><td></td><td valign="top"><a href="Password-Database-Functions.html#index-getpwent"><code>getpwent</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Password-Database-Functions.html">Password Database Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Password-Database-Functions.html#index-getpwnam"><code>getpwnam</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Password-Database-Functions.html">Password Database Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Password-Database-Functions.html#index-getpwuid"><code>getpwuid</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Password-Database-Functions.html">Password Database Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="System-Information.html#index-getrusage"><code>getrusage</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="System-Information.html">System Information</a></td></tr>
<tr><td></td><td valign="top"><a href="Process-ID-Information.html#index-getuid"><code>getuid</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Process-ID-Information.html">Process ID Information</a></td></tr>
<tr><td></td><td valign="top"><a href="Getting-Help.html#index-get_005ffirst_005fhelp_005fsentence"><code>get_first_help_sentence</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Getting-Help.html">Getting Help</a></td></tr>
<tr><td></td><td valign="top"><a href="Getting-Help.html#index-get_005ffirst_005fhelp_005fsentence-1"><code>get_first_help_sentence</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Getting-Help.html">Getting Help</a></td></tr>
<tr><td></td><td valign="top"><a href="Getting-Help.html#index-get_005ffirst_005fhelp_005fsentence-2"><code>get_first_help_sentence</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Getting-Help.html">Getting Help</a></td></tr>
<tr><td></td><td valign="top"><a href="Getting-Help.html#index-get_005fhelp_005ftext"><code>get_help_text</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Getting-Help.html">Getting Help</a></td></tr>
<tr><td></td><td valign="top"><a href="Getting-Help.html#index-get_005fhelp_005ftext_005ffrom_005ffile"><code>get_help_text_from_file</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Getting-Help.html">Getting Help</a></td></tr>
<tr><td></td><td valign="top"><a href="Environment-Variables.html#index-get_005fhome_005fdirectory"><code>get_home_directory</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Environment-Variables.html">Environment Variables</a></td></tr>
<tr><td></td><td valign="top"><a href="Interacting-with-Plots.html#index-ginput"><code>ginput</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Interacting-with-Plots.html">Interacting with Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Interacting-with-Plots.html#index-ginput-1"><code>ginput</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Interacting-with-Plots.html">Interacting with Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Basic-Matrix-Functions.html#index-givens"><code>givens</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Basic-Matrix-Functions.html">Basic Matrix Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Basic-Matrix-Functions.html#index-givens-1"><code>givens</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Basic-Matrix-Functions.html">Basic Matrix Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Filesystem-Utilities.html#index-glob"><code>glob</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Filesystem-Utilities.html">Filesystem Utilities</a></td></tr>
<tr><td></td><td valign="top"><a href="Linear-Programming.html#index-glpk"><code>glpk</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Linear-Programming.html">Linear Programming</a></td></tr>
<tr><td></td><td valign="top"><a href="Linear-Least-Squares.html#index-gls"><code>gls</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Linear-Least-Squares.html">Linear Least Squares</a></td></tr>
<tr><td></td><td valign="top"><a href="Specialized-Solvers.html#index-gmres"><code>gmres</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Specialized-Solvers.html">Specialized Solvers</a></td></tr>
<tr><td></td><td valign="top"><a href="Specialized-Solvers.html#index-gmres-1"><code>gmres</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Specialized-Solvers.html">Specialized Solvers</a></td></tr>
<tr><td></td><td valign="top"><a href="Specialized-Solvers.html#index-gmres-2"><code>gmres</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Specialized-Solvers.html">Specialized Solvers</a></td></tr>
<tr><td></td><td valign="top"><a href="Timing-Utilities.html#index-gmtime"><code>gmtime</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Timing-Utilities.html">Timing Utilities</a></td></tr>
<tr><td></td><td valign="top"><a href="Customizing-Toolkit-Behavior.html#index-gnuplot_005fbinary"><code>gnuplot_binary</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Customizing-Toolkit-Behavior.html">Customizing Toolkit Behavior</a></td></tr>
<tr><td></td><td valign="top"><a href="Customizing-Toolkit-Behavior.html#index-gnuplot_005fbinary-1"><code>gnuplot_binary</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Customizing-Toolkit-Behavior.html">Customizing Toolkit Behavior</a></td></tr>
<tr><td></td><td valign="top"><a href="Customizing-Toolkit-Behavior.html#index-gnuplot_005fbinary-2"><code>gnuplot_binary</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Customizing-Toolkit-Behavior.html">Customizing Toolkit Behavior</a></td></tr>
<tr><td></td><td valign="top"><a href="Information.html#index-gplot"><code>gplot</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Information.html">Information</a></td></tr>
<tr><td></td><td valign="top"><a href="Information.html#index-gplot-1"><code>gplot</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Information.html">Information</a></td></tr>
<tr><td></td><td valign="top"><a href="Information.html#index-gplot-2"><code>gplot</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Information.html">Information</a></td></tr>
<tr><td></td><td valign="top"><a href="Publish-Octave-Script-Files.html#index-grabcode"><code>grabcode</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Publish-Octave-Script-Files.html">Publish Octave Script Files</a></td></tr>
<tr><td></td><td valign="top"><a href="Publish-Octave-Script-Files.html#index-grabcode-1"><code>grabcode</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Publish-Octave-Script-Files.html">Publish Octave Script Files</a></td></tr>
<tr><td></td><td valign="top"><a href="Publish-Octave-Script-Files.html#index-grabcode-2"><code>grabcode</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Publish-Octave-Script-Files.html">Publish Octave Script Files</a></td></tr>
<tr><td></td><td valign="top"><a href="Utility-Functions.html#index-gradient"><code>gradient</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Utility-Functions.html">Utility Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Utility-Functions.html#index-gradient-1"><code>gradient</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Utility-Functions.html">Utility Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Utility-Functions.html#index-gradient-2"><code>gradient</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Utility-Functions.html">Utility Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Utility-Functions.html#index-gradient-3"><code>gradient</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Utility-Functions.html">Utility Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Utility-Functions.html#index-gradient-4"><code>gradient</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Utility-Functions.html">Utility Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Utility-Functions.html#index-gradient-5"><code>gradient</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Utility-Functions.html">Utility Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Utility-Functions.html#index-gradient-6"><code>gradient</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Utility-Functions.html">Utility Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Graphics-Toolkits.html#index-graphics_005ftoolkit"><code>graphics_toolkit</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Graphics-Toolkits.html">Graphics Toolkits</a></td></tr>
<tr><td></td><td valign="top"><a href="Graphics-Toolkits.html#index-graphics_005ftoolkit-1"><code>graphics_toolkit</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Graphics-Toolkits.html">Graphics Toolkits</a></td></tr>
<tr><td></td><td valign="top"><a href="Graphics-Toolkits.html#index-graphics_005ftoolkit-2"><code>graphics_toolkit</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Graphics-Toolkits.html">Graphics Toolkits</a></td></tr>
<tr><td></td><td valign="top"><a href="Graphics-Toolkits.html#index-graphics_005ftoolkit-3"><code>graphics_toolkit</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Graphics-Toolkits.html">Graphics Toolkits</a></td></tr>
<tr><td></td><td valign="top"><a href="Representing-Images.html#index-gray"><code>gray</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Representing-Images.html">Representing Images</a></td></tr>
<tr><td></td><td valign="top"><a href="Representing-Images.html#index-gray-1"><code>gray</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Representing-Images.html">Representing Images</a></td></tr>
<tr><td></td><td valign="top"><a href="Representing-Images.html#index-gray2ind"><code>gray2ind</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Representing-Images.html">Representing Images</a></td></tr>
<tr><td></td><td valign="top"><a href="Representing-Images.html#index-gray2ind-1"><code>gray2ind</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Representing-Images.html">Representing Images</a></td></tr>
<tr><td></td><td valign="top"><a href="Representing-Images.html#index-gray2ind-2"><code>gray2ind</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Representing-Images.html">Representing Images</a></td></tr>
<tr><td></td><td valign="top"><a href="Representing-Images.html#index-gray2ind-3"><code>gray2ind</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Representing-Images.html">Representing Images</a></td></tr>
<tr><td></td><td valign="top"><a href="Representing-Images.html#index-gray2ind-4"><code>gray2ind</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Representing-Images.html">Representing Images</a></td></tr>
<tr><td></td><td valign="top"><a href="Plot-Annotations.html#index-grid"><code>grid</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Plot-Annotations.html">Plot Annotations</a></td></tr>
<tr><td></td><td valign="top"><a href="Plot-Annotations.html#index-grid-1"><code>grid</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Plot-Annotations.html">Plot Annotations</a></td></tr>
<tr><td></td><td valign="top"><a href="Plot-Annotations.html#index-grid-2"><code>grid</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Plot-Annotations.html">Plot Annotations</a></td></tr>
<tr><td></td><td valign="top"><a href="Plot-Annotations.html#index-grid-3"><code>grid</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Plot-Annotations.html">Plot Annotations</a></td></tr>
<tr><td></td><td valign="top"><a href="Plot-Annotations.html#index-grid-4"><code>grid</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Plot-Annotations.html">Plot Annotations</a></td></tr>
<tr><td></td><td valign="top"><a href="Plot-Annotations.html#index-grid-5"><code>grid</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Plot-Annotations.html">Plot Annotations</a></td></tr>
<tr><td></td><td valign="top"><a href="Plot-Annotations.html#index-grid-6"><code>grid</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Plot-Annotations.html">Plot Annotations</a></td></tr>
<tr><td></td><td valign="top"><a href="Interpolation-on-Scattered-Data.html#index-griddata"><code>griddata</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Interpolation-on-Scattered-Data.html">Interpolation on Scattered Data</a></td></tr>
<tr><td></td><td valign="top"><a href="Interpolation-on-Scattered-Data.html#index-griddata-1"><code>griddata</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Interpolation-on-Scattered-Data.html">Interpolation on Scattered Data</a></td></tr>
<tr><td></td><td valign="top"><a href="Interpolation-on-Scattered-Data.html#index-griddata-2"><code>griddata</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Interpolation-on-Scattered-Data.html">Interpolation on Scattered Data</a></td></tr>
<tr><td></td><td valign="top"><a href="Interpolation-on-Scattered-Data.html#index-griddata-3"><code>griddata</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Interpolation-on-Scattered-Data.html">Interpolation on Scattered Data</a></td></tr>
<tr><td></td><td valign="top"><a href="Interpolation-on-Scattered-Data.html#index-griddata-4"><code>griddata</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Interpolation-on-Scattered-Data.html">Interpolation on Scattered Data</a></td></tr>
<tr><td></td><td valign="top"><a href="Interpolation-on-Scattered-Data.html#index-griddata-5"><code>griddata</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Interpolation-on-Scattered-Data.html">Interpolation on Scattered Data</a></td></tr>
<tr><td></td><td valign="top"><a href="Interpolation-on-Scattered-Data.html#index-griddata3"><code>griddata3</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Interpolation-on-Scattered-Data.html">Interpolation on Scattered Data</a></td></tr>
<tr><td></td><td valign="top"><a href="Interpolation-on-Scattered-Data.html#index-griddata3-1"><code>griddata3</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Interpolation-on-Scattered-Data.html">Interpolation on Scattered Data</a></td></tr>
<tr><td></td><td valign="top"><a href="Interpolation-on-Scattered-Data.html#index-griddata3-2"><code>griddata3</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Interpolation-on-Scattered-Data.html">Interpolation on Scattered Data</a></td></tr>
<tr><td></td><td valign="top"><a href="Interpolation-on-Scattered-Data.html#index-griddatan"><code>griddatan</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Interpolation-on-Scattered-Data.html">Interpolation on Scattered Data</a></td></tr>
<tr><td></td><td valign="top"><a href="Interpolation-on-Scattered-Data.html#index-griddatan-1"><code>griddatan</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Interpolation-on-Scattered-Data.html">Interpolation on Scattered Data</a></td></tr>
<tr><td></td><td valign="top"><a href="Interpolation-on-Scattered-Data.html#index-griddatan-2"><code>griddatan</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Interpolation-on-Scattered-Data.html">Interpolation on Scattered Data</a></td></tr>
<tr><td></td><td valign="top"><a href="Graphics-Objects.html#index-groot"><code>groot</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Graphics-Objects.html">Graphics Objects</a></td></tr>
<tr><td></td><td valign="top"><a href="Basic-Matrix-Functions.html#index-gsvd"><code>gsvd</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Basic-Matrix-Functions.html">Basic Matrix Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Basic-Matrix-Functions.html#index-gsvd-1"><code>gsvd</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Basic-Matrix-Functions.html">Basic Matrix Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Basic-Matrix-Functions.html#index-gsvd-2"><code>gsvd</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Basic-Matrix-Functions.html">Basic Matrix Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Comparison-Ops.html#index-gt"><code>gt</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Comparison-Ops.html">Comparison Ops</a></td></tr>
<tr><td></td><td valign="top"><a href="Interacting-with-Plots.html#index-gtext"><code>gtext</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Interacting-with-Plots.html">Interacting with Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Interacting-with-Plots.html#index-gtext-1"><code>gtext</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Interacting-with-Plots.html">Interacting with Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Interacting-with-Plots.html#index-gtext-2"><code>gtext</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Interacting-with-Plots.html">Interacting with Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Interacting-with-Plots.html#index-gtext-3"><code>gtext</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Interacting-with-Plots.html">Interacting with Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Interacting-with-Plots.html#index-gtext-4"><code>gtext</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Interacting-with-Plots.html">Interacting with Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="GUI-Utility-Functions.html#index-guidata"><code>guidata</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="GUI-Utility-Functions.html">GUI Utility Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="GUI-Utility-Functions.html#index-guidata-1"><code>guidata</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="GUI-Utility-Functions.html">GUI Utility Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="GUI-Utility-Functions.html#index-guihandles"><code>guihandles</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="GUI-Utility-Functions.html">GUI Utility Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="GUI-Utility-Functions.html#index-guihandles-1"><code>guihandles</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="GUI-Utility-Functions.html">GUI Utility Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="File-Archiving-Utilities.html#index-gunzip"><code>gunzip</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="File-Archiving-Utilities.html">File Archiving Utilities</a></td></tr>
<tr><td></td><td valign="top"><a href="File-Archiving-Utilities.html#index-gunzip-1"><code>gunzip</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="File-Archiving-Utilities.html">File Archiving Utilities</a></td></tr>
<tr><td></td><td valign="top"><a href="File-Archiving-Utilities.html#index-gunzip-2"><code>gunzip</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="File-Archiving-Utilities.html">File Archiving Utilities</a></td></tr>
<tr><td></td><td valign="top"><a href="File-Archiving-Utilities.html#index-gzip"><code>gzip</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="File-Archiving-Utilities.html">File Archiving Utilities</a></td></tr>
<tr><td></td><td valign="top"><a href="File-Archiving-Utilities.html#index-gzip-1"><code>gzip</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="File-Archiving-Utilities.html">File Archiving Utilities</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th id="Function-Index_fn_letter-H">H</th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="Famous-Matrices.html#index-hadamard"><code>hadamard</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Famous-Matrices.html">Famous Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Signal-Processing.html#index-hamming"><code>hamming</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Signal-Processing.html">Signal Processing</a></td></tr>
<tr><td></td><td valign="top"><a href="Signal-Processing.html#index-hamming-1"><code>hamming</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Signal-Processing.html">Signal Processing</a></td></tr>
<tr><td></td><td valign="top"><a href="Signal-Processing.html#index-hamming-2"><code>hamming</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Signal-Processing.html">Signal Processing</a></td></tr>
<tr><td></td><td valign="top"><a href="Famous-Matrices.html#index-hankel"><code>hankel</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Famous-Matrices.html">Famous Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Famous-Matrices.html#index-hankel-1"><code>hankel</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Famous-Matrices.html">Famous Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Signal-Processing.html#index-hanning"><code>hanning</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Signal-Processing.html">Signal Processing</a></td></tr>
<tr><td></td><td valign="top"><a href="Signal-Processing.html#index-hanning-1"><code>hanning</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Signal-Processing.html">Signal Processing</a></td></tr>
<tr><td></td><td valign="top"><a href="Signal-Processing.html#index-hanning-2"><code>hanning</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Signal-Processing.html">Signal Processing</a></td></tr>
<tr><td></td><td valign="top"><a href="Hashing-Functions.html#index-hash"><code>hash</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Hashing-Functions.html">Hashing Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="GUI-Utility-Functions.html#index-have_005fwindow_005fsystem"><code>have_window_system</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="GUI-Utility-Functions.html">GUI Utility Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Graphics-Objects.html#index-hdl2struct"><code>hdl2struct</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Graphics-Objects.html">Graphics Objects</a></td></tr>
<tr><td></td><td valign="top"><a href="Getting-Help.html#index-help"><code>help</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Getting-Help.html">Getting Help</a></td></tr>
<tr><td></td><td valign="top"><a href="Getting-Help.html#index-help-1"><code>help</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Getting-Help.html">Getting Help</a></td></tr>
<tr><td></td><td valign="top"><a href="Getting-Help.html#index-help-2"><code>help</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Getting-Help.html">Getting Help</a></td></tr>
<tr><td></td><td valign="top"><a href="Getting-Help.html#index-help-3"><code>help</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Getting-Help.html">Getting Help</a></td></tr>
<tr><td></td><td valign="top"><a href="I_002fO-Dialogs.html#index-helpdlg"><code>helpdlg</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="I_002fO-Dialogs.html">I/O Dialogs</a></td></tr>
<tr><td></td><td valign="top"><a href="I_002fO-Dialogs.html#index-helpdlg-1"><code>helpdlg</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="I_002fO-Dialogs.html">I/O Dialogs</a></td></tr>
<tr><td></td><td valign="top"><a href="I_002fO-Dialogs.html#index-helpdlg-2"><code>helpdlg</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="I_002fO-Dialogs.html">I/O Dialogs</a></td></tr>
<tr><td></td><td valign="top"><a href="I_002fO-Dialogs.html#index-helpdlg-3"><code>helpdlg</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="I_002fO-Dialogs.html">I/O Dialogs</a></td></tr>
<tr><td></td><td valign="top"><a href="Matrix-Factorizations.html#index-hess"><code>hess</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Matrix-Factorizations.html">Matrix Factorizations</a></td></tr>
<tr><td></td><td valign="top"><a href="Matrix-Factorizations.html#index-hess-1"><code>hess</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Matrix-Factorizations.html">Matrix Factorizations</a></td></tr>
<tr><td></td><td valign="top"><a href="Numerical-Data-and-Strings.html#index-hex2dec"><code>hex2dec</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Numerical-Data-and-Strings.html">Numerical Data and Strings</a></td></tr>
<tr><td></td><td valign="top"><a href="Numerical-Data-and-Strings.html#index-hex2num"><code>hex2num</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Numerical-Data-and-Strings.html">Numerical Data and Strings</a></td></tr>
<tr><td></td><td valign="top"><a href="Numerical-Data-and-Strings.html#index-hex2num-1"><code>hex2num</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Numerical-Data-and-Strings.html">Numerical Data and Strings</a></td></tr>
<tr><td></td><td valign="top"><a href="Object-Groups.html#index-hggroup"><code>hggroup</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Object-Groups.html">Object Groups</a></td></tr>
<tr><td></td><td valign="top"><a href="Object-Groups.html#index-hggroup-1"><code>hggroup</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Object-Groups.html">Object Groups</a></td></tr>
<tr><td></td><td valign="top"><a href="Object-Groups.html#index-hggroup-2"><code>hggroup</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Object-Groups.html">Object Groups</a></td></tr>
<tr><td></td><td valign="top"><a href="Object-Groups.html#index-hggroup-3"><code>hggroup</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Object-Groups.html">Object Groups</a></td></tr>
<tr><td></td><td valign="top"><a href="Printing-and-Saving-Plots.html#index-hgload"><code>hgload</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Printing-and-Saving-Plots.html">Printing and Saving Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Printing-and-Saving-Plots.html#index-hgload-1"><code>hgload</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Printing-and-Saving-Plots.html">Printing and Saving Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Printing-and-Saving-Plots.html#index-hgsave"><code>hgsave</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Printing-and-Saving-Plots.html">Printing and Saving Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Printing-and-Saving-Plots.html#index-hgsave-1"><code>hgsave</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Printing-and-Saving-Plots.html">Printing and Saving Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Printing-and-Saving-Plots.html#index-hgsave-2"><code>hgsave</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Printing-and-Saving-Plots.html">Printing and Saving Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Transform-Groups.html#index-hgtransform"><code>hgtransform</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Transform-Groups.html">Transform Groups</a></td></tr>
<tr><td></td><td valign="top"><a href="Transform-Groups.html#index-hgtransform-1"><code>hgtransform</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Transform-Groups.html">Transform Groups</a></td></tr>
<tr><td></td><td valign="top"><a href="Transform-Groups.html#index-hgtransform-2"><code>hgtransform</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Transform-Groups.html">Transform Groups</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-hidden"><code>hidden</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-hidden-1"><code>hidden</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-hidden-2"><code>hidden</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-hidden-3"><code>hidden</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Famous-Matrices.html#index-hilb"><code>hilb</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Famous-Matrices.html">Famous Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-hist"><code>hist</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-hist-1"><code>hist</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-hist-2"><code>hist</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-hist-3"><code>hist</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-hist-4"><code>hist</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-hist-5"><code>hist</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-hist-6"><code>hist</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Basic-Statistical-Functions.html#index-histc"><code>histc</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Basic-Statistical-Functions.html">Basic Statistical Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Basic-Statistical-Functions.html#index-histc-1"><code>histc</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Basic-Statistical-Functions.html">Basic Statistical Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Basic-Statistical-Functions.html#index-histc-2"><code>histc</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Basic-Statistical-Functions.html">Basic Statistical Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Commands-for-History.html#index-history-1"><code>history</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Commands-for-History.html">Commands for History</a></td></tr>
<tr><td></td><td valign="top"><a href="Commands-for-History.html#index-history-2"><code>history</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Commands-for-History.html">Commands for History</a></td></tr>
<tr><td></td><td valign="top"><a href="Commands-for-History.html#index-history-3"><code>history</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Commands-for-History.html">Commands for History</a></td></tr>
<tr><td></td><td valign="top"><a href="Commands-for-History.html#index-history-4"><code>history</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Commands-for-History.html">Commands for History</a></td></tr>
<tr><td></td><td valign="top"><a href="Commands-for-History.html#index-history_005fcontrol"><code>history_control</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Commands-for-History.html">Commands for History</a></td></tr>
<tr><td></td><td valign="top"><a href="Commands-for-History.html#index-history_005fcontrol-1"><code>history_control</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Commands-for-History.html">Commands for History</a></td></tr>
<tr><td></td><td valign="top"><a href="Commands-for-History.html#index-history_005ffile"><code>history_file</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Commands-for-History.html">Commands for History</a></td></tr>
<tr><td></td><td valign="top"><a href="Commands-for-History.html#index-history_005ffile-1"><code>history_file</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Commands-for-History.html">Commands for History</a></td></tr>
<tr><td></td><td valign="top"><a href="Commands-for-History.html#index-history_005fsave"><code>history_save</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Commands-for-History.html">Commands for History</a></td></tr>
<tr><td></td><td valign="top"><a href="Commands-for-History.html#index-history_005fsave-1"><code>history_save</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Commands-for-History.html">Commands for History</a></td></tr>
<tr><td></td><td valign="top"><a href="Commands-for-History.html#index-history_005fsave-2"><code>history_save</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Commands-for-History.html">Commands for History</a></td></tr>
<tr><td></td><td valign="top"><a href="Commands-for-History.html#index-history_005fsize"><code>history_size</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Commands-for-History.html">Commands for History</a></td></tr>
<tr><td></td><td valign="top"><a href="Commands-for-History.html#index-history_005fsize-1"><code>history_size</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Commands-for-History.html">Commands for History</a></td></tr>
<tr><td></td><td valign="top"><a href="Commands-for-History.html#index-history_005ftimestamp_005fformat_005fstring"><code>history_timestamp_format_string</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Commands-for-History.html">Commands for History</a></td></tr>
<tr><td></td><td valign="top"><a href="Commands-for-History.html#index-history_005ftimestamp_005fformat_005fstring-1"><code>history_timestamp_format_string</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Commands-for-History.html">Commands for History</a></td></tr>
<tr><td></td><td valign="top"><a href="Commands-for-History.html#index-history_005ftimestamp_005fformat_005fstring-2"><code>history_timestamp_format_string</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Commands-for-History.html">Commands for History</a></td></tr>
<tr><td></td><td valign="top"><a href="Manipulation-of-Plot-Windows.html#index-hold"><code>hold</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Manipulation-of-Plot-Windows.html">Manipulation of Plot Windows</a></td></tr>
<tr><td></td><td valign="top"><a href="Manipulation-of-Plot-Windows.html#index-hold-1"><code>hold</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Manipulation-of-Plot-Windows.html">Manipulation of Plot Windows</a></td></tr>
<tr><td></td><td valign="top"><a href="Manipulation-of-Plot-Windows.html#index-hold-2"><code>hold</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Manipulation-of-Plot-Windows.html">Manipulation of Plot Windows</a></td></tr>
<tr><td></td><td valign="top"><a href="Manipulation-of-Plot-Windows.html#index-hold-3"><code>hold</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Manipulation-of-Plot-Windows.html">Manipulation of Plot Windows</a></td></tr>
<tr><td></td><td valign="top"><a href="Cursor-Motion.html#index-home"><code>home</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Cursor-Motion.html">Cursor Motion</a></td></tr>
<tr><td></td><td valign="top"><a href="Rearranging-Matrices.html#index-horzcat"><code>horzcat</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Rearranging-Matrices.html">Rearranging Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Representing-Images.html#index-hot"><code>hot</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Representing-Images.html">Representing Images</a></td></tr>
<tr><td></td><td valign="top"><a href="Representing-Images.html#index-hot-1"><code>hot</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Representing-Images.html">Representing Images</a></td></tr>
<tr><td></td><td valign="top"><a href="Matrix-Factorizations.html#index-housh"><code>housh</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Matrix-Factorizations.html">Matrix Factorizations</a></td></tr>
<tr><td></td><td valign="top"><a href="Representing-Images.html#index-hsv"><code>hsv</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Representing-Images.html">Representing Images</a></td></tr>
<tr><td></td><td valign="top"><a href="Color-Conversion.html#index-hsv2rgb"><code>hsv2rgb</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Color-Conversion.html">Color Conversion</a></td></tr>
<tr><td></td><td valign="top"><a href="Color-Conversion.html#index-hsv2rgb-1"><code>hsv2rgb</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Color-Conversion.html">Color Conversion</a></td></tr>
<tr><td></td><td valign="top"><a href="Minimizers.html#index-humps"><code>humps</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Minimizers.html">Minimizers</a></td></tr>
<tr><td></td><td valign="top"><a href="Minimizers.html#index-humps-1"><code>humps</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Minimizers.html">Minimizers</a></td></tr>
<tr><td></td><td valign="top"><a href="Signal-Processing.html#index-hurst"><code>hurst</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Signal-Processing.html">Signal Processing</a></td></tr>
<tr><td></td><td valign="top"><a href="Utility-Functions.html#index-hypot"><code>hypot</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Utility-Functions.html">Utility Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Utility-Functions.html#index-hypot-1"><code>hypot</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Utility-Functions.html">Utility Functions</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th id="Function-Index_fn_letter-I">I</th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="Mathematical-Constants.html#index-i"><code>i</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Mathematical-Constants.html">Mathematical Constants</a></td></tr>
<tr><td></td><td valign="top"><a href="Mathematical-Constants.html#index-I"><code>I</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Mathematical-Constants.html">Mathematical Constants</a></td></tr>
<tr><td></td><td valign="top"><a href="Mathematical-Constants.html#index-I-1"><code>I</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Mathematical-Constants.html">Mathematical Constants</a></td></tr>
<tr><td></td><td valign="top"><a href="Mathematical-Constants.html#index-I-2"><code>I</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Mathematical-Constants.html">Mathematical Constants</a></td></tr>
<tr><td></td><td valign="top"><a href="Mathematical-Constants.html#index-I-3"><code>I</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Mathematical-Constants.html">Mathematical Constants</a></td></tr>
<tr><td></td><td valign="top"><a href="Mathematical-Constants.html#index-I-4"><code>I</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Mathematical-Constants.html">Mathematical Constants</a></td></tr>
<tr><td></td><td valign="top"><a href="Iterative-Techniques.html#index-ichol"><code>ichol</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Iterative-Techniques.html">Iterative Techniques</a></td></tr>
<tr><td></td><td valign="top"><a href="Iterative-Techniques.html#index-ichol-1"><code>ichol</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Iterative-Techniques.html">Iterative Techniques</a></td></tr>
<tr><td></td><td valign="top"><a href="Integer-Arithmetic.html#index-idivide"><code>idivide</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Integer-Arithmetic.html">Integer Arithmetic</a></td></tr>
<tr><td></td><td valign="top"><a href="Short_002dcircuit-Boolean-Operators.html#index-ifelse"><code>ifelse</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Short_002dcircuit-Boolean-Operators.html">Short-circuit Boolean Operators</a></td></tr>
<tr><td></td><td valign="top"><a href="Signal-Processing.html#index-ifft"><code>ifft</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Signal-Processing.html">Signal Processing</a></td></tr>
<tr><td></td><td valign="top"><a href="Signal-Processing.html#index-ifft-1"><code>ifft</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Signal-Processing.html">Signal Processing</a></td></tr>
<tr><td></td><td valign="top"><a href="Signal-Processing.html#index-ifft-2"><code>ifft</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Signal-Processing.html">Signal Processing</a></td></tr>
<tr><td></td><td valign="top"><a href="Signal-Processing.html#index-ifft2"><code>ifft2</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Signal-Processing.html">Signal Processing</a></td></tr>
<tr><td></td><td valign="top"><a href="Signal-Processing.html#index-ifft2-1"><code>ifft2</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Signal-Processing.html">Signal Processing</a></td></tr>
<tr><td></td><td valign="top"><a href="Signal-Processing.html#index-ifftn"><code>ifftn</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Signal-Processing.html">Signal Processing</a></td></tr>
<tr><td></td><td valign="top"><a href="Signal-Processing.html#index-ifftn-1"><code>ifftn</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Signal-Processing.html">Signal Processing</a></td></tr>
<tr><td></td><td valign="top"><a href="Signal-Processing.html#index-ifftshift"><code>ifftshift</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Signal-Processing.html">Signal Processing</a></td></tr>
<tr><td></td><td valign="top"><a href="Signal-Processing.html#index-ifftshift-1"><code>ifftshift</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Signal-Processing.html">Signal Processing</a></td></tr>
<tr><td></td><td valign="top"><a href="Function-Files.html#index-ignore_005ffunction_005ftime_005fstamp"><code>ignore_function_time_stamp</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Function-Files.html">Function Files</a></td></tr>
<tr><td></td><td valign="top"><a href="Function-Files.html#index-ignore_005ffunction_005ftime_005fstamp-1"><code>ignore_function_time_stamp</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Function-Files.html">Function Files</a></td></tr>
<tr><td></td><td valign="top"><a href="Iterative-Techniques.html#index-ilu"><code>ilu</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Iterative-Techniques.html">Iterative Techniques</a></td></tr>
<tr><td></td><td valign="top"><a href="Iterative-Techniques.html#index-ilu-1"><code>ilu</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Iterative-Techniques.html">Iterative Techniques</a></td></tr>
<tr><td></td><td valign="top"><a href="Iterative-Techniques.html#index-ilu-2"><code>ilu</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Iterative-Techniques.html">Iterative Techniques</a></td></tr>
<tr><td></td><td valign="top"><a href="Iterative-Techniques.html#index-ilu-3"><code>ilu</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Iterative-Techniques.html">Iterative Techniques</a></td></tr>
<tr><td></td><td valign="top"><a href="Representing-Images.html#index-im2double"><code>im2double</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Representing-Images.html">Representing Images</a></td></tr>
<tr><td></td><td valign="top"><a href="Representing-Images.html#index-im2double-1"><code>im2double</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Representing-Images.html">Representing Images</a></td></tr>
<tr><td></td><td valign="top"><a href="Representing-Images.html#index-im2frame"><code>im2frame</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Representing-Images.html">Representing Images</a></td></tr>
<tr><td></td><td valign="top"><a href="Representing-Images.html#index-im2frame-1"><code>im2frame</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Representing-Images.html">Representing Images</a></td></tr>
<tr><td></td><td valign="top"><a href="Complex-Arithmetic.html#index-imag"><code>imag</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Complex-Arithmetic.html">Complex Arithmetic</a></td></tr>
<tr><td></td><td valign="top"><a href="Displaying-Images.html#index-image"><code>image</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Displaying-Images.html">Displaying Images</a></td></tr>
<tr><td></td><td valign="top"><a href="Displaying-Images.html#index-image-1"><code>image</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Displaying-Images.html">Displaying Images</a></td></tr>
<tr><td></td><td valign="top"><a href="Displaying-Images.html#index-image-2"><code>image</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Displaying-Images.html">Displaying Images</a></td></tr>
<tr><td></td><td valign="top"><a href="Displaying-Images.html#index-image-3"><code>image</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Displaying-Images.html">Displaying Images</a></td></tr>
<tr><td></td><td valign="top"><a href="Displaying-Images.html#index-image-4"><code>image</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Displaying-Images.html">Displaying Images</a></td></tr>
<tr><td></td><td valign="top"><a href="Displaying-Images.html#index-imagesc"><code>imagesc</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Displaying-Images.html">Displaying Images</a></td></tr>
<tr><td></td><td valign="top"><a href="Displaying-Images.html#index-imagesc-1"><code>imagesc</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Displaying-Images.html">Displaying Images</a></td></tr>
<tr><td></td><td valign="top"><a href="Displaying-Images.html#index-imagesc-2"><code>imagesc</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Displaying-Images.html">Displaying Images</a></td></tr>
<tr><td></td><td valign="top"><a href="Displaying-Images.html#index-imagesc-3"><code>imagesc</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Displaying-Images.html">Displaying Images</a></td></tr>
<tr><td></td><td valign="top"><a href="Displaying-Images.html#index-imagesc-4"><code>imagesc</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Displaying-Images.html">Displaying Images</a></td></tr>
<tr><td></td><td valign="top"><a href="Displaying-Images.html#index-imagesc-5"><code>imagesc</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Displaying-Images.html">Displaying Images</a></td></tr>
<tr><td></td><td valign="top"><a href="Displaying-Images.html#index-imagesc-6"><code>imagesc</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Displaying-Images.html">Displaying Images</a></td></tr>
<tr><td></td><td valign="top"><a href="Loading-and-Saving-Images.html#index-IMAGE_005fPATH"><code>IMAGE_PATH</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Loading-and-Saving-Images.html">Loading and Saving Images</a></td></tr>
<tr><td></td><td valign="top"><a href="Loading-and-Saving-Images.html#index-IMAGE_005fPATH-1"><code>IMAGE_PATH</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Loading-and-Saving-Images.html">Loading and Saving Images</a></td></tr>
<tr><td></td><td valign="top"><a href="Loading-and-Saving-Images.html#index-IMAGE_005fPATH-2"><code>IMAGE_PATH</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Loading-and-Saving-Images.html">Loading and Saving Images</a></td></tr>
<tr><td></td><td valign="top"><a href="Loading-and-Saving-Images.html#index-imfinfo"><code>imfinfo</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Loading-and-Saving-Images.html">Loading and Saving Images</a></td></tr>
<tr><td></td><td valign="top"><a href="Loading-and-Saving-Images.html#index-imfinfo-1"><code>imfinfo</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Loading-and-Saving-Images.html">Loading and Saving Images</a></td></tr>
<tr><td></td><td valign="top"><a href="Loading-and-Saving-Images.html#index-imfinfo-2"><code>imfinfo</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Loading-and-Saving-Images.html">Loading and Saving Images</a></td></tr>
<tr><td></td><td valign="top"><a href="Loading-and-Saving-Images.html#index-imformats"><code>imformats</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Loading-and-Saving-Images.html">Loading and Saving Images</a></td></tr>
<tr><td></td><td valign="top"><a href="Loading-and-Saving-Images.html#index-imformats-1"><code>imformats</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Loading-and-Saving-Images.html">Loading and Saving Images</a></td></tr>
<tr><td></td><td valign="top"><a href="Loading-and-Saving-Images.html#index-imformats-2"><code>imformats</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Loading-and-Saving-Images.html">Loading and Saving Images</a></td></tr>
<tr><td></td><td valign="top"><a href="Loading-and-Saving-Images.html#index-imformats-3"><code>imformats</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Loading-and-Saving-Images.html">Loading and Saving Images</a></td></tr>
<tr><td></td><td valign="top"><a href="Loading-and-Saving-Images.html#index-imformats-4"><code>imformats</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Loading-and-Saving-Images.html">Loading and Saving Images</a></td></tr>
<tr><td></td><td valign="top"><a href="Loading-and-Saving-Images.html#index-imformats-5"><code>imformats</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Loading-and-Saving-Images.html">Loading and Saving Images</a></td></tr>
<tr><td></td><td valign="top"><a href="Loading-and-Saving-Images.html#index-imformats-6"><code>imformats</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Loading-and-Saving-Images.html">Loading and Saving Images</a></td></tr>
<tr><td></td><td valign="top"><a href="Simple-File-I_002fO.html#index-importdata"><code>importdata</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Simple-File-I_002fO.html">Simple File I/O</a></td></tr>
<tr><td></td><td valign="top"><a href="Simple-File-I_002fO.html#index-importdata-1"><code>importdata</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Simple-File-I_002fO.html">Simple File I/O</a></td></tr>
<tr><td></td><td valign="top"><a href="Simple-File-I_002fO.html#index-importdata-2"><code>importdata</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Simple-File-I_002fO.html">Simple File I/O</a></td></tr>
<tr><td></td><td valign="top"><a href="Simple-File-I_002fO.html#index-importdata-3"><code>importdata</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Simple-File-I_002fO.html">Simple File I/O</a></td></tr>
<tr><td></td><td valign="top"><a href="Simple-File-I_002fO.html#index-importdata-4"><code>importdata</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Simple-File-I_002fO.html">Simple File I/O</a></td></tr>
<tr><td></td><td valign="top"><a href="Loading-and-Saving-Images.html#index-imread"><code>imread</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Loading-and-Saving-Images.html">Loading and Saving Images</a></td></tr>
<tr><td></td><td valign="top"><a href="Loading-and-Saving-Images.html#index-imread-1"><code>imread</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Loading-and-Saving-Images.html">Loading and Saving Images</a></td></tr>
<tr><td></td><td valign="top"><a href="Loading-and-Saving-Images.html#index-imread-2"><code>imread</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Loading-and-Saving-Images.html">Loading and Saving Images</a></td></tr>
<tr><td></td><td valign="top"><a href="Loading-and-Saving-Images.html#index-imread-3"><code>imread</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Loading-and-Saving-Images.html">Loading and Saving Images</a></td></tr>
<tr><td></td><td valign="top"><a href="Loading-and-Saving-Images.html#index-imread-4"><code>imread</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Loading-and-Saving-Images.html">Loading and Saving Images</a></td></tr>
<tr><td></td><td valign="top"><a href="Displaying-Images.html#index-imshow"><code>imshow</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Displaying-Images.html">Displaying Images</a></td></tr>
<tr><td></td><td valign="top"><a href="Displaying-Images.html#index-imshow-1"><code>imshow</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Displaying-Images.html">Displaying Images</a></td></tr>
<tr><td></td><td valign="top"><a href="Displaying-Images.html#index-imshow-2"><code>imshow</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Displaying-Images.html">Displaying Images</a></td></tr>
<tr><td></td><td valign="top"><a href="Displaying-Images.html#index-imshow-3"><code>imshow</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Displaying-Images.html">Displaying Images</a></td></tr>
<tr><td></td><td valign="top"><a href="Displaying-Images.html#index-imshow-4"><code>imshow</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Displaying-Images.html">Displaying Images</a></td></tr>
<tr><td></td><td valign="top"><a href="Displaying-Images.html#index-imshow-5"><code>imshow</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Displaying-Images.html">Displaying Images</a></td></tr>
<tr><td></td><td valign="top"><a href="Displaying-Images.html#index-imshow-6"><code>imshow</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Displaying-Images.html">Displaying Images</a></td></tr>
<tr><td></td><td valign="top"><a href="Loading-and-Saving-Images.html#index-imwrite"><code>imwrite</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Loading-and-Saving-Images.html">Loading and Saving Images</a></td></tr>
<tr><td></td><td valign="top"><a href="Loading-and-Saving-Images.html#index-imwrite-1"><code>imwrite</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Loading-and-Saving-Images.html">Loading and Saving Images</a></td></tr>
<tr><td></td><td valign="top"><a href="Loading-and-Saving-Images.html#index-imwrite-2"><code>imwrite</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Loading-and-Saving-Images.html">Loading and Saving Images</a></td></tr>
<tr><td></td><td valign="top"><a href="Loading-and-Saving-Images.html#index-imwrite-3"><code>imwrite</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Loading-and-Saving-Images.html">Loading and Saving Images</a></td></tr>
<tr><td></td><td valign="top"><a href="Representing-Images.html#index-ind2gray"><code>ind2gray</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Representing-Images.html">Representing Images</a></td></tr>
<tr><td></td><td valign="top"><a href="Representing-Images.html#index-ind2rgb"><code>ind2rgb</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Representing-Images.html">Representing Images</a></td></tr>
<tr><td></td><td valign="top"><a href="Representing-Images.html#index-ind2rgb-1"><code>ind2rgb</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Representing-Images.html">Representing Images</a></td></tr>
<tr><td></td><td valign="top"><a href="Advanced-Indexing.html#index-ind2sub"><code>ind2sub</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Advanced-Indexing.html">Advanced Indexing</a></td></tr>
<tr><td></td><td valign="top"><a href="Searching-in-Strings.html#index-index"><code>index</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Searching-in-Strings.html">Searching in Strings</a></td></tr>
<tr><td></td><td valign="top"><a href="Searching-in-Strings.html#index-index-1"><code>index</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Searching-in-Strings.html">Searching in Strings</a></td></tr>
<tr><td></td><td valign="top"><a href="Mathematical-Constants.html#index-inf"><code>inf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Mathematical-Constants.html">Mathematical Constants</a></td></tr>
<tr><td></td><td valign="top"><a href="Mathematical-Constants.html#index-Inf"><code>Inf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Mathematical-Constants.html">Mathematical Constants</a></td></tr>
<tr><td></td><td valign="top"><a href="Mathematical-Constants.html#index-Inf-1"><code>Inf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Mathematical-Constants.html">Mathematical Constants</a></td></tr>
<tr><td></td><td valign="top"><a href="Mathematical-Constants.html#index-Inf-2"><code>Inf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Mathematical-Constants.html">Mathematical Constants</a></td></tr>
<tr><td></td><td valign="top"><a href="Mathematical-Constants.html#index-Inf-3"><code>Inf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Mathematical-Constants.html">Mathematical Constants</a></td></tr>
<tr><td></td><td valign="top"><a href="Mathematical-Constants.html#index-Inf-4"><code>Inf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Mathematical-Constants.html">Mathematical Constants</a></td></tr>
<tr><td></td><td valign="top"><a href="Precedence-of-Objects.html#index-inferiorto"><code>inferiorto</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Precedence-of-Objects.html">Precedence of Objects</a></td></tr>
<tr><td></td><td valign="top"><a href="Getting-Help.html#index-info"><code>info</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Getting-Help.html">Getting Help</a></td></tr>
<tr><td></td><td valign="top"><a href="Getting-Help.html#index-info_005ffile"><code>info_file</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Getting-Help.html">Getting Help</a></td></tr>
<tr><td></td><td valign="top"><a href="Getting-Help.html#index-info_005ffile-1"><code>info_file</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Getting-Help.html">Getting Help</a></td></tr>
<tr><td></td><td valign="top"><a href="Getting-Help.html#index-info_005ffile-2"><code>info_file</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Getting-Help.html">Getting Help</a></td></tr>
<tr><td></td><td valign="top"><a href="Getting-Help.html#index-info_005fprogram"><code>info_program</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Getting-Help.html">Getting Help</a></td></tr>
<tr><td></td><td valign="top"><a href="Getting-Help.html#index-info_005fprogram-1"><code>info_program</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Getting-Help.html">Getting Help</a></td></tr>
<tr><td></td><td valign="top"><a href="Getting-Help.html#index-info_005fprogram-2"><code>info_program</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Getting-Help.html">Getting Help</a></td></tr>
<tr><td></td><td valign="top"><a href="Voronoi-Diagrams.html#index-inpolygon"><code>inpolygon</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Voronoi-Diagrams.html">Voronoi Diagrams</a></td></tr>
<tr><td></td><td valign="top"><a href="Voronoi-Diagrams.html#index-inpolygon-1"><code>inpolygon</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Voronoi-Diagrams.html">Voronoi Diagrams</a></td></tr>
<tr><td></td><td valign="top"><a href="Terminal-Input.html#index-input"><code>input</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Terminal-Input.html">Terminal Input</a></td></tr>
<tr><td></td><td valign="top"><a href="Terminal-Input.html#index-input-1"><code>input</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Terminal-Input.html">Terminal Input</a></td></tr>
<tr><td></td><td valign="top"><a href="I_002fO-Dialogs.html#index-inputdlg"><code>inputdlg</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="I_002fO-Dialogs.html">I/O Dialogs</a></td></tr>
<tr><td></td><td valign="top"><a href="I_002fO-Dialogs.html#index-inputdlg-1"><code>inputdlg</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="I_002fO-Dialogs.html">I/O Dialogs</a></td></tr>
<tr><td></td><td valign="top"><a href="I_002fO-Dialogs.html#index-inputdlg-2"><code>inputdlg</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="I_002fO-Dialogs.html">I/O Dialogs</a></td></tr>
<tr><td></td><td valign="top"><a href="I_002fO-Dialogs.html#index-inputdlg-3"><code>inputdlg</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="I_002fO-Dialogs.html">I/O Dialogs</a></td></tr>
<tr><td></td><td valign="top"><a href="I_002fO-Dialogs.html#index-inputdlg-4"><code>inputdlg</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="I_002fO-Dialogs.html">I/O Dialogs</a></td></tr>
<tr><td></td><td valign="top"><a href="Defining-Functions.html#index-inputname"><code>inputname</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Defining-Functions.html">Defining Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Defining-Functions.html#index-inputname-1"><code>inputname</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Defining-Functions.html">Defining Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Parsing-Arguments.html#index-inputParser"><code>inputParser</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Parsing-Arguments.html">Parsing Arguments</a></td></tr>
<tr><td></td><td valign="top"><a href="Parsing-Arguments.html#index-inputParser_002eCaseSensitive"><code>inputParser.CaseSensitive</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Parsing-Arguments.html">Parsing Arguments</a></td></tr>
<tr><td></td><td valign="top"><a href="Parsing-Arguments.html#index-inputParser_002eFunctionName"><code>inputParser.FunctionName</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Parsing-Arguments.html">Parsing Arguments</a></td></tr>
<tr><td></td><td valign="top"><a href="Parsing-Arguments.html#index-inputParser_002eKeepUnmatched"><code>inputParser.KeepUnmatched</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Parsing-Arguments.html">Parsing Arguments</a></td></tr>
<tr><td></td><td valign="top"><a href="Parsing-Arguments.html#index-inputParser_002eParameters"><code>inputParser.Parameters</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Parsing-Arguments.html">Parsing Arguments</a></td></tr>
<tr><td></td><td valign="top"><a href="Parsing-Arguments.html#index-inputParser_002eResults"><code>inputParser.Results</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Parsing-Arguments.html">Parsing Arguments</a></td></tr>
<tr><td></td><td valign="top"><a href="Parsing-Arguments.html#index-inputParser_002eStructExpand"><code>inputParser.StructExpand</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Parsing-Arguments.html">Parsing Arguments</a></td></tr>
<tr><td></td><td valign="top"><a href="Parsing-Arguments.html#index-inputParser_002eUnmatched"><code>inputParser.Unmatched</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Parsing-Arguments.html">Parsing Arguments</a></td></tr>
<tr><td></td><td valign="top"><a href="Parsing-Arguments.html#index-inputParser_002eUsingDefaults"><code>inputParser.UsingDefaults</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Parsing-Arguments.html">Parsing Arguments</a></td></tr>
<tr><td></td><td valign="top"><a href="Integer-Data-Types.html#index-int16"><code>int16</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Integer-Data-Types.html">Integer Data Types</a></td></tr>
<tr><td></td><td valign="top"><a href="Numerical-Data-and-Strings.html#index-int2str"><code>int2str</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Numerical-Data-and-Strings.html">Numerical Data and Strings</a></td></tr>
<tr><td></td><td valign="top"><a href="Integer-Data-Types.html#index-int32"><code>int32</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Integer-Data-Types.html">Integer Data Types</a></td></tr>
<tr><td></td><td valign="top"><a href="Integer-Data-Types.html#index-int64"><code>int64</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Integer-Data-Types.html">Integer Data Types</a></td></tr>
<tr><td></td><td valign="top"><a href="Integer-Data-Types.html#index-int8"><code>int8</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Integer-Data-Types.html">Integer Data Types</a></td></tr>
<tr><td></td><td valign="top"><a href="Functions-of-One-Variable.html#index-integral"><code>integral</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Functions-of-One-Variable.html">Functions of One Variable</a></td></tr>
<tr><td></td><td valign="top"><a href="Functions-of-One-Variable.html#index-integral-1"><code>integral</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Functions-of-One-Variable.html">Functions of One Variable</a></td></tr>
<tr><td></td><td valign="top"><a href="Functions-of-Multiple-Variables.html#index-integral2"><code>integral2</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Functions-of-Multiple-Variables.html">Functions of Multiple Variables</a></td></tr>
<tr><td></td><td valign="top"><a href="Functions-of-Multiple-Variables.html#index-integral2-1"><code>integral2</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Functions-of-Multiple-Variables.html">Functions of Multiple Variables</a></td></tr>
<tr><td></td><td valign="top"><a href="Functions-of-Multiple-Variables.html#index-integral2-2"><code>integral2</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Functions-of-Multiple-Variables.html">Functions of Multiple Variables</a></td></tr>
<tr><td></td><td valign="top"><a href="Functions-of-Multiple-Variables.html#index-integral3"><code>integral3</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Functions-of-Multiple-Variables.html">Functions of Multiple Variables</a></td></tr>
<tr><td></td><td valign="top"><a href="Functions-of-Multiple-Variables.html#index-integral3-1"><code>integral3</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Functions-of-Multiple-Variables.html">Functions of Multiple Variables</a></td></tr>
<tr><td></td><td valign="top"><a href="One_002ddimensional-Interpolation.html#index-interp1"><code>interp1</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="One_002ddimensional-Interpolation.html">One-dimensional Interpolation</a></td></tr>
<tr><td></td><td valign="top"><a href="One_002ddimensional-Interpolation.html#index-interp1-1"><code>interp1</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="One_002ddimensional-Interpolation.html">One-dimensional Interpolation</a></td></tr>
<tr><td></td><td valign="top"><a href="One_002ddimensional-Interpolation.html#index-interp1-2"><code>interp1</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="One_002ddimensional-Interpolation.html">One-dimensional Interpolation</a></td></tr>
<tr><td></td><td valign="top"><a href="One_002ddimensional-Interpolation.html#index-interp1-3"><code>interp1</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="One_002ddimensional-Interpolation.html">One-dimensional Interpolation</a></td></tr>
<tr><td></td><td valign="top"><a href="One_002ddimensional-Interpolation.html#index-interp1-4"><code>interp1</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="One_002ddimensional-Interpolation.html">One-dimensional Interpolation</a></td></tr>
<tr><td></td><td valign="top"><a href="One_002ddimensional-Interpolation.html#index-interp1-5"><code>interp1</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="One_002ddimensional-Interpolation.html">One-dimensional Interpolation</a></td></tr>
<tr><td></td><td valign="top"><a href="One_002ddimensional-Interpolation.html#index-interp1-6"><code>interp1</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="One_002ddimensional-Interpolation.html">One-dimensional Interpolation</a></td></tr>
<tr><td></td><td valign="top"><a href="Multi_002ddimensional-Interpolation.html#index-interp2"><code>interp2</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Multi_002ddimensional-Interpolation.html">Multi-dimensional Interpolation</a></td></tr>
<tr><td></td><td valign="top"><a href="Multi_002ddimensional-Interpolation.html#index-interp2-1"><code>interp2</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Multi_002ddimensional-Interpolation.html">Multi-dimensional Interpolation</a></td></tr>
<tr><td></td><td valign="top"><a href="Multi_002ddimensional-Interpolation.html#index-interp2-2"><code>interp2</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Multi_002ddimensional-Interpolation.html">Multi-dimensional Interpolation</a></td></tr>
<tr><td></td><td valign="top"><a href="Multi_002ddimensional-Interpolation.html#index-interp2-3"><code>interp2</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Multi_002ddimensional-Interpolation.html">Multi-dimensional Interpolation</a></td></tr>
<tr><td></td><td valign="top"><a href="Multi_002ddimensional-Interpolation.html#index-interp2-4"><code>interp2</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Multi_002ddimensional-Interpolation.html">Multi-dimensional Interpolation</a></td></tr>
<tr><td></td><td valign="top"><a href="Multi_002ddimensional-Interpolation.html#index-interp2-5"><code>interp2</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Multi_002ddimensional-Interpolation.html">Multi-dimensional Interpolation</a></td></tr>
<tr><td></td><td valign="top"><a href="Multi_002ddimensional-Interpolation.html#index-interp3"><code>interp3</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Multi_002ddimensional-Interpolation.html">Multi-dimensional Interpolation</a></td></tr>
<tr><td></td><td valign="top"><a href="Multi_002ddimensional-Interpolation.html#index-interp3-1"><code>interp3</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Multi_002ddimensional-Interpolation.html">Multi-dimensional Interpolation</a></td></tr>
<tr><td></td><td valign="top"><a href="Multi_002ddimensional-Interpolation.html#index-interp3-2"><code>interp3</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Multi_002ddimensional-Interpolation.html">Multi-dimensional Interpolation</a></td></tr>
<tr><td></td><td valign="top"><a href="Multi_002ddimensional-Interpolation.html#index-interp3-3"><code>interp3</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Multi_002ddimensional-Interpolation.html">Multi-dimensional Interpolation</a></td></tr>
<tr><td></td><td valign="top"><a href="Multi_002ddimensional-Interpolation.html#index-interp3-4"><code>interp3</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Multi_002ddimensional-Interpolation.html">Multi-dimensional Interpolation</a></td></tr>
<tr><td></td><td valign="top"><a href="Multi_002ddimensional-Interpolation.html#index-interp3-5"><code>interp3</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Multi_002ddimensional-Interpolation.html">Multi-dimensional Interpolation</a></td></tr>
<tr><td></td><td valign="top"><a href="One_002ddimensional-Interpolation.html#index-interpft"><code>interpft</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="One_002ddimensional-Interpolation.html">One-dimensional Interpolation</a></td></tr>
<tr><td></td><td valign="top"><a href="One_002ddimensional-Interpolation.html#index-interpft-1"><code>interpft</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="One_002ddimensional-Interpolation.html">One-dimensional Interpolation</a></td></tr>
<tr><td></td><td valign="top"><a href="Multi_002ddimensional-Interpolation.html#index-interpn"><code>interpn</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Multi_002ddimensional-Interpolation.html">Multi-dimensional Interpolation</a></td></tr>
<tr><td></td><td valign="top"><a href="Multi_002ddimensional-Interpolation.html#index-interpn-1"><code>interpn</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Multi_002ddimensional-Interpolation.html">Multi-dimensional Interpolation</a></td></tr>
<tr><td></td><td valign="top"><a href="Multi_002ddimensional-Interpolation.html#index-interpn-2"><code>interpn</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Multi_002ddimensional-Interpolation.html">Multi-dimensional Interpolation</a></td></tr>
<tr><td></td><td valign="top"><a href="Multi_002ddimensional-Interpolation.html#index-interpn-3"><code>interpn</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Multi_002ddimensional-Interpolation.html">Multi-dimensional Interpolation</a></td></tr>
<tr><td></td><td valign="top"><a href="Multi_002ddimensional-Interpolation.html#index-interpn-4"><code>interpn</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Multi_002ddimensional-Interpolation.html">Multi-dimensional Interpolation</a></td></tr>
<tr><td></td><td valign="top"><a href="Multi_002ddimensional-Interpolation.html#index-interpn-5"><code>interpn</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Multi_002ddimensional-Interpolation.html">Multi-dimensional Interpolation</a></td></tr>
<tr><td></td><td valign="top"><a href="Set-Operations.html#index-intersect"><code>intersect</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Set-Operations.html">Set Operations</a></td></tr>
<tr><td></td><td valign="top"><a href="Set-Operations.html#index-intersect-1"><code>intersect</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Set-Operations.html">Set Operations</a></td></tr>
<tr><td></td><td valign="top"><a href="Set-Operations.html#index-intersect-2"><code>intersect</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Set-Operations.html">Set Operations</a></td></tr>
<tr><td></td><td valign="top"><a href="Set-Operations.html#index-intersect-3"><code>intersect</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Set-Operations.html">Set Operations</a></td></tr>
<tr><td></td><td valign="top"><a href="Set-Operations.html#index-intersect-4"><code>intersect</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Set-Operations.html">Set Operations</a></td></tr>
<tr><td></td><td valign="top"><a href="Set-Operations.html#index-intersect-5"><code>intersect</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Set-Operations.html">Set Operations</a></td></tr>
<tr><td></td><td valign="top"><a href="Integer-Data-Types.html#index-intmax"><code>intmax</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Integer-Data-Types.html">Integer Data Types</a></td></tr>
<tr><td></td><td valign="top"><a href="Integer-Data-Types.html#index-intmax-1"><code>intmax</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Integer-Data-Types.html">Integer Data Types</a></td></tr>
<tr><td></td><td valign="top"><a href="Integer-Data-Types.html#index-intmax-2"><code>intmax</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Integer-Data-Types.html">Integer Data Types</a></td></tr>
<tr><td></td><td valign="top"><a href="Integer-Data-Types.html#index-intmin"><code>intmin</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Integer-Data-Types.html">Integer Data Types</a></td></tr>
<tr><td></td><td valign="top"><a href="Integer-Data-Types.html#index-intmin-1"><code>intmin</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Integer-Data-Types.html">Integer Data Types</a></td></tr>
<tr><td></td><td valign="top"><a href="Integer-Data-Types.html#index-intmin-2"><code>intmin</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Integer-Data-Types.html">Integer Data Types</a></td></tr>
<tr><td></td><td valign="top"><a href="Basic-Matrix-Functions.html#index-inv"><code>inv</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Basic-Matrix-Functions.html">Basic Matrix Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Basic-Matrix-Functions.html#index-inv-1"><code>inv</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Basic-Matrix-Functions.html">Basic Matrix Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Basic-Matrix-Functions.html#index-inverse"><code>inverse</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Basic-Matrix-Functions.html">Basic Matrix Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Famous-Matrices.html#index-invhilb"><code>invhilb</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Famous-Matrices.html">Famous Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Rearranging-Matrices.html#index-ipermute"><code>ipermute</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Rearranging-Matrices.html">Rearranging Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Descriptive-Statistics.html#index-iqr"><code>iqr</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Descriptive-Statistics.html">Descriptive Statistics</a></td></tr>
<tr><td></td><td valign="top"><a href="Descriptive-Statistics.html#index-iqr-1"><code>iqr</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Descriptive-Statistics.html">Descriptive Statistics</a></td></tr>
<tr><td></td><td valign="top"><a href="Descriptive-Statistics.html#index-iqr-2"><code>iqr</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Descriptive-Statistics.html">Descriptive Statistics</a></td></tr>
<tr><td></td><td valign="top"><a href="Built_002din-Data-Types.html#index-isa"><code>isa</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Built_002din-Data-Types.html">Built-in Data Types</a></td></tr>
<tr><td></td><td valign="top"><a href="Character-Class-Functions.html#index-isalnum"><code>isalnum</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Character-Class-Functions.html">Character Class Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Character-Class-Functions.html#index-isalpha"><code>isalpha</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Character-Class-Functions.html">Character Class Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Application_002ddefined-Data.html#index-isappdata"><code>isappdata</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Application_002ddefined-Data.html">Application-defined Data</a></td></tr>
<tr><td></td><td valign="top"><a href="Ignoring-Arguments.html#index-isargout"><code>isargout</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Ignoring-Arguments.html">Ignoring Arguments</a></td></tr>
<tr><td></td><td valign="top"><a href="Character-Class-Functions.html#index-isascii"><code>isascii</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Character-Class-Functions.html">Character Class Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Graphics-Objects.html#index-isaxes"><code>isaxes</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Graphics-Objects.html">Graphics Objects</a></td></tr>
<tr><td></td><td valign="top"><a href="Predicates-for-Numeric-Objects.html#index-isbanded"><code>isbanded</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Predicates-for-Numeric-Objects.html">Predicates for Numeric Objects</a></td></tr>
<tr><td></td><td valign="top"><a href="Predicates-for-Numeric-Objects.html#index-isbool"><code>isbool</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Predicates-for-Numeric-Objects.html">Predicates for Numeric Objects</a></td></tr>
<tr><td></td><td valign="top"><a href="Basic-Usage-of-Cell-Arrays.html#index-iscell"><code>iscell</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Basic-Usage-of-Cell-Arrays.html">Basic Usage of Cell Arrays</a></td></tr>
<tr><td></td><td valign="top"><a href="Cell-Arrays-of-Strings.html#index-iscellstr"><code>iscellstr</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Cell-Arrays-of-Strings.html">Cell Arrays of Strings</a></td></tr>
<tr><td></td><td valign="top"><a href="Character-Arrays.html#index-ischar"><code>ischar</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Character-Arrays.html">Character Arrays</a></td></tr>
<tr><td></td><td valign="top"><a href="Character-Class-Functions.html#index-iscntrl"><code>iscntrl</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Character-Class-Functions.html">Character Class Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Representing-Images.html#index-iscolormap"><code>iscolormap</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Representing-Images.html">Representing Images</a></td></tr>
<tr><td></td><td valign="top"><a href="Predicates-for-Numeric-Objects.html#index-iscolumn"><code>iscolumn</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Predicates-for-Numeric-Objects.html">Predicates for Numeric Objects</a></td></tr>
<tr><td></td><td valign="top"><a href="Predicates-for-Numeric-Objects.html#index-iscomplex"><code>iscomplex</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Predicates-for-Numeric-Objects.html">Predicates for Numeric Objects</a></td></tr>
<tr><td></td><td valign="top"><a href="Debug-Mode.html#index-isdebugmode"><code>isdebugmode</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Debug-Mode.html">Debug Mode</a></td></tr>
<tr><td></td><td valign="top"><a href="Predicates-for-Numeric-Objects.html#index-isdefinite"><code>isdefinite</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Predicates-for-Numeric-Objects.html">Predicates for Numeric Objects</a></td></tr>
<tr><td></td><td valign="top"><a href="Predicates-for-Numeric-Objects.html#index-isdefinite-1"><code>isdefinite</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Predicates-for-Numeric-Objects.html">Predicates for Numeric Objects</a></td></tr>
<tr><td></td><td valign="top"><a href="System-Information.html#index-isdeployed"><code>isdeployed</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="System-Information.html">System Information</a></td></tr>
<tr><td></td><td valign="top"><a href="Predicates-for-Numeric-Objects.html#index-isdiag"><code>isdiag</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Predicates-for-Numeric-Objects.html">Predicates for Numeric Objects</a></td></tr>
<tr><td></td><td valign="top"><a href="Character-Class-Functions.html#index-isdigit"><code>isdigit</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Character-Class-Functions.html">Character Class Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Filesystem-Utilities.html#index-isdir"><code>isdir</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Filesystem-Utilities.html">Filesystem Utilities</a></td></tr>
<tr><td></td><td valign="top"><a href="Object-Sizes.html#index-isempty"><code>isempty</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Object-Sizes.html">Object Sizes</a></td></tr>
<tr><td></td><td valign="top"><a href="Comparison-Ops.html#index-isequal"><code>isequal</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Comparison-Ops.html">Comparison Ops</a></td></tr>
<tr><td></td><td valign="top"><a href="Comparison-Ops.html#index-isequaln"><code>isequaln</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Comparison-Ops.html">Comparison Ops</a></td></tr>
<tr><td></td><td valign="top"><a href="Manipulating-Structures.html#index-isfield"><code>isfield</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Manipulating-Structures.html">Manipulating Structures</a></td></tr>
<tr><td></td><td valign="top"><a href="Manipulating-Structures.html#index-isfield-1"><code>isfield</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Manipulating-Structures.html">Manipulating Structures</a></td></tr>
<tr><td></td><td valign="top"><a href="Graphics-Objects.html#index-isfigure"><code>isfigure</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Graphics-Objects.html">Graphics Objects</a></td></tr>
<tr><td></td><td valign="top"><a href="Filesystem-Utilities.html#index-isfile"><code>isfile</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Filesystem-Utilities.html">Filesystem Utilities</a></td></tr>
<tr><td></td><td valign="top"><a href="Finding-Elements-and-Checking-Conditions.html#index-isfinite"><code>isfinite</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Finding-Elements-and-Checking-Conditions.html">Finding Elements and Checking Conditions</a></td></tr>
<tr><td></td><td valign="top"><a href="Predicates-for-Numeric-Objects.html#index-isfloat"><code>isfloat</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Predicates-for-Numeric-Objects.html">Predicates for Numeric Objects</a></td></tr>
<tr><td></td><td valign="top"><a href="Filesystem-Utilities.html#index-isfolder"><code>isfolder</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Filesystem-Utilities.html">Filesystem Utilities</a></td></tr>
<tr><td></td><td valign="top"><a href="Global-Variables.html#index-isglobal"><code>isglobal</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Global-Variables.html">Global Variables</a></td></tr>
<tr><td></td><td valign="top"><a href="Character-Class-Functions.html#index-isgraph"><code>isgraph</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Character-Class-Functions.html">Character Class Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Graphics-Objects.html#index-isgraphics"><code>isgraphics</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Graphics-Objects.html">Graphics Objects</a></td></tr>
<tr><td></td><td valign="top"><a href="Graphics-Objects.html#index-isgraphics-1"><code>isgraphics</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Graphics-Objects.html">Graphics Objects</a></td></tr>
<tr><td></td><td valign="top"><a href="GUI-Utility-Functions.html#index-isguirunning"><code>isguirunning</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="GUI-Utility-Functions.html">GUI Utility Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Graphics-Objects.html#index-ishandle"><code>ishandle</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Graphics-Objects.html">Graphics Objects</a></td></tr>
<tr><td></td><td valign="top"><a href="Predicates-for-Numeric-Objects.html#index-ishermitian"><code>ishermitian</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Predicates-for-Numeric-Objects.html">Predicates for Numeric Objects</a></td></tr>
<tr><td></td><td valign="top"><a href="Predicates-for-Numeric-Objects.html#index-ishermitian-1"><code>ishermitian</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Predicates-for-Numeric-Objects.html">Predicates for Numeric Objects</a></td></tr>
<tr><td></td><td valign="top"><a href="Predicates-for-Numeric-Objects.html#index-ishermitian-2"><code>ishermitian</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Predicates-for-Numeric-Objects.html">Predicates for Numeric Objects</a></td></tr>
<tr><td></td><td valign="top"><a href="Predicates-for-Numeric-Objects.html#index-ishermitian-3"><code>ishermitian</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Predicates-for-Numeric-Objects.html">Predicates for Numeric Objects</a></td></tr>
<tr><td></td><td valign="top"><a href="Graphics-Objects.html#index-ishghandle"><code>ishghandle</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Graphics-Objects.html">Graphics Objects</a></td></tr>
<tr><td></td><td valign="top"><a href="Manipulation-of-Plot-Windows.html#index-ishold"><code>ishold</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Manipulation-of-Plot-Windows.html">Manipulation of Plot Windows</a></td></tr>
<tr><td></td><td valign="top"><a href="Manipulation-of-Plot-Windows.html#index-ishold-1"><code>ishold</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Manipulation-of-Plot-Windows.html">Manipulation of Plot Windows</a></td></tr>
<tr><td></td><td valign="top"><a href="Manipulation-of-Plot-Windows.html#index-ishold-2"><code>ishold</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Manipulation-of-Plot-Windows.html">Manipulation of Plot Windows</a></td></tr>
<tr><td></td><td valign="top"><a href="System-Information.html#index-isieee"><code>isieee</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="System-Information.html">System Information</a></td></tr>
<tr><td></td><td valign="top"><a href="Advanced-Indexing.html#index-isindex"><code>isindex</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Advanced-Indexing.html">Advanced Indexing</a></td></tr>
<tr><td></td><td valign="top"><a href="Advanced-Indexing.html#index-isindex-1"><code>isindex</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Advanced-Indexing.html">Advanced Indexing</a></td></tr>
<tr><td></td><td valign="top"><a href="Finding-Elements-and-Checking-Conditions.html#index-isinf"><code>isinf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Finding-Elements-and-Checking-Conditions.html">Finding Elements and Checking Conditions</a></td></tr>
<tr><td></td><td valign="top"><a href="Integer-Data-Types.html#index-isinteger"><code>isinteger</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Integer-Data-Types.html">Integer Data Types</a></td></tr>
<tr><td></td><td valign="top"><a href="Java-Interface-Functions.html#index-isjava"><code>isjava</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Java-Interface-Functions.html">Java Interface Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Keywords.html#index-iskeyword"><code>iskeyword</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Keywords.html">Keywords</a></td></tr>
<tr><td></td><td valign="top"><a href="Keywords.html#index-iskeyword-1"><code>iskeyword</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Keywords.html">Keywords</a></td></tr>
<tr><td></td><td valign="top"><a href="Character-Class-Functions.html#index-isletter"><code>isletter</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Character-Class-Functions.html">Character Class Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Predicates-for-Numeric-Objects.html#index-islogical"><code>islogical</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Predicates-for-Numeric-Objects.html">Predicates for Numeric Objects</a></td></tr>
<tr><td></td><td valign="top"><a href="Character-Class-Functions.html#index-islower"><code>islower</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Character-Class-Functions.html">Character Class Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="System-Information.html#index-ismac"><code>ismac</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="System-Information.html">System Information</a></td></tr>
<tr><td></td><td valign="top"><a href="Predicates-for-Numeric-Objects.html#index-ismatrix"><code>ismatrix</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Predicates-for-Numeric-Objects.html">Predicates for Numeric Objects</a></td></tr>
<tr><td></td><td valign="top"><a href="Set-Operations.html#index-ismember"><code>ismember</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Set-Operations.html">Set Operations</a></td></tr>
<tr><td></td><td valign="top"><a href="Set-Operations.html#index-ismember-1"><code>ismember</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Set-Operations.html">Set Operations</a></td></tr>
<tr><td></td><td valign="top"><a href="Set-Operations.html#index-ismember-2"><code>ismember</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Set-Operations.html">Set Operations</a></td></tr>
<tr><td></td><td valign="top"><a href="Creating-a-Class.html#index-ismethod"><code>ismethod</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Creating-a-Class.html">Creating a Class</a></td></tr>
<tr><td></td><td valign="top"><a href="Creating-a-Class.html#index-ismethod-1"><code>ismethod</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Creating-a-Class.html">Creating a Class</a></td></tr>
<tr><td></td><td valign="top"><a href="Missing-Data.html#index-isna"><code>isna</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Missing-Data.html">Missing Data</a></td></tr>
<tr><td></td><td valign="top"><a href="Finding-Elements-and-Checking-Conditions.html#index-isnan"><code>isnan</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Finding-Elements-and-Checking-Conditions.html">Finding Elements and Checking Conditions</a></td></tr>
<tr><td></td><td valign="top"><a href="Object-Sizes.html#index-isnull"><code>isnull</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Object-Sizes.html">Object Sizes</a></td></tr>
<tr><td></td><td valign="top"><a href="Predicates-for-Numeric-Objects.html#index-isnumeric"><code>isnumeric</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Predicates-for-Numeric-Objects.html">Predicates for Numeric Objects</a></td></tr>
<tr><td></td><td valign="top"><a href="Creating-a-Class.html#index-isobject"><code>isobject</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Creating-a-Class.html">Creating a Class</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-isocaps"><code>isocaps</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-isocaps-1"><code>isocaps</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-isocaps-2"><code>isocaps</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-isocaps-3"><code>isocaps</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-isocaps-4"><code>isocaps</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-isocaps-5"><code>isocaps</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-isocaps-6"><code>isocaps</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-isocaps-7"><code>isocaps</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-isocaps-8"><code>isocaps</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-isocolors"><code>isocolors</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-isocolors-1"><code>isocolors</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-isocolors-2"><code>isocolors</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-isocolors-3"><code>isocolors</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-isocolors-4"><code>isocolors</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-isocolors-5"><code>isocolors</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-isonormals"><code>isonormals</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-isonormals-1"><code>isonormals</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-isonormals-2"><code>isonormals</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-isonormals-3"><code>isonormals</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-isonormals-4"><code>isonormals</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-isonormals-5"><code>isonormals</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-isonormals-6"><code>isonormals</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-isonormals-7"><code>isonormals</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-isosurface"><code>isosurface</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-isosurface-1"><code>isosurface</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-isosurface-2"><code>isosurface</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-isosurface-3"><code>isosurface</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-isosurface-4"><code>isosurface</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-isosurface-5"><code>isosurface</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-isosurface-6"><code>isosurface</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-isosurface-7"><code>isosurface</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-isosurface-8"><code>isosurface</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-isosurface-9"><code>isosurface</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="System-Information.html#index-ispc"><code>ispc</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="System-Information.html">System Information</a></td></tr>
<tr><td></td><td valign="top"><a href="Playback.html#index-isplaying"><code>isplaying</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Playback.html">Playback</a></td></tr>
<tr><td></td><td valign="top"><a href="User_002dDefined-Preferences.html#index-ispref"><code>ispref</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="User_002dDefined-Preferences.html">User-Defined Preferences</a></td></tr>
<tr><td></td><td valign="top"><a href="User_002dDefined-Preferences.html#index-ispref-1"><code>ispref</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="User_002dDefined-Preferences.html">User-Defined Preferences</a></td></tr>
<tr><td></td><td valign="top"><a href="User_002dDefined-Preferences.html#index-ispref-2"><code>ispref</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="User_002dDefined-Preferences.html">User-Defined Preferences</a></td></tr>
<tr><td></td><td valign="top"><a href="Predicates-for-Numeric-Objects.html#index-isprime"><code>isprime</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Predicates-for-Numeric-Objects.html">Predicates for Numeric Objects</a></td></tr>
<tr><td></td><td valign="top"><a href="Character-Class-Functions.html#index-isprint"><code>isprint</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Character-Class-Functions.html">Character Class Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Introduction-to-Graphics-Structures.html#index-isprop"><code>isprop</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Introduction-to-Graphics-Structures.html">Introduction to Graphics Structures</a></td></tr>
<tr><td></td><td valign="top"><a href="Character-Class-Functions.html#index-ispunct"><code>ispunct</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Character-Class-Functions.html">Character Class Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Predicates-for-Numeric-Objects.html#index-isreal"><code>isreal</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Predicates-for-Numeric-Objects.html">Predicates for Numeric Objects</a></td></tr>
<tr><td></td><td valign="top"><a href="Recording.html#index-isrecording"><code>isrecording</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Recording.html">Recording</a></td></tr>
<tr><td></td><td valign="top"><a href="Predicates-for-Numeric-Objects.html#index-isrow"><code>isrow</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Predicates-for-Numeric-Objects.html">Predicates for Numeric Objects</a></td></tr>
<tr><td></td><td valign="top"><a href="Predicates-for-Numeric-Objects.html#index-isscalar"><code>isscalar</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Predicates-for-Numeric-Objects.html">Predicates for Numeric Objects</a></td></tr>
<tr><td></td><td valign="top"><a href="Rearranging-Matrices.html#index-issorted"><code>issorted</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Rearranging-Matrices.html">Rearranging Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Rearranging-Matrices.html#index-issorted-1"><code>issorted</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Rearranging-Matrices.html">Rearranging Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Rearranging-Matrices.html#index-issorted-2"><code>issorted</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Rearranging-Matrices.html">Rearranging Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Character-Class-Functions.html#index-isspace"><code>isspace</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Character-Class-Functions.html">Character Class Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Information.html#index-issparse"><code>issparse</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Information.html">Information</a></td></tr>
<tr><td></td><td valign="top"><a href="Predicates-for-Numeric-Objects.html#index-issquare"><code>issquare</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Predicates-for-Numeric-Objects.html">Predicates for Numeric Objects</a></td></tr>
<tr><td></td><td valign="top"><a href="Character-Arrays.html#index-isstring"><code>isstring</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Character-Arrays.html">Character Arrays</a></td></tr>
<tr><td></td><td valign="top"><a href="Character-Class-Functions.html#index-isstrprop"><code>isstrprop</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Character-Class-Functions.html">Character Class Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Creating-Structures.html#index-isstruct"><code>isstruct</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Creating-Structures.html">Creating Structures</a></td></tr>
<tr><td></td><td valign="top"><a href="System-Information.html#index-isstudent"><code>isstudent</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="System-Information.html">System Information</a></td></tr>
<tr><td></td><td valign="top"><a href="Predicates-for-Numeric-Objects.html#index-issymmetric"><code>issymmetric</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Predicates-for-Numeric-Objects.html">Predicates for Numeric Objects</a></td></tr>
<tr><td></td><td valign="top"><a href="Predicates-for-Numeric-Objects.html#index-issymmetric-1"><code>issymmetric</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Predicates-for-Numeric-Objects.html">Predicates for Numeric Objects</a></td></tr>
<tr><td></td><td valign="top"><a href="Predicates-for-Numeric-Objects.html#index-issymmetric-2"><code>issymmetric</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Predicates-for-Numeric-Objects.html">Predicates for Numeric Objects</a></td></tr>
<tr><td></td><td valign="top"><a href="Predicates-for-Numeric-Objects.html#index-issymmetric-3"><code>issymmetric</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Predicates-for-Numeric-Objects.html">Predicates for Numeric Objects</a></td></tr>
<tr><td></td><td valign="top"><a href="Predicates-for-Numeric-Objects.html#index-istril"><code>istril</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Predicates-for-Numeric-Objects.html">Predicates for Numeric Objects</a></td></tr>
<tr><td></td><td valign="top"><a href="Predicates-for-Numeric-Objects.html#index-istriu"><code>istriu</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Predicates-for-Numeric-Objects.html">Predicates for Numeric Objects</a></td></tr>
<tr><td></td><td valign="top"><a href="System-Information.html#index-isunix"><code>isunix</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="System-Information.html">System Information</a></td></tr>
<tr><td></td><td valign="top"><a href="Character-Class-Functions.html#index-isupper"><code>isupper</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Character-Class-Functions.html">Character Class Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Variables.html#index-isvarname"><code>isvarname</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Variables.html">Variables</a></td></tr>
<tr><td></td><td valign="top"><a href="Predicates-for-Numeric-Objects.html#index-isvector"><code>isvector</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Predicates-for-Numeric-Objects.html">Predicates for Numeric Objects</a></td></tr>
<tr><td></td><td valign="top"><a href="Character-Class-Functions.html#index-isxdigit"><code>isxdigit</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Character-Class-Functions.html">Character Class Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Filesystem-Utilities.html#index-is_005fabsolute_005ffilename"><code>is_absolute_filename</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Filesystem-Utilities.html">Filesystem Utilities</a></td></tr>
<tr><td></td><td valign="top"><a href="Escape-Sequences-in-String-Constants.html#index-is_005fdq_005fstring"><code>is_dq_string</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Escape-Sequences-in-String-Constants.html">Escape Sequences in String Constants</a></td></tr>
<tr><td></td><td valign="top"><a href="Function-Handles.html#index-is_005ffunction_005fhandle"><code>is_function_handle</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Function-Handles.html">Function Handles</a></td></tr>
<tr><td></td><td valign="top"><a href="Timing-Utilities.html#index-is_005fleap_005fyear"><code>is_leap_year</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Timing-Utilities.html">Timing Utilities</a></td></tr>
<tr><td></td><td valign="top"><a href="Timing-Utilities.html#index-is_005fleap_005fyear-1"><code>is_leap_year</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Timing-Utilities.html">Timing Utilities</a></td></tr>
<tr><td></td><td valign="top"><a href="Filesystem-Utilities.html#index-is_005frooted_005frelative_005ffilename"><code>is_rooted_relative_filename</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Filesystem-Utilities.html">Filesystem Utilities</a></td></tr>
<tr><td></td><td valign="top"><a href="Filesystem-Utilities.html#index-is_005fsame_005ffile"><code>is_same_file</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Filesystem-Utilities.html">Filesystem Utilities</a></td></tr>
<tr><td></td><td valign="top"><a href="Escape-Sequences-in-String-Constants.html#index-is_005fsq_005fstring"><code>is_sq_string</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Escape-Sequences-in-String-Constants.html">Escape Sequences in String Constants</a></td></tr>
<tr><td></td><td valign="top"><a href="Opening-and-Closing-Files.html#index-is_005fvalid_005ffile_005fid"><code>is_valid_file_id</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Opening-and-Closing-Files.html">Opening and Closing Files</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th id="Function-Index_fn_letter-J">J</th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="Mathematical-Constants.html#index-j"><code>j</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Mathematical-Constants.html">Mathematical Constants</a></td></tr>
<tr><td></td><td valign="top"><a href="Mathematical-Constants.html#index-J"><code>J</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Mathematical-Constants.html">Mathematical Constants</a></td></tr>
<tr><td></td><td valign="top"><a href="Java-Interface-Functions.html#index-javaaddpath"><code>javaaddpath</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Java-Interface-Functions.html">Java Interface Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Java-Interface-Functions.html#index-javaaddpath-1"><code>javaaddpath</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Java-Interface-Functions.html">Java Interface Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Java-Interface-Functions.html#index-javaaddpath-2"><code>javaaddpath</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Java-Interface-Functions.html">Java Interface Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Java-Interface-Functions.html#index-javaaddpath-3"><code>javaaddpath</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Java-Interface-Functions.html">Java Interface Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Java-Interface-Functions.html#index-javaaddpath-4"><code>javaaddpath</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Java-Interface-Functions.html">Java Interface Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Java-Interface-Functions.html#index-javaArray"><code>javaArray</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Java-Interface-Functions.html">Java Interface Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Java-Interface-Functions.html#index-javaArray-1"><code>javaArray</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Java-Interface-Functions.html">Java Interface Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Java-Interface-Functions.html#index-javachk"><code>javachk</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Java-Interface-Functions.html">Java Interface Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Java-Interface-Functions.html#index-javachk-1"><code>javachk</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Java-Interface-Functions.html">Java Interface Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Java-Interface-Functions.html#index-javachk-2"><code>javachk</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Java-Interface-Functions.html">Java Interface Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Java-Interface-Functions.html#index-javaclasspath"><code>javaclasspath</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Java-Interface-Functions.html">Java Interface Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Java-Interface-Functions.html#index-javaclasspath-1"><code>javaclasspath</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Java-Interface-Functions.html">Java Interface Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Java-Interface-Functions.html#index-javaclasspath-2"><code>javaclasspath</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Java-Interface-Functions.html">Java Interface Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Java-Interface-Functions.html#index-javaclasspath-3"><code>javaclasspath</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Java-Interface-Functions.html">Java Interface Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Java-Interface-Functions.html#index-javamem"><code>javamem</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Java-Interface-Functions.html">Java Interface Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Java-Interface-Functions.html#index-javamem-1"><code>javamem</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Java-Interface-Functions.html">Java Interface Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Java-Interface-Functions.html#index-javaMethod"><code>javaMethod</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Java-Interface-Functions.html">Java Interface Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Java-Interface-Functions.html#index-javaMethod-1"><code>javaMethod</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Java-Interface-Functions.html">Java Interface Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Java-Interface-Functions.html#index-javaObject"><code>javaObject</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Java-Interface-Functions.html">Java Interface Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Java-Interface-Functions.html#index-javaObject-1"><code>javaObject</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Java-Interface-Functions.html">Java Interface Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Java-Interface-Functions.html#index-javarmpath"><code>javarmpath</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Java-Interface-Functions.html">Java Interface Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Java-Interface-Functions.html#index-javarmpath-1"><code>javarmpath</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Java-Interface-Functions.html">Java Interface Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Java-Interface-Functions.html#index-javarmpath-2"><code>javarmpath</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Java-Interface-Functions.html">Java Interface Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Java-Interface-Functions.html#index-java_005fget"><code>java_get</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Java-Interface-Functions.html">Java Interface Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Java-Interface-Functions.html#index-java_005fmatrix_005fautoconversion"><code>java_matrix_autoconversion</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Java-Interface-Functions.html">Java Interface Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Java-Interface-Functions.html#index-java_005fmatrix_005fautoconversion-1"><code>java_matrix_autoconversion</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Java-Interface-Functions.html">Java Interface Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Java-Interface-Functions.html#index-java_005fmatrix_005fautoconversion-2"><code>java_matrix_autoconversion</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Java-Interface-Functions.html">Java Interface Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Java-Interface-Functions.html#index-java_005fset"><code>java_set</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Java-Interface-Functions.html">Java Interface Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Java-Interface-Functions.html#index-java_005funsigned_005fautoconversion"><code>java_unsigned_autoconversion</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Java-Interface-Functions.html">Java Interface Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Java-Interface-Functions.html#index-java_005funsigned_005fautoconversion-1"><code>java_unsigned_autoconversion</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Java-Interface-Functions.html">Java Interface Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Java-Interface-Functions.html#index-java_005funsigned_005fautoconversion-2"><code>java_unsigned_autoconversion</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Java-Interface-Functions.html">Java Interface Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Representing-Images.html#index-jet"><code>jet</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Representing-Images.html">Representing Images</a></td></tr>
<tr><td></td><td valign="top"><a href="Representing-Images.html#index-jet-1"><code>jet</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Representing-Images.html">Representing Images</a></td></tr>
<tr><td></td><td valign="top"><a href="JSON-data-encoding_002fdecoding.html#index-jsondecode"><code>jsondecode</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="JSON-data-encoding_002fdecoding.html">JSON data encoding/decoding</a></td></tr>
<tr><td></td><td valign="top"><a href="JSON-data-encoding_002fdecoding.html#index-jsondecode-1"><code>jsondecode</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="JSON-data-encoding_002fdecoding.html">JSON data encoding/decoding</a></td></tr>
<tr><td></td><td valign="top"><a href="JSON-data-encoding_002fdecoding.html#index-jsondecode-2"><code>jsondecode</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="JSON-data-encoding_002fdecoding.html">JSON data encoding/decoding</a></td></tr>
<tr><td></td><td valign="top"><a href="JSON-data-encoding_002fdecoding.html#index-jsondecode-3"><code>jsondecode</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="JSON-data-encoding_002fdecoding.html">JSON data encoding/decoding</a></td></tr>
<tr><td></td><td valign="top"><a href="JSON-data-encoding_002fdecoding.html#index-jsonencode"><code>jsonencode</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="JSON-data-encoding_002fdecoding.html">JSON data encoding/decoding</a></td></tr>
<tr><td></td><td valign="top"><a href="JSON-data-encoding_002fdecoding.html#index-jsonencode-1"><code>jsonencode</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="JSON-data-encoding_002fdecoding.html">JSON data encoding/decoding</a></td></tr>
<tr><td></td><td valign="top"><a href="JSON-data-encoding_002fdecoding.html#index-jsonencode-2"><code>jsonencode</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="JSON-data-encoding_002fdecoding.html">JSON data encoding/decoding</a></td></tr>
<tr><td></td><td valign="top"><a href="Jupyter-Notebooks.html#index-jupyter_005fnotebook"><code>jupyter_notebook</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Jupyter-Notebooks.html">Jupyter Notebooks</a></td></tr>
<tr><td></td><td valign="top"><a href="Jupyter-Notebooks.html#index-jupyter_005fnotebook-1"><code>jupyter_notebook</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Jupyter-Notebooks.html">Jupyter Notebooks</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th id="Function-Index_fn_letter-K">K</th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="Terminal-Input.html#index-kbhit"><code>kbhit</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Terminal-Input.html">Terminal Input</a></td></tr>
<tr><td></td><td valign="top"><a href="Terminal-Input.html#index-kbhit-1"><code>kbhit</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Terminal-Input.html">Terminal Input</a></td></tr>
<tr><td></td><td valign="top"><a href="Correlation-and-Regression-Analysis.html#index-kendall"><code>kendall</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Correlation-and-Regression-Analysis.html">Correlation and Regression Analysis</a></td></tr>
<tr><td></td><td valign="top"><a href="Correlation-and-Regression-Analysis.html#index-kendall-1"><code>kendall</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Correlation-and-Regression-Analysis.html">Correlation and Regression Analysis</a></td></tr>
<tr><td></td><td valign="top"><a href="Breakpoints.html#index-keyboard"><code>keyboard</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Breakpoints.html">Breakpoints</a></td></tr>
<tr><td></td><td valign="top"><a href="Breakpoints.html#index-keyboard-1"><code>keyboard</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Breakpoints.html">Breakpoints</a></td></tr>
<tr><td></td><td valign="top"><a href="Controlling-Subprocesses.html#index-kill"><code>kill</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Controlling-Subprocesses.html">Controlling Subprocesses</a></td></tr>
<tr><td></td><td valign="top"><a href="Controlling-Subprocesses.html#index-kill-1"><code>kill</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Controlling-Subprocesses.html">Controlling Subprocesses</a></td></tr>
<tr><td></td><td valign="top"><a href="Functions-of-a-Matrix.html#index-kron"><code>kron</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Functions-of-a-Matrix.html">Functions of a Matrix</a></td></tr>
<tr><td></td><td valign="top"><a href="Functions-of-a-Matrix.html#index-kron-1"><code>kron</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Functions-of-a-Matrix.html">Functions of a Matrix</a></td></tr>
<tr><td></td><td valign="top"><a href="Matrix-Factorizations.html#index-krylov"><code>krylov</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Matrix-Factorizations.html">Matrix Factorizations</a></td></tr>
<tr><td></td><td valign="top"><a href="Descriptive-Statistics.html#index-kurtosis"><code>kurtosis</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Descriptive-Statistics.html">Descriptive Statistics</a></td></tr>
<tr><td></td><td valign="top"><a href="Descriptive-Statistics.html#index-kurtosis-1"><code>kurtosis</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Descriptive-Statistics.html">Descriptive Statistics</a></td></tr>
<tr><td></td><td valign="top"><a href="Descriptive-Statistics.html#index-kurtosis-2"><code>kurtosis</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Descriptive-Statistics.html">Descriptive Statistics</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th id="Function-Index_fn_letter-L">L</th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="Catching-Errors.html#index-lasterr"><code>lasterr</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Catching-Errors.html">Catching Errors</a></td></tr>
<tr><td></td><td valign="top"><a href="Catching-Errors.html#index-lasterr-1"><code>lasterr</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Catching-Errors.html">Catching Errors</a></td></tr>
<tr><td></td><td valign="top"><a href="Catching-Errors.html#index-lasterr-2"><code>lasterr</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Catching-Errors.html">Catching Errors</a></td></tr>
<tr><td></td><td valign="top"><a href="Catching-Errors.html#index-lasterror"><code>lasterror</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Catching-Errors.html">Catching Errors</a></td></tr>
<tr><td></td><td valign="top"><a href="Catching-Errors.html#index-lasterror-1"><code>lasterror</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Catching-Errors.html">Catching Errors</a></td></tr>
<tr><td></td><td valign="top"><a href="Catching-Errors.html#index-lasterror-2"><code>lasterror</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Catching-Errors.html">Catching Errors</a></td></tr>
<tr><td></td><td valign="top"><a href="Issuing-Warnings.html#index-lastwarn"><code>lastwarn</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Issuing-Warnings.html">Issuing Warnings</a></td></tr>
<tr><td></td><td valign="top"><a href="Issuing-Warnings.html#index-lastwarn-1"><code>lastwarn</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Issuing-Warnings.html">Issuing Warnings</a></td></tr>
<tr><td></td><td valign="top"><a href="Issuing-Warnings.html#index-lastwarn-2"><code>lastwarn</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Issuing-Warnings.html">Issuing Warnings</a></td></tr>
<tr><td></td><td valign="top"><a href="Utility-Functions.html#index-lcm"><code>lcm</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Utility-Functions.html">Utility Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Utility-Functions.html#index-lcm-1"><code>lcm</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Utility-Functions.html">Utility Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Arithmetic-Ops.html#index-ldivide"><code>ldivide</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Arithmetic-Ops.html">Arithmetic Ops</a></td></tr>
<tr><td></td><td valign="top"><a href="Comparison-Ops.html#index-le"><code>le</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Comparison-Ops.html">Comparison Ops</a></td></tr>
<tr><td></td><td valign="top"><a href="Plot-Annotations.html#index-legend"><code>legend</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Plot-Annotations.html">Plot Annotations</a></td></tr>
<tr><td></td><td valign="top"><a href="Plot-Annotations.html#index-legend-1"><code>legend</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Plot-Annotations.html">Plot Annotations</a></td></tr>
<tr><td></td><td valign="top"><a href="Plot-Annotations.html#index-legend-2"><code>legend</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Plot-Annotations.html">Plot Annotations</a></td></tr>
<tr><td></td><td valign="top"><a href="Plot-Annotations.html#index-legend-3"><code>legend</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Plot-Annotations.html">Plot Annotations</a></td></tr>
<tr><td></td><td valign="top"><a href="Plot-Annotations.html#index-legend-4"><code>legend</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Plot-Annotations.html">Plot Annotations</a></td></tr>
<tr><td></td><td valign="top"><a href="Plot-Annotations.html#index-legend-5"><code>legend</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Plot-Annotations.html">Plot Annotations</a></td></tr>
<tr><td></td><td valign="top"><a href="Plot-Annotations.html#index-legend-6"><code>legend</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Plot-Annotations.html">Plot Annotations</a></td></tr>
<tr><td></td><td valign="top"><a href="Plot-Annotations.html#index-legend-7"><code>legend</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Plot-Annotations.html">Plot Annotations</a></td></tr>
<tr><td></td><td valign="top"><a href="Plot-Annotations.html#index-legend-8"><code>legend</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Plot-Annotations.html">Plot Annotations</a></td></tr>
<tr><td></td><td valign="top"><a href="Plot-Annotations.html#index-legend-9"><code>legend</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Plot-Annotations.html">Plot Annotations</a></td></tr>
<tr><td></td><td valign="top"><a href="Plot-Annotations.html#index-legend-10"><code>legend</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Plot-Annotations.html">Plot Annotations</a></td></tr>
<tr><td></td><td valign="top"><a href="Special-Functions.html#index-legendre"><code>legendre</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Special-Functions.html">Special Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Special-Functions.html#index-legendre-1"><code>legendre</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Special-Functions.html">Special Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Object-Sizes.html#index-length"><code>length</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Object-Sizes.html">Object Sizes</a></td></tr>
<tr><td></td><td valign="top"><a href="Special-Functions.html#index-lgamma"><code>lgamma</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Special-Functions.html">Special Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="System-Information.html#index-license"><code>license</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="System-Information.html">System Information</a></td></tr>
<tr><td></td><td valign="top"><a href="System-Information.html#index-license-1"><code>license</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="System-Information.html">System Information</a></td></tr>
<tr><td></td><td valign="top"><a href="System-Information.html#index-license-2"><code>license</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="System-Information.html">System Information</a></td></tr>
<tr><td></td><td valign="top"><a href="System-Information.html#index-license-3"><code>license</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="System-Information.html">System Information</a></td></tr>
<tr><td></td><td valign="top"><a href="System-Information.html#index-license-4"><code>license</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="System-Information.html">System Information</a></td></tr>
<tr><td></td><td valign="top"><a href="System-Information.html#index-license-5"><code>license</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="System-Information.html">System Information</a></td></tr>
<tr><td></td><td valign="top"><a href="System-Information.html#index-license-6"><code>license</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="System-Information.html">System Information</a></td></tr>
<tr><td></td><td valign="top"><a href="System-Information.html#index-license-7"><code>license</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="System-Information.html">System Information</a></td></tr>
<tr><td></td><td valign="top"><a href="Graphics-Objects.html#index-light"><code>light</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Graphics-Objects.html">Graphics Objects</a></td></tr>
<tr><td></td><td valign="top"><a href="Graphics-Objects.html#index-light-1"><code>light</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Graphics-Objects.html">Graphics Objects</a></td></tr>
<tr><td></td><td valign="top"><a href="Graphics-Objects.html#index-light-2"><code>light</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Graphics-Objects.html">Graphics Objects</a></td></tr>
<tr><td></td><td valign="top"><a href="Graphics-Objects.html#index-light-3"><code>light</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Graphics-Objects.html">Graphics Objects</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-lightangle"><code>lightangle</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-lightangle-1"><code>lightangle</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-lightangle-2"><code>lightangle</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-lightangle-3"><code>lightangle</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-lightangle-4"><code>lightangle</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-lighting"><code>lighting</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-lighting-1"><code>lighting</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Audio-Data-Processing.html#index-lin2mu"><code>lin2mu</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Audio-Data-Processing.html">Audio Data Processing</a></td></tr>
<tr><td></td><td valign="top"><a href="Graphics-Objects.html#index-line"><code>line</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Graphics-Objects.html">Graphics Objects</a></td></tr>
<tr><td></td><td valign="top"><a href="Graphics-Objects.html#index-line-1"><code>line</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Graphics-Objects.html">Graphics Objects</a></td></tr>
<tr><td></td><td valign="top"><a href="Graphics-Objects.html#index-line-2"><code>line</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Graphics-Objects.html">Graphics Objects</a></td></tr>
<tr><td></td><td valign="top"><a href="Graphics-Objects.html#index-line-3"><code>line</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Graphics-Objects.html">Graphics Objects</a></td></tr>
<tr><td></td><td valign="top"><a href="Graphics-Objects.html#index-line-4"><code>line</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Graphics-Objects.html">Graphics Objects</a></td></tr>
<tr><td></td><td valign="top"><a href="Graphics-Objects.html#index-line-5"><code>line</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Graphics-Objects.html">Graphics Objects</a></td></tr>
<tr><td></td><td valign="top"><a href="Graphics-Objects.html#index-line-6"><code>line</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Graphics-Objects.html">Graphics Objects</a></td></tr>
<tr><td></td><td valign="top"><a href="Graphics-Objects.html#index-line-7"><code>line</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Graphics-Objects.html">Graphics Objects</a></td></tr>
<tr><td></td><td valign="top"><a href="Representing-Images.html#index-lines"><code>lines</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Representing-Images.html">Representing Images</a></td></tr>
<tr><td></td><td valign="top"><a href="Representing-Images.html#index-lines-1"><code>lines</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Representing-Images.html">Representing Images</a></td></tr>
<tr><td></td><td valign="top"><a href="Filesystem-Utilities.html#index-link"><code>link</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Filesystem-Utilities.html">Filesystem Utilities</a></td></tr>
<tr><td></td><td valign="top"><a href="Filesystem-Utilities.html#index-link-1"><code>link</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Filesystem-Utilities.html">Filesystem Utilities</a></td></tr>
<tr><td></td><td valign="top"><a href="Object-Groups.html#index-linkaxes"><code>linkaxes</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Object-Groups.html">Object Groups</a></td></tr>
<tr><td></td><td valign="top"><a href="Object-Groups.html#index-linkaxes-1"><code>linkaxes</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Object-Groups.html">Object Groups</a></td></tr>
<tr><td></td><td valign="top"><a href="Object-Groups.html#index-linkprop"><code>linkprop</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Object-Groups.html">Object Groups</a></td></tr>
<tr><td></td><td valign="top"><a href="Object-Groups.html#index-linkprop-1"><code>linkprop</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Object-Groups.html">Object Groups</a></td></tr>
<tr><td></td><td valign="top"><a href="Basic-Matrix-Functions.html#index-linsolve"><code>linsolve</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Basic-Matrix-Functions.html">Basic Matrix Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Basic-Matrix-Functions.html#index-linsolve-1"><code>linsolve</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Basic-Matrix-Functions.html">Basic Matrix Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Basic-Matrix-Functions.html#index-linsolve-2"><code>linsolve</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Basic-Matrix-Functions.html">Basic Matrix Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Special-Utility-Matrices.html#index-linspace"><code>linspace</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Special-Utility-Matrices.html">Special Utility Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Special-Utility-Matrices.html#index-linspace-1"><code>linspace</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Special-Utility-Matrices.html">Special Utility Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="I_002fO-Dialogs.html#index-listdlg"><code>listdlg</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="I_002fO-Dialogs.html">I/O Dialogs</a></td></tr>
<tr><td></td><td valign="top"><a href="GUI-Utility-Functions.html#index-listfonts"><code>listfonts</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="GUI-Utility-Functions.html">GUI Utility Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="GUI-Utility-Functions.html#index-listfonts-1"><code>listfonts</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="GUI-Utility-Functions.html">GUI Utility Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Terminal-Output.html#index-list_005fin_005fcolumns"><code>list_in_columns</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Terminal-Output.html">Terminal Output</a></td></tr>
<tr><td></td><td valign="top"><a href="Utility-Functions.html#index-list_005fprimes"><code>list_primes</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Utility-Functions.html">Utility Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Utility-Functions.html#index-list_005fprimes-1"><code>list_primes</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Utility-Functions.html">Utility Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Simple-File-I_002fO.html#index-load"><code>load</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Simple-File-I_002fO.html">Simple File I/O</a></td></tr>
<tr><td></td><td valign="top"><a href="Simple-File-I_002fO.html#index-load-1"><code>load</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Simple-File-I_002fO.html">Simple File I/O</a></td></tr>
<tr><td></td><td valign="top"><a href="Simple-File-I_002fO.html#index-load-2"><code>load</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Simple-File-I_002fO.html">Simple File I/O</a></td></tr>
<tr><td></td><td valign="top"><a href="Simple-File-I_002fO.html#index-load-3"><code>load</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Simple-File-I_002fO.html">Simple File I/O</a></td></tr>
<tr><td></td><td valign="top"><a href="Simple-File-I_002fO.html#index-load-4"><code>load</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Simple-File-I_002fO.html">Simple File I/O</a></td></tr>
<tr><td></td><td valign="top"><a href="Simple-File-I_002fO.html#index-load-5"><code>load</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Simple-File-I_002fO.html">Simple File I/O</a></td></tr>
<tr><td></td><td valign="top"><a href="Simple-File-I_002fO.html#index-load-6"><code>load</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Simple-File-I_002fO.html">Simple File I/O</a></td></tr>
<tr><td></td><td valign="top"><a href="Graphics-Toolkits.html#index-loaded_005fgraphics_005ftoolkits"><code>loaded_graphics_toolkits</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Graphics-Toolkits.html">Graphics Toolkits</a></td></tr>
<tr><td></td><td valign="top"><a href="Class-Methods.html#index-loadobj"><code>loadobj</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Class-Methods.html">Class Methods</a></td></tr>
<tr><td></td><td valign="top"><a href="Subfunctions.html#index-localfunctions"><code>localfunctions</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Subfunctions.html">Subfunctions</a></td></tr>
<tr><td></td><td valign="top"><a href="Timing-Utilities.html#index-localtime"><code>localtime</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Timing-Utilities.html">Timing Utilities</a></td></tr>
<tr><td></td><td valign="top"><a href="Exponents-and-Logarithms.html#index-log"><code>log</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Exponents-and-Logarithms.html">Exponents and Logarithms</a></td></tr>
<tr><td></td><td valign="top"><a href="Exponents-and-Logarithms.html#index-log10"><code>log10</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Exponents-and-Logarithms.html">Exponents and Logarithms</a></td></tr>
<tr><td></td><td valign="top"><a href="Exponents-and-Logarithms.html#index-log1p"><code>log1p</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Exponents-and-Logarithms.html">Exponents and Logarithms</a></td></tr>
<tr><td></td><td valign="top"><a href="Exponents-and-Logarithms.html#index-log2"><code>log2</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Exponents-and-Logarithms.html">Exponents and Logarithms</a></td></tr>
<tr><td></td><td valign="top"><a href="Exponents-and-Logarithms.html#index-log2-1"><code>log2</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Exponents-and-Logarithms.html">Exponents and Logarithms</a></td></tr>
<tr><td></td><td valign="top"><a href="Logical-Values.html#index-logical"><code>logical</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Logical-Values.html">Logical Values</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-loglog"><code>loglog</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-loglog-1"><code>loglog</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-loglog-2"><code>loglog</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-loglog-3"><code>loglog</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-loglog-4"><code>loglog</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-loglog-5"><code>loglog</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-loglogerr"><code>loglogerr</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-loglogerr-1"><code>loglogerr</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-loglogerr-2"><code>loglogerr</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-loglogerr-3"><code>loglogerr</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-loglogerr-4"><code>loglogerr</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-loglogerr-5"><code>loglogerr</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-loglogerr-6"><code>loglogerr</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-loglogerr-7"><code>loglogerr</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-loglogerr-8"><code>loglogerr</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-loglogerr-9"><code>loglogerr</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Functions-of-a-Matrix.html#index-logm"><code>logm</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Functions-of-a-Matrix.html">Functions of a Matrix</a></td></tr>
<tr><td></td><td valign="top"><a href="Functions-of-a-Matrix.html#index-logm-1"><code>logm</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Functions-of-a-Matrix.html">Functions of a Matrix</a></td></tr>
<tr><td></td><td valign="top"><a href="Functions-of-a-Matrix.html#index-logm-2"><code>logm</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Functions-of-a-Matrix.html">Functions of a Matrix</a></td></tr>
<tr><td></td><td valign="top"><a href="Special-Utility-Matrices.html#index-logspace"><code>logspace</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Special-Utility-Matrices.html">Special Utility Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Special-Utility-Matrices.html#index-logspace-1"><code>logspace</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Special-Utility-Matrices.html">Special Utility Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Special-Utility-Matrices.html#index-logspace-2"><code>logspace</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Special-Utility-Matrices.html">Special Utility Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Getting-Help.html#index-lookfor"><code>lookfor</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Getting-Help.html">Getting Help</a></td></tr>
<tr><td></td><td valign="top"><a href="Getting-Help.html#index-lookfor-1"><code>lookfor</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Getting-Help.html">Getting Help</a></td></tr>
<tr><td></td><td valign="top"><a href="Getting-Help.html#index-lookfor-2"><code>lookfor</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Getting-Help.html">Getting Help</a></td></tr>
<tr><td></td><td valign="top"><a href="Getting-Help.html#index-lookfor-3"><code>lookfor</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Getting-Help.html">Getting Help</a></td></tr>
<tr><td></td><td valign="top"><a href="Finding-Elements-and-Checking-Conditions.html#index-lookup"><code>lookup</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Finding-Elements-and-Checking-Conditions.html">Finding Elements and Checking Conditions</a></td></tr>
<tr><td></td><td valign="top"><a href="Finding-Elements-and-Checking-Conditions.html#index-lookup-1"><code>lookup</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Finding-Elements-and-Checking-Conditions.html">Finding Elements and Checking Conditions</a></td></tr>
<tr><td></td><td valign="top"><a href="Common-String-Operations.html#index-lower"><code>lower</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Common-String-Operations.html">Common String Operations</a></td></tr>
<tr><td></td><td valign="top"><a href="Current-Working-Directory.html#index-ls"><code>ls</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Current-Working-Directory.html">Current Working Directory</a></td></tr>
<tr><td></td><td valign="top"><a href="Current-Working-Directory.html#index-ls-1"><code>ls</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Current-Working-Directory.html">Current Working Directory</a></td></tr>
<tr><td></td><td valign="top"><a href="Current-Working-Directory.html#index-ls-2"><code>ls</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Current-Working-Directory.html">Current Working Directory</a></td></tr>
<tr><td></td><td valign="top"><a href="Current-Working-Directory.html#index-ls-3"><code>ls</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Current-Working-Directory.html">Current Working Directory</a></td></tr>
<tr><td></td><td valign="top"><a href="Current-Working-Directory.html#index-ls-4"><code>ls</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Current-Working-Directory.html">Current Working Directory</a></td></tr>
<tr><td></td><td valign="top"><a href="Linear-Least-Squares.html#index-lscov"><code>lscov</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Linear-Least-Squares.html">Linear Least Squares</a></td></tr>
<tr><td></td><td valign="top"><a href="Linear-Least-Squares.html#index-lscov-1"><code>lscov</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Linear-Least-Squares.html">Linear Least Squares</a></td></tr>
<tr><td></td><td valign="top"><a href="Linear-Least-Squares.html#index-lscov-2"><code>lscov</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Linear-Least-Squares.html">Linear Least Squares</a></td></tr>
<tr><td></td><td valign="top"><a href="Linear-Least-Squares.html#index-lscov-3"><code>lscov</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Linear-Least-Squares.html">Linear Least Squares</a></td></tr>
<tr><td></td><td valign="top"><a href="Ordinary-Differential-Equations.html#index-lsode"><code>lsode</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Ordinary-Differential-Equations.html">Ordinary Differential Equations</a></td></tr>
<tr><td></td><td valign="top"><a href="Ordinary-Differential-Equations.html#index-lsode-1"><code>lsode</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Ordinary-Differential-Equations.html">Ordinary Differential Equations</a></td></tr>
<tr><td></td><td valign="top"><a href="Ordinary-Differential-Equations.html#index-lsode_005foptions"><code>lsode_options</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Ordinary-Differential-Equations.html">Ordinary Differential Equations</a></td></tr>
<tr><td></td><td valign="top"><a href="Ordinary-Differential-Equations.html#index-lsode_005foptions-1"><code>lsode_options</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Ordinary-Differential-Equations.html">Ordinary Differential Equations</a></td></tr>
<tr><td></td><td valign="top"><a href="Ordinary-Differential-Equations.html#index-lsode_005foptions-2"><code>lsode_options</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Ordinary-Differential-Equations.html">Ordinary Differential Equations</a></td></tr>
<tr><td></td><td valign="top"><a href="Linear-Least-Squares.html#index-lsqnonneg"><code>lsqnonneg</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Linear-Least-Squares.html">Linear Least Squares</a></td></tr>
<tr><td></td><td valign="top"><a href="Linear-Least-Squares.html#index-lsqnonneg-1"><code>lsqnonneg</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Linear-Least-Squares.html">Linear Least Squares</a></td></tr>
<tr><td></td><td valign="top"><a href="Linear-Least-Squares.html#index-lsqnonneg-2"><code>lsqnonneg</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Linear-Least-Squares.html">Linear Least Squares</a></td></tr>
<tr><td></td><td valign="top"><a href="Linear-Least-Squares.html#index-lsqnonneg-3"><code>lsqnonneg</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Linear-Least-Squares.html">Linear Least Squares</a></td></tr>
<tr><td></td><td valign="top"><a href="Linear-Least-Squares.html#index-lsqnonneg-4"><code>lsqnonneg</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Linear-Least-Squares.html">Linear Least Squares</a></td></tr>
<tr><td></td><td valign="top"><a href="Linear-Least-Squares.html#index-lsqnonneg-5"><code>lsqnonneg</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Linear-Least-Squares.html">Linear Least Squares</a></td></tr>
<tr><td></td><td valign="top"><a href="Linear-Least-Squares.html#index-lsqnonneg-6"><code>lsqnonneg</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Linear-Least-Squares.html">Linear Least Squares</a></td></tr>
<tr><td></td><td valign="top"><a href="Linear-Least-Squares.html#index-lsqnonneg-7"><code>lsqnonneg</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Linear-Least-Squares.html">Linear Least Squares</a></td></tr>
<tr><td></td><td valign="top"><a href="Filesystem-Utilities.html#index-lstat"><code>lstat</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Filesystem-Utilities.html">Filesystem Utilities</a></td></tr>
<tr><td></td><td valign="top"><a href="Filesystem-Utilities.html#index-lstat-1"><code>lstat</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Filesystem-Utilities.html">Filesystem Utilities</a></td></tr>
<tr><td></td><td valign="top"><a href="Current-Working-Directory.html#index-ls_005fcommand"><code>ls_command</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Current-Working-Directory.html">Current Working Directory</a></td></tr>
<tr><td></td><td valign="top"><a href="Current-Working-Directory.html#index-ls_005fcommand-1"><code>ls_command</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Current-Working-Directory.html">Current Working Directory</a></td></tr>
<tr><td></td><td valign="top"><a href="Comparison-Ops.html#index-lt"><code>lt</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Comparison-Ops.html">Comparison Ops</a></td></tr>
<tr><td></td><td valign="top"><a href="Matrix-Factorizations.html#index-lu"><code>lu</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Matrix-Factorizations.html">Matrix Factorizations</a></td></tr>
<tr><td></td><td valign="top"><a href="Matrix-Factorizations.html#index-lu-1"><code>lu</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Matrix-Factorizations.html">Matrix Factorizations</a></td></tr>
<tr><td></td><td valign="top"><a href="Matrix-Factorizations.html#index-lu-2"><code>lu</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Matrix-Factorizations.html">Matrix Factorizations</a></td></tr>
<tr><td></td><td valign="top"><a href="Matrix-Factorizations.html#index-lu-3"><code>lu</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Matrix-Factorizations.html">Matrix Factorizations</a></td></tr>
<tr><td></td><td valign="top"><a href="Matrix-Factorizations.html#index-lu-4"><code>lu</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Matrix-Factorizations.html">Matrix Factorizations</a></td></tr>
<tr><td></td><td valign="top"><a href="Matrix-Factorizations.html#index-lu-5"><code>lu</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Matrix-Factorizations.html">Matrix Factorizations</a></td></tr>
<tr><td></td><td valign="top"><a href="Matrix-Factorizations.html#index-lu-6"><code>lu</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Matrix-Factorizations.html">Matrix Factorizations</a></td></tr>
<tr><td></td><td valign="top"><a href="Matrix-Factorizations.html#index-luupdate"><code>luupdate</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Matrix-Factorizations.html">Matrix Factorizations</a></td></tr>
<tr><td></td><td valign="top"><a href="Matrix-Factorizations.html#index-luupdate-1"><code>luupdate</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Matrix-Factorizations.html">Matrix Factorizations</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th id="Function-Index_fn_letter-M">M</th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="Descriptive-Statistics.html#index-mad"><code>mad</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Descriptive-Statistics.html">Descriptive Statistics</a></td></tr>
<tr><td></td><td valign="top"><a href="Descriptive-Statistics.html#index-mad-1"><code>mad</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Descriptive-Statistics.html">Descriptive Statistics</a></td></tr>
<tr><td></td><td valign="top"><a href="Descriptive-Statistics.html#index-mad-2"><code>mad</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Descriptive-Statistics.html">Descriptive Statistics</a></td></tr>
<tr><td></td><td valign="top"><a href="Famous-Matrices.html#index-magic"><code>magic</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Famous-Matrices.html">Famous Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Getting-Help.html#index-makeinfo_005fprogram"><code>makeinfo_program</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Getting-Help.html">Getting Help</a></td></tr>
<tr><td></td><td valign="top"><a href="Getting-Help.html#index-makeinfo_005fprogram-1"><code>makeinfo_program</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Getting-Help.html">Getting Help</a></td></tr>
<tr><td></td><td valign="top"><a href="Getting-Help.html#index-makeinfo_005fprogram-2"><code>makeinfo_program</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Getting-Help.html">Getting Help</a></td></tr>
<tr><td></td><td valign="top"><a href="Filesystem-Utilities.html#index-make_005fabsolute_005ffilename"><code>make_absolute_filename</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Filesystem-Utilities.html">Filesystem Utilities</a></td></tr>
<tr><td></td><td valign="top"><a href="Creating-Cell-Arrays.html#index-mat2cell"><code>mat2cell</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Creating-Cell-Arrays.html">Creating Cell Arrays</a></td></tr>
<tr><td></td><td valign="top"><a href="Creating-Cell-Arrays.html#index-mat2cell-1"><code>mat2cell</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Creating-Cell-Arrays.html">Creating Cell Arrays</a></td></tr>
<tr><td></td><td valign="top"><a href="Numerical-Data-and-Strings.html#index-mat2str"><code>mat2str</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Numerical-Data-and-Strings.html">Numerical Data and Strings</a></td></tr>
<tr><td></td><td valign="top"><a href="Numerical-Data-and-Strings.html#index-mat2str-1"><code>mat2str</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Numerical-Data-and-Strings.html">Numerical Data and Strings</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-material"><code>material</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-material-1"><code>material</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-material-2"><code>material</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-material-3"><code>material</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-material-4"><code>material</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-material-5"><code>material</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-material-6"><code>material</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-material-7"><code>material</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-material-8"><code>material</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-material-9"><code>material</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Variables.html#index-matlab_002elang_002emakeUniqueStrings"><code>matlab.lang.makeUniqueStrings</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Variables.html">Variables</a></td></tr>
<tr><td></td><td valign="top"><a href="Variables.html#index-matlab_002elang_002emakeUniqueStrings-1"><code>matlab.lang.makeUniqueStrings</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Variables.html">Variables</a></td></tr>
<tr><td></td><td valign="top"><a href="Variables.html#index-matlab_002elang_002emakeUniqueStrings-2"><code>matlab.lang.makeUniqueStrings</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Variables.html">Variables</a></td></tr>
<tr><td></td><td valign="top"><a href="Variables.html#index-matlab_002elang_002emakeUniqueStrings-3"><code>matlab.lang.makeUniqueStrings</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Variables.html">Variables</a></td></tr>
<tr><td></td><td valign="top"><a href="Variables.html#index-matlab_002elang_002emakeValidName"><code>matlab.lang.makeValidName</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Variables.html">Variables</a></td></tr>
<tr><td></td><td valign="top"><a href="Variables.html#index-matlab_002elang_002emakeValidName-1"><code>matlab.lang.makeValidName</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Variables.html">Variables</a></td></tr>
<tr><td></td><td valign="top"><a href="Variables.html#index-matlab_002elang_002emakeValidName-2"><code>matlab.lang.makeValidName</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Variables.html">Variables</a></td></tr>
<tr><td></td><td valign="top"><a href="Variables.html#index-matlab_002elang_002emakeValidName-3"><code>matlab.lang.makeValidName</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Variables.html">Variables</a></td></tr>
<tr><td></td><td valign="top"><a href="Base64-and-Binary-Data-Transmission.html#index-matlab_002enet_002ebase64decode"><code>matlab.net.base64decode</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Base64-and-Binary-Data-Transmission.html">Base64 and Binary Data Transmission</a></td></tr>
<tr><td></td><td valign="top"><a href="Base64-and-Binary-Data-Transmission.html#index-matlab_002enet_002ebase64encode"><code>matlab.net.base64encode</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Base64-and-Binary-Data-Transmission.html">Base64 and Binary Data Transmission</a></td></tr>
<tr><td></td><td valign="top"><a href="System-Information.html#index-matlabroot"><code>matlabroot</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="System-Information.html">System Information</a></td></tr>
<tr><td></td><td valign="top"><a href="Basic-Matrix-Functions.html#index-matrix_005ftype"><code>matrix_type</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Basic-Matrix-Functions.html">Basic Matrix Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Basic-Matrix-Functions.html#index-matrix_005ftype-1"><code>matrix_type</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Basic-Matrix-Functions.html">Basic Matrix Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Basic-Matrix-Functions.html#index-matrix_005ftype-2"><code>matrix_type</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Basic-Matrix-Functions.html">Basic Matrix Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Basic-Matrix-Functions.html#index-matrix_005ftype-3"><code>matrix_type</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Basic-Matrix-Functions.html">Basic Matrix Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Basic-Matrix-Functions.html#index-matrix_005ftype-4"><code>matrix_type</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Basic-Matrix-Functions.html">Basic Matrix Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Basic-Matrix-Functions.html#index-matrix_005ftype-5"><code>matrix_type</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Basic-Matrix-Functions.html">Basic Matrix Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Utility-Functions.html#index-max"><code>max</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Utility-Functions.html">Utility Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Utility-Functions.html#index-max-1"><code>max</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Utility-Functions.html">Utility Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Utility-Functions.html#index-max-2"><code>max</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Utility-Functions.html">Utility Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Utility-Functions.html#index-max-3"><code>max</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Utility-Functions.html">Utility Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Recursion.html#index-max_005frecursion_005fdepth"><code>max_recursion_depth</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Recursion.html">Recursion</a></td></tr>
<tr><td></td><td valign="top"><a href="Recursion.html#index-max_005frecursion_005fdepth-1"><code>max_recursion_depth</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Recursion.html">Recursion</a></td></tr>
<tr><td></td><td valign="top"><a href="Recursion.html#index-max_005frecursion_005fdepth-2"><code>max_recursion_depth</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Recursion.html">Recursion</a></td></tr>
<tr><td></td><td valign="top"><a href="Recursion.html#index-max_005fstack_005fdepth"><code>max_stack_depth</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Recursion.html">Recursion</a></td></tr>
<tr><td></td><td valign="top"><a href="Recursion.html#index-max_005fstack_005fdepth-1"><code>max_stack_depth</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Recursion.html">Recursion</a></td></tr>
<tr><td></td><td valign="top"><a href="Recursion.html#index-max_005fstack_005fdepth-2"><code>max_stack_depth</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Recursion.html">Recursion</a></td></tr>
<tr><td></td><td valign="top"><a href="Descriptive-Statistics.html#index-mean"><code>mean</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Descriptive-Statistics.html">Descriptive Statistics</a></td></tr>
<tr><td></td><td valign="top"><a href="Descriptive-Statistics.html#index-mean-1"><code>mean</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Descriptive-Statistics.html">Descriptive Statistics</a></td></tr>
<tr><td></td><td valign="top"><a href="Descriptive-Statistics.html#index-mean-2"><code>mean</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Descriptive-Statistics.html">Descriptive Statistics</a></td></tr>
<tr><td></td><td valign="top"><a href="Descriptive-Statistics.html#index-mean-3"><code>mean</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Descriptive-Statistics.html">Descriptive Statistics</a></td></tr>
<tr><td></td><td valign="top"><a href="Descriptive-Statistics.html#index-mean-4"><code>mean</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Descriptive-Statistics.html">Descriptive Statistics</a></td></tr>
<tr><td></td><td valign="top"><a href="Descriptive-Statistics.html#index-meansq"><code>meansq</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Descriptive-Statistics.html">Descriptive Statistics</a></td></tr>
<tr><td></td><td valign="top"><a href="Descriptive-Statistics.html#index-meansq-1"><code>meansq</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Descriptive-Statistics.html">Descriptive Statistics</a></td></tr>
<tr><td></td><td valign="top"><a href="Descriptive-Statistics.html#index-median"><code>median</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Descriptive-Statistics.html">Descriptive Statistics</a></td></tr>
<tr><td></td><td valign="top"><a href="Descriptive-Statistics.html#index-median-1"><code>median</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Descriptive-Statistics.html">Descriptive Statistics</a></td></tr>
<tr><td></td><td valign="top"><a href="System-Information.html#index-memory"><code>memory</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="System-Information.html">System Information</a></td></tr>
<tr><td></td><td valign="top"><a href="System-Information.html#index-memory-1"><code>memory</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="System-Information.html">System Information</a></td></tr>
<tr><td></td><td valign="top"><a href="Terminal-Input.html#index-menu"><code>menu</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Terminal-Input.html">Terminal Input</a></td></tr>
<tr><td></td><td valign="top"><a href="Terminal-Input.html#index-menu-1"><code>menu</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Terminal-Input.html">Terminal Input</a></td></tr>
<tr><td></td><td valign="top"><a href="Short_002dcircuit-Boolean-Operators.html#index-merge"><code>merge</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Short_002dcircuit-Boolean-Operators.html">Short-circuit Boolean Operators</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-mesh"><code>mesh</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-mesh-1"><code>mesh</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-mesh-2"><code>mesh</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-mesh-3"><code>mesh</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-mesh-4"><code>mesh</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-mesh-5"><code>mesh</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-meshc"><code>meshc</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-meshc-1"><code>meshc</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-meshc-2"><code>meshc</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-meshc-3"><code>meshc</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-meshc-4"><code>meshc</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-meshc-5"><code>meshc</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-meshgrid"><code>meshgrid</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-meshgrid-1"><code>meshgrid</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-meshgrid-2"><code>meshgrid</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-meshgrid-3"><code>meshgrid</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-meshz"><code>meshz</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-meshz-1"><code>meshz</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-meshz-2"><code>meshz</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-meshz-3"><code>meshz</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-meshz-4"><code>meshz</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-meshz-5"><code>meshz</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Creating-a-Class.html#index-methods"><code>methods</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Creating-a-Class.html">Creating a Class</a></td></tr>
<tr><td></td><td valign="top"><a href="Creating-a-Class.html#index-methods-1"><code>methods</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Creating-a-Class.html">Creating a Class</a></td></tr>
<tr><td></td><td valign="top"><a href="Creating-a-Class.html#index-methods-2"><code>methods</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Creating-a-Class.html">Creating a Class</a></td></tr>
<tr><td></td><td valign="top"><a href="Creating-a-Class.html#index-methods-3"><code>methods</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Creating-a-Class.html">Creating a Class</a></td></tr>
<tr><td></td><td valign="top"><a href="Getting-Started-with-Mex_002dFiles.html#index-mex-1"><code>mex</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Getting-Started-with-Mex_002dFiles.html">Getting Started with Mex-Files</a></td></tr>
<tr><td></td><td valign="top"><a href="Getting-Started-with-Mex_002dFiles.html#index-mex-2"><code>mex</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Getting-Started-with-Mex_002dFiles.html">Getting Started with Mex-Files</a></td></tr>
<tr><td></td><td valign="top"><a href="Getting-Started-with-Mex_002dFiles.html#index-mexext"><code>mexext</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Getting-Started-with-Mex_002dFiles.html">Getting Started with Mex-Files</a></td></tr>
<tr><td></td><td valign="top"><a href="Function-Files.html#index-mfilename"><code>mfilename</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Function-Files.html">Function Files</a></td></tr>
<tr><td></td><td valign="top"><a href="Function-Files.html#index-mfilename-1"><code>mfilename</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Function-Files.html">Function Files</a></td></tr>
<tr><td></td><td valign="top"><a href="Function-Files.html#index-mfilename-2"><code>mfilename</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Function-Files.html">Function Files</a></td></tr>
<tr><td></td><td valign="top"><a href="FTP-Objects.html#index-mget"><code>mget</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="FTP-Objects.html">FTP Objects</a></td></tr>
<tr><td></td><td valign="top"><a href="FTP-Objects.html#index-mget-1"><code>mget</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="FTP-Objects.html">FTP Objects</a></td></tr>
<tr><td></td><td valign="top"><a href="FTP-Objects.html#index-mget-2"><code>mget</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="FTP-Objects.html">FTP Objects</a></td></tr>
<tr><td></td><td valign="top"><a href="Basic-Matrix-Functions.html#index-mgorth"><code>mgorth</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Basic-Matrix-Functions.html">Basic Matrix Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Utility-Functions.html#index-min"><code>min</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Utility-Functions.html">Utility Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Utility-Functions.html#index-min-1"><code>min</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Utility-Functions.html">Utility Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Utility-Functions.html#index-min-2"><code>min</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Utility-Functions.html">Utility Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Utility-Functions.html#index-min-3"><code>min</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Utility-Functions.html">Utility Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Arithmetic-Ops.html#index-minus"><code>minus</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Arithmetic-Ops.html">Arithmetic Ops</a></td></tr>
<tr><td></td><td valign="top"><a href="Function-Locking.html#index-mislocked"><code>mislocked</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Function-Locking.html">Function Locking</a></td></tr>
<tr><td></td><td valign="top"><a href="Function-Locking.html#index-mislocked-1"><code>mislocked</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Function-Locking.html">Function Locking</a></td></tr>
<tr><td></td><td valign="top"><a href="Missing-Components.html#index-missing_005fcomponent_005fhook"><code>missing_component_hook</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Missing-Components.html">Missing Components</a></td></tr>
<tr><td></td><td valign="top"><a href="Missing-Components.html#index-missing_005fcomponent_005fhook-1"><code>missing_component_hook</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Missing-Components.html">Missing Components</a></td></tr>
<tr><td></td><td valign="top"><a href="Missing-Components.html#index-missing_005fcomponent_005fhook-2"><code>missing_component_hook</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Missing-Components.html">Missing Components</a></td></tr>
<tr><td></td><td valign="top"><a href="Parser.html#index-missing_005ffunction_005fhook"><code>missing_function_hook</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Parser.html">Parser</a></td></tr>
<tr><td></td><td valign="top"><a href="Parser.html#index-missing_005ffunction_005fhook-1"><code>missing_function_hook</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Parser.html">Parser</a></td></tr>
<tr><td></td><td valign="top"><a href="Parser.html#index-missing_005ffunction_005fhook-2"><code>missing_function_hook</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Parser.html">Parser</a></td></tr>
<tr><td></td><td valign="top"><a href="Filesystem-Utilities.html#index-mkdir"><code>mkdir</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Filesystem-Utilities.html">Filesystem Utilities</a></td></tr>
<tr><td></td><td valign="top"><a href="Filesystem-Utilities.html#index-mkdir-1"><code>mkdir</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Filesystem-Utilities.html">Filesystem Utilities</a></td></tr>
<tr><td></td><td valign="top"><a href="Filesystem-Utilities.html#index-mkdir-2"><code>mkdir</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Filesystem-Utilities.html">Filesystem Utilities</a></td></tr>
<tr><td></td><td valign="top"><a href="Filesystem-Utilities.html#index-mkdir-3"><code>mkdir</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Filesystem-Utilities.html">Filesystem Utilities</a></td></tr>
<tr><td></td><td valign="top"><a href="Filesystem-Utilities.html#index-mkdir-4"><code>mkdir</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Filesystem-Utilities.html">Filesystem Utilities</a></td></tr>
<tr><td></td><td valign="top"><a href="FTP-Objects.html#index-mkdir-5"><code>mkdir</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="FTP-Objects.html">FTP Objects</a></td></tr>
<tr><td></td><td valign="top"><a href="Filesystem-Utilities.html#index-mkfifo"><code>mkfifo</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Filesystem-Utilities.html">Filesystem Utilities</a></td></tr>
<tr><td></td><td valign="top"><a href="Filesystem-Utilities.html#index-mkfifo-1"><code>mkfifo</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Filesystem-Utilities.html">Filesystem Utilities</a></td></tr>
<tr><td></td><td valign="top"><a href="Getting-Started-with-Oct_002dFiles.html#index-mkoctfile-1"><code>mkoctfile</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Getting-Started-with-Oct_002dFiles.html">Getting Started with Oct-Files</a></td></tr>
<tr><td></td><td valign="top"><a href="Getting-Started-with-Oct_002dFiles.html#index-mkoctfile-2"><code>mkoctfile</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Getting-Started-with-Oct_002dFiles.html">Getting Started with Oct-Files</a></td></tr>
<tr><td></td><td valign="top"><a href="Polynomial-Interpolation.html#index-mkpp"><code>mkpp</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Polynomial-Interpolation.html">Polynomial Interpolation</a></td></tr>
<tr><td></td><td valign="top"><a href="Polynomial-Interpolation.html#index-mkpp-1"><code>mkpp</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Polynomial-Interpolation.html">Polynomial Interpolation</a></td></tr>
<tr><td></td><td valign="top"><a href="Temporary-Files.html#index-mkstemp"><code>mkstemp</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Temporary-Files.html">Temporary Files</a></td></tr>
<tr><td></td><td valign="top"><a href="Temporary-Files.html#index-mkstemp-1"><code>mkstemp</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Temporary-Files.html">Temporary Files</a></td></tr>
<tr><td></td><td valign="top"><a href="Timing-Utilities.html#index-mktime"><code>mktime</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Timing-Utilities.html">Timing Utilities</a></td></tr>
<tr><td></td><td valign="top"><a href="Arithmetic-Ops.html#index-mldivide"><code>mldivide</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Arithmetic-Ops.html">Arithmetic Ops</a></td></tr>
<tr><td></td><td valign="top"><a href="Function-Locking.html#index-mlock"><code>mlock</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Function-Locking.html">Function Locking</a></td></tr>
<tr><td></td><td valign="top"><a href="Utility-Functions.html#index-mod"><code>mod</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Utility-Functions.html">Utility Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Descriptive-Statistics.html#index-mode"><code>mode</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Descriptive-Statistics.html">Descriptive Statistics</a></td></tr>
<tr><td></td><td valign="top"><a href="Descriptive-Statistics.html#index-mode-1"><code>mode</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Descriptive-Statistics.html">Descriptive Statistics</a></td></tr>
<tr><td></td><td valign="top"><a href="Descriptive-Statistics.html#index-mode-2"><code>mode</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Descriptive-Statistics.html">Descriptive Statistics</a></td></tr>
<tr><td></td><td valign="top"><a href="Descriptive-Statistics.html#index-moment"><code>moment</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Descriptive-Statistics.html">Descriptive Statistics</a></td></tr>
<tr><td></td><td valign="top"><a href="Descriptive-Statistics.html#index-moment-1"><code>moment</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Descriptive-Statistics.html">Descriptive Statistics</a></td></tr>
<tr><td></td><td valign="top"><a href="Descriptive-Statistics.html#index-moment-2"><code>moment</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Descriptive-Statistics.html">Descriptive Statistics</a></td></tr>
<tr><td></td><td valign="top"><a href="Descriptive-Statistics.html#index-moment-3"><code>moment</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Descriptive-Statistics.html">Descriptive Statistics</a></td></tr>
<tr><td></td><td valign="top"><a href="Descriptive-Statistics.html#index-moment-4"><code>moment</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Descriptive-Statistics.html">Descriptive Statistics</a></td></tr>
<tr><td></td><td valign="top"><a href="Paging-Screen-Output.html#index-more"><code>more</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Paging-Screen-Output.html">Paging Screen Output</a></td></tr>
<tr><td></td><td valign="top"><a href="Paging-Screen-Output.html#index-more-1"><code>more</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Paging-Screen-Output.html">Paging Screen Output</a></td></tr>
<tr><td></td><td valign="top"><a href="Paging-Screen-Output.html#index-more-2"><code>more</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Paging-Screen-Output.html">Paging Screen Output</a></td></tr>
<tr><td></td><td valign="top"><a href="Filesystem-Utilities.html#index-movefile"><code>movefile</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Filesystem-Utilities.html">Filesystem Utilities</a></td></tr>
<tr><td></td><td valign="top"><a href="Filesystem-Utilities.html#index-movefile-1"><code>movefile</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Filesystem-Utilities.html">Filesystem Utilities</a></td></tr>
<tr><td></td><td valign="top"><a href="Filesystem-Utilities.html#index-movefile-2"><code>movefile</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Filesystem-Utilities.html">Filesystem Utilities</a></td></tr>
<tr><td></td><td valign="top"><a href="Filesystem-Utilities.html#index-movefile-3"><code>movefile</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Filesystem-Utilities.html">Filesystem Utilities</a></td></tr>
<tr><td></td><td valign="top"><a href="Filesystem-Utilities.html#index-movefile-4"><code>movefile</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Filesystem-Utilities.html">Filesystem Utilities</a></td></tr>
<tr><td></td><td valign="top"><a href="Filesystem-Utilities.html#index-movefile-5"><code>movefile</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Filesystem-Utilities.html">Filesystem Utilities</a></td></tr>
<tr><td></td><td valign="top"><a href="Filesystem-Utilities.html#index-movefile-6"><code>movefile</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Filesystem-Utilities.html">Filesystem Utilities</a></td></tr>
<tr><td></td><td valign="top"><a href="GUI-Utility-Functions.html#index-movegui"><code>movegui</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="GUI-Utility-Functions.html">GUI Utility Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="GUI-Utility-Functions.html#index-movegui-1"><code>movegui</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="GUI-Utility-Functions.html">GUI Utility Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="GUI-Utility-Functions.html#index-movegui-2"><code>movegui</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="GUI-Utility-Functions.html">GUI Utility Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="GUI-Utility-Functions.html#index-movegui-3"><code>movegui</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="GUI-Utility-Functions.html">GUI Utility Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="GUI-Utility-Functions.html#index-movegui-4"><code>movegui</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="GUI-Utility-Functions.html">GUI Utility Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="GUI-Utility-Functions.html#index-movegui-5"><code>movegui</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="GUI-Utility-Functions.html">GUI Utility Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Statistics-on-Sliding-Windows-of-Data.html#index-movfun"><code>movfun</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Statistics-on-Sliding-Windows-of-Data.html">Statistics on Sliding Windows of Data</a></td></tr>
<tr><td></td><td valign="top"><a href="Statistics-on-Sliding-Windows-of-Data.html#index-movfun-1"><code>movfun</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Statistics-on-Sliding-Windows-of-Data.html">Statistics on Sliding Windows of Data</a></td></tr>
<tr><td></td><td valign="top"><a href="Statistics-on-Sliding-Windows-of-Data.html#index-movfun-2"><code>movfun</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Statistics-on-Sliding-Windows-of-Data.html">Statistics on Sliding Windows of Data</a></td></tr>
<tr><td></td><td valign="top"><a href="Representing-Images.html#index-movie"><code>movie</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Representing-Images.html">Representing Images</a></td></tr>
<tr><td></td><td valign="top"><a href="Representing-Images.html#index-movie-1"><code>movie</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Representing-Images.html">Representing Images</a></td></tr>
<tr><td></td><td valign="top"><a href="Representing-Images.html#index-movie-2"><code>movie</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Representing-Images.html">Representing Images</a></td></tr>
<tr><td></td><td valign="top"><a href="Representing-Images.html#index-movie-3"><code>movie</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Representing-Images.html">Representing Images</a></td></tr>
<tr><td></td><td valign="top"><a href="Statistics-on-Sliding-Windows-of-Data.html#index-movmad"><code>movmad</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Statistics-on-Sliding-Windows-of-Data.html">Statistics on Sliding Windows of Data</a></td></tr>
<tr><td></td><td valign="top"><a href="Statistics-on-Sliding-Windows-of-Data.html#index-movmad-1"><code>movmad</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Statistics-on-Sliding-Windows-of-Data.html">Statistics on Sliding Windows of Data</a></td></tr>
<tr><td></td><td valign="top"><a href="Statistics-on-Sliding-Windows-of-Data.html#index-movmad-2"><code>movmad</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Statistics-on-Sliding-Windows-of-Data.html">Statistics on Sliding Windows of Data</a></td></tr>
<tr><td></td><td valign="top"><a href="Statistics-on-Sliding-Windows-of-Data.html#index-movmad-3"><code>movmad</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Statistics-on-Sliding-Windows-of-Data.html">Statistics on Sliding Windows of Data</a></td></tr>
<tr><td></td><td valign="top"><a href="Statistics-on-Sliding-Windows-of-Data.html#index-movmad-4"><code>movmad</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Statistics-on-Sliding-Windows-of-Data.html">Statistics on Sliding Windows of Data</a></td></tr>
<tr><td></td><td valign="top"><a href="Statistics-on-Sliding-Windows-of-Data.html#index-movmax"><code>movmax</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Statistics-on-Sliding-Windows-of-Data.html">Statistics on Sliding Windows of Data</a></td></tr>
<tr><td></td><td valign="top"><a href="Statistics-on-Sliding-Windows-of-Data.html#index-movmax-1"><code>movmax</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Statistics-on-Sliding-Windows-of-Data.html">Statistics on Sliding Windows of Data</a></td></tr>
<tr><td></td><td valign="top"><a href="Statistics-on-Sliding-Windows-of-Data.html#index-movmax-2"><code>movmax</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Statistics-on-Sliding-Windows-of-Data.html">Statistics on Sliding Windows of Data</a></td></tr>
<tr><td></td><td valign="top"><a href="Statistics-on-Sliding-Windows-of-Data.html#index-movmax-3"><code>movmax</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Statistics-on-Sliding-Windows-of-Data.html">Statistics on Sliding Windows of Data</a></td></tr>
<tr><td></td><td valign="top"><a href="Statistics-on-Sliding-Windows-of-Data.html#index-movmax-4"><code>movmax</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Statistics-on-Sliding-Windows-of-Data.html">Statistics on Sliding Windows of Data</a></td></tr>
<tr><td></td><td valign="top"><a href="Statistics-on-Sliding-Windows-of-Data.html#index-movmean"><code>movmean</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Statistics-on-Sliding-Windows-of-Data.html">Statistics on Sliding Windows of Data</a></td></tr>
<tr><td></td><td valign="top"><a href="Statistics-on-Sliding-Windows-of-Data.html#index-movmean-1"><code>movmean</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Statistics-on-Sliding-Windows-of-Data.html">Statistics on Sliding Windows of Data</a></td></tr>
<tr><td></td><td valign="top"><a href="Statistics-on-Sliding-Windows-of-Data.html#index-movmean-2"><code>movmean</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Statistics-on-Sliding-Windows-of-Data.html">Statistics on Sliding Windows of Data</a></td></tr>
<tr><td></td><td valign="top"><a href="Statistics-on-Sliding-Windows-of-Data.html#index-movmean-3"><code>movmean</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Statistics-on-Sliding-Windows-of-Data.html">Statistics on Sliding Windows of Data</a></td></tr>
<tr><td></td><td valign="top"><a href="Statistics-on-Sliding-Windows-of-Data.html#index-movmean-4"><code>movmean</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Statistics-on-Sliding-Windows-of-Data.html">Statistics on Sliding Windows of Data</a></td></tr>
<tr><td></td><td valign="top"><a href="Statistics-on-Sliding-Windows-of-Data.html#index-movmedian"><code>movmedian</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Statistics-on-Sliding-Windows-of-Data.html">Statistics on Sliding Windows of Data</a></td></tr>
<tr><td></td><td valign="top"><a href="Statistics-on-Sliding-Windows-of-Data.html#index-movmedian-1"><code>movmedian</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Statistics-on-Sliding-Windows-of-Data.html">Statistics on Sliding Windows of Data</a></td></tr>
<tr><td></td><td valign="top"><a href="Statistics-on-Sliding-Windows-of-Data.html#index-movmedian-2"><code>movmedian</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Statistics-on-Sliding-Windows-of-Data.html">Statistics on Sliding Windows of Data</a></td></tr>
<tr><td></td><td valign="top"><a href="Statistics-on-Sliding-Windows-of-Data.html#index-movmedian-3"><code>movmedian</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Statistics-on-Sliding-Windows-of-Data.html">Statistics on Sliding Windows of Data</a></td></tr>
<tr><td></td><td valign="top"><a href="Statistics-on-Sliding-Windows-of-Data.html#index-movmedian-4"><code>movmedian</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Statistics-on-Sliding-Windows-of-Data.html">Statistics on Sliding Windows of Data</a></td></tr>
<tr><td></td><td valign="top"><a href="Statistics-on-Sliding-Windows-of-Data.html#index-movmin"><code>movmin</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Statistics-on-Sliding-Windows-of-Data.html">Statistics on Sliding Windows of Data</a></td></tr>
<tr><td></td><td valign="top"><a href="Statistics-on-Sliding-Windows-of-Data.html#index-movmin-1"><code>movmin</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Statistics-on-Sliding-Windows-of-Data.html">Statistics on Sliding Windows of Data</a></td></tr>
<tr><td></td><td valign="top"><a href="Statistics-on-Sliding-Windows-of-Data.html#index-movmin-2"><code>movmin</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Statistics-on-Sliding-Windows-of-Data.html">Statistics on Sliding Windows of Data</a></td></tr>
<tr><td></td><td valign="top"><a href="Statistics-on-Sliding-Windows-of-Data.html#index-movmin-3"><code>movmin</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Statistics-on-Sliding-Windows-of-Data.html">Statistics on Sliding Windows of Data</a></td></tr>
<tr><td></td><td valign="top"><a href="Statistics-on-Sliding-Windows-of-Data.html#index-movmin-4"><code>movmin</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Statistics-on-Sliding-Windows-of-Data.html">Statistics on Sliding Windows of Data</a></td></tr>
<tr><td></td><td valign="top"><a href="Statistics-on-Sliding-Windows-of-Data.html#index-movprod"><code>movprod</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Statistics-on-Sliding-Windows-of-Data.html">Statistics on Sliding Windows of Data</a></td></tr>
<tr><td></td><td valign="top"><a href="Statistics-on-Sliding-Windows-of-Data.html#index-movprod-1"><code>movprod</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Statistics-on-Sliding-Windows-of-Data.html">Statistics on Sliding Windows of Data</a></td></tr>
<tr><td></td><td valign="top"><a href="Statistics-on-Sliding-Windows-of-Data.html#index-movprod-2"><code>movprod</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Statistics-on-Sliding-Windows-of-Data.html">Statistics on Sliding Windows of Data</a></td></tr>
<tr><td></td><td valign="top"><a href="Statistics-on-Sliding-Windows-of-Data.html#index-movprod-3"><code>movprod</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Statistics-on-Sliding-Windows-of-Data.html">Statistics on Sliding Windows of Data</a></td></tr>
<tr><td></td><td valign="top"><a href="Statistics-on-Sliding-Windows-of-Data.html#index-movprod-4"><code>movprod</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Statistics-on-Sliding-Windows-of-Data.html">Statistics on Sliding Windows of Data</a></td></tr>
<tr><td></td><td valign="top"><a href="Statistics-on-Sliding-Windows-of-Data.html#index-movslice"><code>movslice</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Statistics-on-Sliding-Windows-of-Data.html">Statistics on Sliding Windows of Data</a></td></tr>
<tr><td></td><td valign="top"><a href="Statistics-on-Sliding-Windows-of-Data.html#index-movslice-1"><code>movslice</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Statistics-on-Sliding-Windows-of-Data.html">Statistics on Sliding Windows of Data</a></td></tr>
<tr><td></td><td valign="top"><a href="Statistics-on-Sliding-Windows-of-Data.html#index-movstd"><code>movstd</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Statistics-on-Sliding-Windows-of-Data.html">Statistics on Sliding Windows of Data</a></td></tr>
<tr><td></td><td valign="top"><a href="Statistics-on-Sliding-Windows-of-Data.html#index-movstd-1"><code>movstd</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Statistics-on-Sliding-Windows-of-Data.html">Statistics on Sliding Windows of Data</a></td></tr>
<tr><td></td><td valign="top"><a href="Statistics-on-Sliding-Windows-of-Data.html#index-movstd-2"><code>movstd</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Statistics-on-Sliding-Windows-of-Data.html">Statistics on Sliding Windows of Data</a></td></tr>
<tr><td></td><td valign="top"><a href="Statistics-on-Sliding-Windows-of-Data.html#index-movstd-3"><code>movstd</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Statistics-on-Sliding-Windows-of-Data.html">Statistics on Sliding Windows of Data</a></td></tr>
<tr><td></td><td valign="top"><a href="Statistics-on-Sliding-Windows-of-Data.html#index-movstd-4"><code>movstd</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Statistics-on-Sliding-Windows-of-Data.html">Statistics on Sliding Windows of Data</a></td></tr>
<tr><td></td><td valign="top"><a href="Statistics-on-Sliding-Windows-of-Data.html#index-movstd-5"><code>movstd</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Statistics-on-Sliding-Windows-of-Data.html">Statistics on Sliding Windows of Data</a></td></tr>
<tr><td></td><td valign="top"><a href="Statistics-on-Sliding-Windows-of-Data.html#index-movsum"><code>movsum</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Statistics-on-Sliding-Windows-of-Data.html">Statistics on Sliding Windows of Data</a></td></tr>
<tr><td></td><td valign="top"><a href="Statistics-on-Sliding-Windows-of-Data.html#index-movsum-1"><code>movsum</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Statistics-on-Sliding-Windows-of-Data.html">Statistics on Sliding Windows of Data</a></td></tr>
<tr><td></td><td valign="top"><a href="Statistics-on-Sliding-Windows-of-Data.html#index-movsum-2"><code>movsum</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Statistics-on-Sliding-Windows-of-Data.html">Statistics on Sliding Windows of Data</a></td></tr>
<tr><td></td><td valign="top"><a href="Statistics-on-Sliding-Windows-of-Data.html#index-movsum-3"><code>movsum</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Statistics-on-Sliding-Windows-of-Data.html">Statistics on Sliding Windows of Data</a></td></tr>
<tr><td></td><td valign="top"><a href="Statistics-on-Sliding-Windows-of-Data.html#index-movsum-4"><code>movsum</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Statistics-on-Sliding-Windows-of-Data.html">Statistics on Sliding Windows of Data</a></td></tr>
<tr><td></td><td valign="top"><a href="Statistics-on-Sliding-Windows-of-Data.html#index-movvar"><code>movvar</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Statistics-on-Sliding-Windows-of-Data.html">Statistics on Sliding Windows of Data</a></td></tr>
<tr><td></td><td valign="top"><a href="Statistics-on-Sliding-Windows-of-Data.html#index-movvar-1"><code>movvar</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Statistics-on-Sliding-Windows-of-Data.html">Statistics on Sliding Windows of Data</a></td></tr>
<tr><td></td><td valign="top"><a href="Statistics-on-Sliding-Windows-of-Data.html#index-movvar-2"><code>movvar</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Statistics-on-Sliding-Windows-of-Data.html">Statistics on Sliding Windows of Data</a></td></tr>
<tr><td></td><td valign="top"><a href="Statistics-on-Sliding-Windows-of-Data.html#index-movvar-3"><code>movvar</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Statistics-on-Sliding-Windows-of-Data.html">Statistics on Sliding Windows of Data</a></td></tr>
<tr><td></td><td valign="top"><a href="Statistics-on-Sliding-Windows-of-Data.html#index-movvar-4"><code>movvar</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Statistics-on-Sliding-Windows-of-Data.html">Statistics on Sliding Windows of Data</a></td></tr>
<tr><td></td><td valign="top"><a href="Statistics-on-Sliding-Windows-of-Data.html#index-movvar-5"><code>movvar</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Statistics-on-Sliding-Windows-of-Data.html">Statistics on Sliding Windows of Data</a></td></tr>
<tr><td></td><td valign="top"><a href="Finding-Roots.html#index-mpoles"><code>mpoles</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Finding-Roots.html">Finding Roots</a></td></tr>
<tr><td></td><td valign="top"><a href="Finding-Roots.html#index-mpoles-1"><code>mpoles</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Finding-Roots.html">Finding Roots</a></td></tr>
<tr><td></td><td valign="top"><a href="Finding-Roots.html#index-mpoles-2"><code>mpoles</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Finding-Roots.html">Finding Roots</a></td></tr>
<tr><td></td><td valign="top"><a href="Arithmetic-Ops.html#index-mpower"><code>mpower</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Arithmetic-Ops.html">Arithmetic Ops</a></td></tr>
<tr><td></td><td valign="top"><a href="FTP-Objects.html#index-mput"><code>mput</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="FTP-Objects.html">FTP Objects</a></td></tr>
<tr><td></td><td valign="top"><a href="Arithmetic-Ops.html#index-mrdivide"><code>mrdivide</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Arithmetic-Ops.html">Arithmetic Ops</a></td></tr>
<tr><td></td><td valign="top"><a href="I_002fO-Dialogs.html#index-msgbox"><code>msgbox</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="I_002fO-Dialogs.html">I/O Dialogs</a></td></tr>
<tr><td></td><td valign="top"><a href="I_002fO-Dialogs.html#index-msgbox-1"><code>msgbox</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="I_002fO-Dialogs.html">I/O Dialogs</a></td></tr>
<tr><td></td><td valign="top"><a href="I_002fO-Dialogs.html#index-msgbox-2"><code>msgbox</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="I_002fO-Dialogs.html">I/O Dialogs</a></td></tr>
<tr><td></td><td valign="top"><a href="I_002fO-Dialogs.html#index-msgbox-3"><code>msgbox</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="I_002fO-Dialogs.html">I/O Dialogs</a></td></tr>
<tr><td></td><td valign="top"><a href="I_002fO-Dialogs.html#index-msgbox-4"><code>msgbox</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="I_002fO-Dialogs.html">I/O Dialogs</a></td></tr>
<tr><td></td><td valign="top"><a href="I_002fO-Dialogs.html#index-msgbox-5"><code>msgbox</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="I_002fO-Dialogs.html">I/O Dialogs</a></td></tr>
<tr><td></td><td valign="top"><a href="Arithmetic-Ops.html#index-mtimes"><code>mtimes</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Arithmetic-Ops.html">Arithmetic Ops</a></td></tr>
<tr><td></td><td valign="top"><a href="Arithmetic-Ops.html#index-mtimes-1"><code>mtimes</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Arithmetic-Ops.html">Arithmetic Ops</a></td></tr>
<tr><td></td><td valign="top"><a href="Audio-Data-Processing.html#index-mu2lin"><code>mu2lin</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Audio-Data-Processing.html">Audio Data Processing</a></td></tr>
<tr><td></td><td valign="top"><a href="Function-Locking.html#index-munlock"><code>munlock</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Function-Locking.html">Function Locking</a></td></tr>
<tr><td></td><td valign="top"><a href="Function-Locking.html#index-munlock-1"><code>munlock</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Function-Locking.html">Function Locking</a></td></tr>
<tr><td></td><td valign="top"><a href="Validating-the-type-of-Arguments.html#index-mustBeFinite"><code>mustBeFinite</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Validating-the-type-of-Arguments.html">Validating the type of Arguments</a></td></tr>
<tr><td></td><td valign="top"><a href="Validating-the-type-of-Arguments.html#index-mustBeGreaterThan"><code>mustBeGreaterThan</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Validating-the-type-of-Arguments.html">Validating the type of Arguments</a></td></tr>
<tr><td></td><td valign="top"><a href="Validating-the-type-of-Arguments.html#index-mustBeGreaterThanOrEqual"><code>mustBeGreaterThanOrEqual</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Validating-the-type-of-Arguments.html">Validating the type of Arguments</a></td></tr>
<tr><td></td><td valign="top"><a href="Validating-the-type-of-Arguments.html#index-mustBeInteger"><code>mustBeInteger</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Validating-the-type-of-Arguments.html">Validating the type of Arguments</a></td></tr>
<tr><td></td><td valign="top"><a href="Validating-the-type-of-Arguments.html#index-mustBeLessThan"><code>mustBeLessThan</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Validating-the-type-of-Arguments.html">Validating the type of Arguments</a></td></tr>
<tr><td></td><td valign="top"><a href="Validating-the-type-of-Arguments.html#index-mustBeLessThanOrEqual"><code>mustBeLessThanOrEqual</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Validating-the-type-of-Arguments.html">Validating the type of Arguments</a></td></tr>
<tr><td></td><td valign="top"><a href="Validating-the-type-of-Arguments.html#index-mustBeMember"><code>mustBeMember</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Validating-the-type-of-Arguments.html">Validating the type of Arguments</a></td></tr>
<tr><td></td><td valign="top"><a href="Validating-the-type-of-Arguments.html#index-mustBeNegative"><code>mustBeNegative</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Validating-the-type-of-Arguments.html">Validating the type of Arguments</a></td></tr>
<tr><td></td><td valign="top"><a href="Validating-the-type-of-Arguments.html#index-mustBeNonempty"><code>mustBeNonempty</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Validating-the-type-of-Arguments.html">Validating the type of Arguments</a></td></tr>
<tr><td></td><td valign="top"><a href="Validating-the-type-of-Arguments.html#index-mustBeNonNan"><code>mustBeNonNan</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Validating-the-type-of-Arguments.html">Validating the type of Arguments</a></td></tr>
<tr><td></td><td valign="top"><a href="Validating-the-type-of-Arguments.html#index-mustBeNonnegative"><code>mustBeNonnegative</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Validating-the-type-of-Arguments.html">Validating the type of Arguments</a></td></tr>
<tr><td></td><td valign="top"><a href="Validating-the-type-of-Arguments.html#index-mustBeNonpositive"><code>mustBeNonpositive</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Validating-the-type-of-Arguments.html">Validating the type of Arguments</a></td></tr>
<tr><td></td><td valign="top"><a href="Validating-the-type-of-Arguments.html#index-mustBeNonsparse"><code>mustBeNonsparse</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Validating-the-type-of-Arguments.html">Validating the type of Arguments</a></td></tr>
<tr><td></td><td valign="top"><a href="Validating-the-type-of-Arguments.html#index-mustBeNonzero"><code>mustBeNonzero</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Validating-the-type-of-Arguments.html">Validating the type of Arguments</a></td></tr>
<tr><td></td><td valign="top"><a href="Validating-the-type-of-Arguments.html#index-mustBeNumeric"><code>mustBeNumeric</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Validating-the-type-of-Arguments.html">Validating the type of Arguments</a></td></tr>
<tr><td></td><td valign="top"><a href="Validating-the-type-of-Arguments.html#index-mustBeNumericOrLogical"><code>mustBeNumericOrLogical</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Validating-the-type-of-Arguments.html">Validating the type of Arguments</a></td></tr>
<tr><td></td><td valign="top"><a href="Validating-the-type-of-Arguments.html#index-mustBePositive"><code>mustBePositive</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Validating-the-type-of-Arguments.html">Validating the type of Arguments</a></td></tr>
<tr><td></td><td valign="top"><a href="Validating-the-type-of-Arguments.html#index-mustBeReal"><code>mustBeReal</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Validating-the-type-of-Arguments.html">Validating the type of Arguments</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th id="Function-Index_fn_letter-N">N</th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="Missing-Data.html#index-NA"><code>NA</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Missing-Data.html">Missing Data</a></td></tr>
<tr><td></td><td valign="top"><a href="Missing-Data.html#index-NA-1"><code>NA</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Missing-Data.html">Missing Data</a></td></tr>
<tr><td></td><td valign="top"><a href="Missing-Data.html#index-NA-2"><code>NA</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Missing-Data.html">Missing Data</a></td></tr>
<tr><td></td><td valign="top"><a href="Missing-Data.html#index-NA-3"><code>NA</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Missing-Data.html">Missing Data</a></td></tr>
<tr><td></td><td valign="top"><a href="Missing-Data.html#index-NA-4"><code>NA</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Missing-Data.html">Missing Data</a></td></tr>
<tr><td></td><td valign="top"><a href="Missing-Data.html#index-NA-5"><code>NA</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Missing-Data.html">Missing Data</a></td></tr>
<tr><td></td><td valign="top"><a href="Processing-Data-in-Structures.html#index-namedargs2cell"><code>namedargs2cell</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Processing-Data-in-Structures.html">Processing Data in Structures</a></td></tr>
<tr><td></td><td valign="top"><a href="Variables.html#index-namelengthmax"><code>namelengthmax</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Variables.html">Variables</a></td></tr>
<tr><td></td><td valign="top"><a href="Mathematical-Constants.html#index-nan"><code>nan</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Mathematical-Constants.html">Mathematical Constants</a></td></tr>
<tr><td></td><td valign="top"><a href="Mathematical-Constants.html#index-NaN"><code>NaN</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Mathematical-Constants.html">Mathematical Constants</a></td></tr>
<tr><td></td><td valign="top"><a href="Mathematical-Constants.html#index-NaN-1"><code>NaN</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Mathematical-Constants.html">Mathematical Constants</a></td></tr>
<tr><td></td><td valign="top"><a href="Mathematical-Constants.html#index-NaN-2"><code>NaN</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Mathematical-Constants.html">Mathematical Constants</a></td></tr>
<tr><td></td><td valign="top"><a href="Mathematical-Constants.html#index-NaN-3"><code>NaN</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Mathematical-Constants.html">Mathematical Constants</a></td></tr>
<tr><td></td><td valign="top"><a href="Mathematical-Constants.html#index-NaN-4"><code>NaN</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Mathematical-Constants.html">Mathematical Constants</a></td></tr>
<tr><td></td><td valign="top"><a href="Mathematical-Constants.html#index-NaN-5"><code>NaN</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Mathematical-Constants.html">Mathematical Constants</a></td></tr>
<tr><td></td><td valign="top"><a href="Defining-Functions.html#index-nargin"><code>nargin</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Defining-Functions.html">Defining Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Defining-Functions.html#index-nargin-1"><code>nargin</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Defining-Functions.html">Defining Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Validating-the-number-of-Arguments.html#index-narginchk"><code>narginchk</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Validating-the-number-of-Arguments.html">Validating the number of Arguments</a></td></tr>
<tr><td></td><td valign="top"><a href="Multiple-Return-Values.html#index-nargout"><code>nargout</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Multiple-Return-Values.html">Multiple Return Values</a></td></tr>
<tr><td></td><td valign="top"><a href="Multiple-Return-Values.html#index-nargout-1"><code>nargout</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Multiple-Return-Values.html">Multiple Return Values</a></td></tr>
<tr><td></td><td valign="top"><a href="Validating-the-number-of-Arguments.html#index-nargoutchk"><code>nargoutchk</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Validating-the-number-of-Arguments.html">Validating the number of Arguments</a></td></tr>
<tr><td></td><td valign="top"><a href="Validating-the-number-of-Arguments.html#index-nargoutchk-1"><code>nargoutchk</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Validating-the-number-of-Arguments.html">Validating the number of Arguments</a></td></tr>
<tr><td></td><td valign="top"><a href="Validating-the-number-of-Arguments.html#index-nargoutchk-2"><code>nargoutchk</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Validating-the-number-of-Arguments.html">Validating the number of Arguments</a></td></tr>
<tr><td></td><td valign="top"><a href="Validating-the-number-of-Arguments.html#index-nargoutchk-3"><code>nargoutchk</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Validating-the-number-of-Arguments.html">Validating the number of Arguments</a></td></tr>
<tr><td></td><td valign="top"><a href="String-encoding.html#index-native2unicode"><code>native2unicode</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="String-encoding.html">String encoding</a></td></tr>
<tr><td></td><td valign="top"><a href="String-encoding.html#index-native2unicode-1"><code>native2unicode</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="String-encoding.html">String encoding</a></td></tr>
<tr><td></td><td valign="top"><a href="Simple-File-I_002fO.html#index-native_005ffloat_005fformat"><code>native_float_format</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Simple-File-I_002fO.html">Simple File I/O</a></td></tr>
<tr><td></td><td valign="top"><a href="Basic-Statistical-Functions.html#index-nchoosek"><code>nchoosek</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Basic-Statistical-Functions.html">Basic Statistical Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Basic-Statistical-Functions.html#index-nchoosek-1"><code>nchoosek</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Basic-Statistical-Functions.html">Basic Statistical Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-ndgrid"><code>ndgrid</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-ndgrid-1"><code>ndgrid</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Object-Sizes.html#index-ndims"><code>ndims</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Object-Sizes.html">Object Sizes</a></td></tr>
<tr><td></td><td valign="top"><a href="Matrices-and-Arrays-in-Oct_002dFiles.html#index-ndims-1"><code>ndims</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Matrices-and-Arrays-in-Oct_002dFiles.html">Matrices and Arrays in Oct-Files</a></td></tr>
<tr><td></td><td valign="top"><a href="Comparison-Ops.html#index-ne"><code>ne</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Comparison-Ops.html">Comparison Ops</a></td></tr>
<tr><td></td><td valign="top"><a href="Concatenating-Strings.html#index-newline"><code>newline</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Concatenating-Strings.html">Concatenating Strings</a></td></tr>
<tr><td></td><td valign="top"><a href="Manipulation-of-Plot-Windows.html#index-newplot"><code>newplot</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Manipulation-of-Plot-Windows.html">Manipulation of Plot Windows</a></td></tr>
<tr><td></td><td valign="top"><a href="Manipulation-of-Plot-Windows.html#index-newplot-1"><code>newplot</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Manipulation-of-Plot-Windows.html">Manipulation of Plot Windows</a></td></tr>
<tr><td></td><td valign="top"><a href="Manipulation-of-Plot-Windows.html#index-newplot-2"><code>newplot</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Manipulation-of-Plot-Windows.html">Manipulation of Plot Windows</a></td></tr>
<tr><td></td><td valign="top"><a href="Manipulation-of-Plot-Windows.html#index-newplot-3"><code>newplot</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Manipulation-of-Plot-Windows.html">Manipulation of Plot Windows</a></td></tr>
<tr><td></td><td valign="top"><a href="Getting-Help.html#index-news"><code>news</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Getting-Help.html">Getting Help</a></td></tr>
<tr><td></td><td valign="top"><a href="Getting-Help.html#index-news-1"><code>news</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Getting-Help.html">Getting Help</a></td></tr>
<tr><td></td><td valign="top"><a href="Exponents-and-Logarithms.html#index-nextpow2"><code>nextpow2</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Exponents-and-Logarithms.html">Exponents and Logarithms</a></td></tr>
<tr><td></td><td valign="top"><a href="Information.html#index-nnz"><code>nnz</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Information.html">Information</a></td></tr>
<tr><td></td><td valign="top"><a href="Information.html#index-nonzeros"><code>nonzeros</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Information.html">Information</a></td></tr>
<tr><td></td><td valign="top"><a href="Basic-Matrix-Functions.html#index-norm"><code>norm</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Basic-Matrix-Functions.html">Basic Matrix Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Basic-Matrix-Functions.html#index-norm-1"><code>norm</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Basic-Matrix-Functions.html">Basic Matrix Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Basic-Matrix-Functions.html#index-norm-2"><code>norm</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Basic-Matrix-Functions.html">Basic Matrix Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Sparse-Linear-Algebra.html#index-normest"><code>normest</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Sparse-Linear-Algebra.html">Sparse Linear Algebra</a></td></tr>
<tr><td></td><td valign="top"><a href="Sparse-Linear-Algebra.html#index-normest-1"><code>normest</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Sparse-Linear-Algebra.html">Sparse Linear Algebra</a></td></tr>
<tr><td></td><td valign="top"><a href="Sparse-Linear-Algebra.html#index-normest-2"><code>normest</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Sparse-Linear-Algebra.html">Sparse Linear Algebra</a></td></tr>
<tr><td></td><td valign="top"><a href="Sparse-Linear-Algebra.html#index-normest1"><code>normest1</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Sparse-Linear-Algebra.html">Sparse Linear Algebra</a></td></tr>
<tr><td></td><td valign="top"><a href="Sparse-Linear-Algebra.html#index-normest1-1"><code>normest1</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Sparse-Linear-Algebra.html">Sparse Linear Algebra</a></td></tr>
<tr><td></td><td valign="top"><a href="Sparse-Linear-Algebra.html#index-normest1-2"><code>normest1</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Sparse-Linear-Algebra.html">Sparse Linear Algebra</a></td></tr>
<tr><td></td><td valign="top"><a href="Sparse-Linear-Algebra.html#index-normest1-3"><code>normest1</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Sparse-Linear-Algebra.html">Sparse Linear Algebra</a></td></tr>
<tr><td></td><td valign="top"><a href="Sparse-Linear-Algebra.html#index-normest1-4"><code>normest1</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Sparse-Linear-Algebra.html">Sparse Linear Algebra</a></td></tr>
<tr><td></td><td valign="top"><a href="Sparse-Linear-Algebra.html#index-normest1-5"><code>normest1</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Sparse-Linear-Algebra.html">Sparse Linear Algebra</a></td></tr>
<tr><td></td><td valign="top"><a href="Sparse-Linear-Algebra.html#index-normest1-6"><code>normest1</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Sparse-Linear-Algebra.html">Sparse Linear Algebra</a></td></tr>
<tr><td></td><td valign="top"><a href="Element_002dby_002delement-Boolean-Operators.html#index-not"><code>not</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Element_002dby_002delement-Boolean-Operators.html">Element-by-element Boolean Operators</a></td></tr>
<tr><td></td><td valign="top"><a href="Timing-Utilities.html#index-now"><code>now</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Timing-Utilities.html">Timing Utilities</a></td></tr>
<tr><td></td><td valign="top"><a href="System-Information.html#index-nproc"><code>nproc</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="System-Information.html">System Information</a></td></tr>
<tr><td></td><td valign="top"><a href="System-Information.html#index-nproc-1"><code>nproc</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="System-Information.html">System Information</a></td></tr>
<tr><td></td><td valign="top"><a href="Multiple-Return-Values.html#index-nthargout"><code>nthargout</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Multiple-Return-Values.html">Multiple Return Values</a></td></tr>
<tr><td></td><td valign="top"><a href="Multiple-Return-Values.html#index-nthargout-1"><code>nthargout</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Multiple-Return-Values.html">Multiple Return Values</a></td></tr>
<tr><td></td><td valign="top"><a href="Exponents-and-Logarithms.html#index-nthroot"><code>nthroot</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Exponents-and-Logarithms.html">Exponents and Logarithms</a></td></tr>
<tr><td></td><td valign="top"><a href="Rearranging-Matrices.html#index-nth_005felement"><code>nth_element</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Rearranging-Matrices.html">Rearranging Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Rearranging-Matrices.html#index-nth_005felement-1"><code>nth_element</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Rearranging-Matrices.html">Rearranging Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Basic-Matrix-Functions.html#index-null"><code>null</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Basic-Matrix-Functions.html">Basic Matrix Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Basic-Matrix-Functions.html#index-null-1"><code>null</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Basic-Matrix-Functions.html">Basic Matrix Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Creating-Cell-Arrays.html#index-num2cell"><code>num2cell</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Creating-Cell-Arrays.html">Creating Cell Arrays</a></td></tr>
<tr><td></td><td valign="top"><a href="Creating-Cell-Arrays.html#index-num2cell-1"><code>num2cell</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Creating-Cell-Arrays.html">Creating Cell Arrays</a></td></tr>
<tr><td></td><td valign="top"><a href="Numerical-Data-and-Strings.html#index-num2hex"><code>num2hex</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Numerical-Data-and-Strings.html">Numerical Data and Strings</a></td></tr>
<tr><td></td><td valign="top"><a href="Numerical-Data-and-Strings.html#index-num2hex-1"><code>num2hex</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Numerical-Data-and-Strings.html">Numerical Data and Strings</a></td></tr>
<tr><td></td><td valign="top"><a href="Numerical-Data-and-Strings.html#index-num2str"><code>num2str</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Numerical-Data-and-Strings.html">Numerical Data and Strings</a></td></tr>
<tr><td></td><td valign="top"><a href="Numerical-Data-and-Strings.html#index-num2str-1"><code>num2str</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Numerical-Data-and-Strings.html">Numerical Data and Strings</a></td></tr>
<tr><td></td><td valign="top"><a href="Numerical-Data-and-Strings.html#index-num2str-2"><code>num2str</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Numerical-Data-and-Strings.html">Numerical Data and Strings</a></td></tr>
<tr><td></td><td valign="top"><a href="Object-Sizes.html#index-numel"><code>numel</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Object-Sizes.html">Object Sizes</a></td></tr>
<tr><td></td><td valign="top"><a href="Object-Sizes.html#index-numel-1"><code>numel</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Object-Sizes.html">Object Sizes</a></td></tr>
<tr><td></td><td valign="top"><a href="Matrices-and-Arrays-in-Oct_002dFiles.html#index-numel-2"><code>numel</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Matrices-and-Arrays-in-Oct_002dFiles.html">Matrices and Arrays in Oct-Files</a></td></tr>
<tr><td></td><td valign="top"><a href="Manipulating-Structures.html#index-numfields"><code>numfields</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Manipulating-Structures.html">Manipulating Structures</a></td></tr>
<tr><td></td><td valign="top"><a href="Information.html#index-nzmax"><code>nzmax</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Information.html">Information</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th id="Function-Index_fn_letter-O">O</th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="Representing-Images.html#index-ocean"><code>ocean</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Representing-Images.html">Representing Images</a></td></tr>
<tr><td></td><td valign="top"><a href="Representing-Images.html#index-ocean-1"><code>ocean</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Representing-Images.html">Representing Images</a></td></tr>
<tr><td></td><td valign="top"><a href="Saving-Data-on-Unexpected-Exits.html#index-octave_005fcore_005ffile_005flimit"><code>octave_core_file_limit</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Saving-Data-on-Unexpected-Exits.html">Saving Data on Unexpected Exits</a></td></tr>
<tr><td></td><td valign="top"><a href="Saving-Data-on-Unexpected-Exits.html#index-octave_005fcore_005ffile_005flimit-1"><code>octave_core_file_limit</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Saving-Data-on-Unexpected-Exits.html">Saving Data on Unexpected Exits</a></td></tr>
<tr><td></td><td valign="top"><a href="Saving-Data-on-Unexpected-Exits.html#index-octave_005fcore_005ffile_005flimit-2"><code>octave_core_file_limit</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Saving-Data-on-Unexpected-Exits.html">Saving Data on Unexpected Exits</a></td></tr>
<tr><td></td><td valign="top"><a href="Saving-Data-on-Unexpected-Exits.html#index-octave_005fcore_005ffile_005fname"><code>octave_core_file_name</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Saving-Data-on-Unexpected-Exits.html">Saving Data on Unexpected Exits</a></td></tr>
<tr><td></td><td valign="top"><a href="Saving-Data-on-Unexpected-Exits.html#index-octave_005fcore_005ffile_005fname-1"><code>octave_core_file_name</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Saving-Data-on-Unexpected-Exits.html">Saving Data on Unexpected Exits</a></td></tr>
<tr><td></td><td valign="top"><a href="Saving-Data-on-Unexpected-Exits.html#index-octave_005fcore_005ffile_005fname-2"><code>octave_core_file_name</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Saving-Data-on-Unexpected-Exits.html">Saving Data on Unexpected Exits</a></td></tr>
<tr><td></td><td valign="top"><a href="Saving-Data-on-Unexpected-Exits.html#index-octave_005fcore_005ffile_005foptions"><code>octave_core_file_options</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Saving-Data-on-Unexpected-Exits.html">Saving Data on Unexpected Exits</a></td></tr>
<tr><td></td><td valign="top"><a href="Saving-Data-on-Unexpected-Exits.html#index-octave_005fcore_005ffile_005foptions-1"><code>octave_core_file_options</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Saving-Data-on-Unexpected-Exits.html">Saving Data on Unexpected Exits</a></td></tr>
<tr><td></td><td valign="top"><a href="Saving-Data-on-Unexpected-Exits.html#index-octave_005fcore_005ffile_005foptions-2"><code>octave_core_file_options</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Saving-Data-on-Unexpected-Exits.html">Saving Data on Unexpected Exits</a></td></tr>
<tr><td></td><td valign="top"><a href="System-Information.html#index-OCTAVE_005fEXEC_005fHOME"><code>OCTAVE_EXEC_HOME</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="System-Information.html">System Information</a></td></tr>
<tr><td></td><td valign="top"><a href="System-Information.html#index-OCTAVE_005fHOME"><code>OCTAVE_HOME</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="System-Information.html">System Information</a></td></tr>
<tr><td></td><td valign="top"><a href="System-Information.html#index-OCTAVE_005fVERSION"><code>OCTAVE_VERSION</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="System-Information.html">System Information</a></td></tr>
<tr><td></td><td valign="top"><a href="Matlab_002dcompatible-solvers.html#index-ode15i"><code>ode15i</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Matlab_002dcompatible-solvers.html">Matlab-compatible solvers</a></td></tr>
<tr><td></td><td valign="top"><a href="Matlab_002dcompatible-solvers.html#index-ode15i-1"><code>ode15i</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Matlab_002dcompatible-solvers.html">Matlab-compatible solvers</a></td></tr>
<tr><td></td><td valign="top"><a href="Matlab_002dcompatible-solvers.html#index-ode15i-2"><code>ode15i</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Matlab_002dcompatible-solvers.html">Matlab-compatible solvers</a></td></tr>
<tr><td></td><td valign="top"><a href="Matlab_002dcompatible-solvers.html#index-ode15i-3"><code>ode15i</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Matlab_002dcompatible-solvers.html">Matlab-compatible solvers</a></td></tr>
<tr><td></td><td valign="top"><a href="Matlab_002dcompatible-solvers.html#index-ode15i-4"><code>ode15i</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Matlab_002dcompatible-solvers.html">Matlab-compatible solvers</a></td></tr>
<tr><td></td><td valign="top"><a href="Matlab_002dcompatible-solvers.html#index-ode15s"><code>ode15s</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Matlab_002dcompatible-solvers.html">Matlab-compatible solvers</a></td></tr>
<tr><td></td><td valign="top"><a href="Matlab_002dcompatible-solvers.html#index-ode15s-1"><code>ode15s</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Matlab_002dcompatible-solvers.html">Matlab-compatible solvers</a></td></tr>
<tr><td></td><td valign="top"><a href="Matlab_002dcompatible-solvers.html#index-ode15s-2"><code>ode15s</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Matlab_002dcompatible-solvers.html">Matlab-compatible solvers</a></td></tr>
<tr><td></td><td valign="top"><a href="Matlab_002dcompatible-solvers.html#index-ode15s-3"><code>ode15s</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Matlab_002dcompatible-solvers.html">Matlab-compatible solvers</a></td></tr>
<tr><td></td><td valign="top"><a href="Matlab_002dcompatible-solvers.html#index-ode15s-4"><code>ode15s</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Matlab_002dcompatible-solvers.html">Matlab-compatible solvers</a></td></tr>
<tr><td></td><td valign="top"><a href="Matlab_002dcompatible-solvers.html#index-ode23"><code>ode23</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Matlab_002dcompatible-solvers.html">Matlab-compatible solvers</a></td></tr>
<tr><td></td><td valign="top"><a href="Matlab_002dcompatible-solvers.html#index-ode23-1"><code>ode23</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Matlab_002dcompatible-solvers.html">Matlab-compatible solvers</a></td></tr>
<tr><td></td><td valign="top"><a href="Matlab_002dcompatible-solvers.html#index-ode23-2"><code>ode23</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Matlab_002dcompatible-solvers.html">Matlab-compatible solvers</a></td></tr>
<tr><td></td><td valign="top"><a href="Matlab_002dcompatible-solvers.html#index-ode23-3"><code>ode23</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Matlab_002dcompatible-solvers.html">Matlab-compatible solvers</a></td></tr>
<tr><td></td><td valign="top"><a href="Matlab_002dcompatible-solvers.html#index-ode23-4"><code>ode23</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Matlab_002dcompatible-solvers.html">Matlab-compatible solvers</a></td></tr>
<tr><td></td><td valign="top"><a href="Matlab_002dcompatible-solvers.html#index-ode23s"><code>ode23s</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Matlab_002dcompatible-solvers.html">Matlab-compatible solvers</a></td></tr>
<tr><td></td><td valign="top"><a href="Matlab_002dcompatible-solvers.html#index-ode23s-1"><code>ode23s</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Matlab_002dcompatible-solvers.html">Matlab-compatible solvers</a></td></tr>
<tr><td></td><td valign="top"><a href="Matlab_002dcompatible-solvers.html#index-ode23s-2"><code>ode23s</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Matlab_002dcompatible-solvers.html">Matlab-compatible solvers</a></td></tr>
<tr><td></td><td valign="top"><a href="Matlab_002dcompatible-solvers.html#index-ode23s-3"><code>ode23s</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Matlab_002dcompatible-solvers.html">Matlab-compatible solvers</a></td></tr>
<tr><td></td><td valign="top"><a href="Matlab_002dcompatible-solvers.html#index-ode23s-4"><code>ode23s</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Matlab_002dcompatible-solvers.html">Matlab-compatible solvers</a></td></tr>
<tr><td></td><td valign="top"><a href="Matlab_002dcompatible-solvers.html#index-ode45"><code>ode45</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Matlab_002dcompatible-solvers.html">Matlab-compatible solvers</a></td></tr>
<tr><td></td><td valign="top"><a href="Matlab_002dcompatible-solvers.html#index-ode45-1"><code>ode45</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Matlab_002dcompatible-solvers.html">Matlab-compatible solvers</a></td></tr>
<tr><td></td><td valign="top"><a href="Matlab_002dcompatible-solvers.html#index-ode45-2"><code>ode45</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Matlab_002dcompatible-solvers.html">Matlab-compatible solvers</a></td></tr>
<tr><td></td><td valign="top"><a href="Matlab_002dcompatible-solvers.html#index-ode45-3"><code>ode45</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Matlab_002dcompatible-solvers.html">Matlab-compatible solvers</a></td></tr>
<tr><td></td><td valign="top"><a href="Matlab_002dcompatible-solvers.html#index-ode45-4"><code>ode45</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Matlab_002dcompatible-solvers.html">Matlab-compatible solvers</a></td></tr>
<tr><td></td><td valign="top"><a href="Matlab_002dcompatible-solvers.html#index-odeget"><code>odeget</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Matlab_002dcompatible-solvers.html">Matlab-compatible solvers</a></td></tr>
<tr><td></td><td valign="top"><a href="Matlab_002dcompatible-solvers.html#index-odeget-1"><code>odeget</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Matlab_002dcompatible-solvers.html">Matlab-compatible solvers</a></td></tr>
<tr><td></td><td valign="top"><a href="Matlab_002dcompatible-solvers.html#index-odeplot"><code>odeplot</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Matlab_002dcompatible-solvers.html">Matlab-compatible solvers</a></td></tr>
<tr><td></td><td valign="top"><a href="Matlab_002dcompatible-solvers.html#index-odeset"><code>odeset</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Matlab_002dcompatible-solvers.html">Matlab-compatible solvers</a></td></tr>
<tr><td></td><td valign="top"><a href="Matlab_002dcompatible-solvers.html#index-odeset-1"><code>odeset</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Matlab_002dcompatible-solvers.html">Matlab-compatible solvers</a></td></tr>
<tr><td></td><td valign="top"><a href="Matlab_002dcompatible-solvers.html#index-odeset-2"><code>odeset</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Matlab_002dcompatible-solvers.html">Matlab-compatible solvers</a></td></tr>
<tr><td></td><td valign="top"><a href="Matlab_002dcompatible-solvers.html#index-odeset-3"><code>odeset</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Matlab_002dcompatible-solvers.html">Matlab-compatible solvers</a></td></tr>
<tr><td></td><td valign="top"><a href="Matlab_002dcompatible-solvers.html#index-odeset-4"><code>odeset</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Matlab_002dcompatible-solvers.html">Matlab-compatible solvers</a></td></tr>
<tr><td></td><td valign="top"><a href="Linear-Least-Squares.html#index-ols"><code>ols</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Linear-Least-Squares.html">Linear Least Squares</a></td></tr>
<tr><td></td><td valign="top"><a href="Recovering-From-Errors.html#index-onCleanup"><code>onCleanup</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Recovering-From-Errors.html">Recovering From Errors</a></td></tr>
<tr><td></td><td valign="top"><a href="Special-Utility-Matrices.html#index-ones"><code>ones</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Special-Utility-Matrices.html">Special Utility Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Special-Utility-Matrices.html#index-ones-1"><code>ones</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Special-Utility-Matrices.html">Special Utility Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Special-Utility-Matrices.html#index-ones-2"><code>ones</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Special-Utility-Matrices.html">Special Utility Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Special-Utility-Matrices.html#index-ones-3"><code>ones</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Special-Utility-Matrices.html">Special Utility Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Special-Utility-Matrices.html#index-ones-4"><code>ones</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Special-Utility-Matrices.html">Special Utility Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Special-Utility-Matrices.html#index-ones-5"><code>ones</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Special-Utility-Matrices.html">Special Utility Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Controlling-Subprocesses.html#index-open"><code>open</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Controlling-Subprocesses.html">Controlling Subprocesses</a></td></tr>
<tr><td></td><td valign="top"><a href="Controlling-Subprocesses.html#index-open-1"><code>open</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Controlling-Subprocesses.html">Controlling Subprocesses</a></td></tr>
<tr><td></td><td valign="top"><a href="Printing-and-Saving-Plots.html#index-openfig"><code>openfig</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Printing-and-Saving-Plots.html">Printing and Saving Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Printing-and-Saving-Plots.html#index-openfig-1"><code>openfig</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Printing-and-Saving-Plots.html">Printing and Saving Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Printing-and-Saving-Plots.html#index-openfig-2"><code>openfig</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Printing-and-Saving-Plots.html">Printing and Saving Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Printing-and-Saving-Plots.html#index-openfig-3"><code>openfig</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Printing-and-Saving-Plots.html">Printing and Saving Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Printing-and-Saving-Plots.html#index-openfig-4"><code>openfig</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Printing-and-Saving-Plots.html">Printing and Saving Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="GUI-Utility-Functions.html#index-openvar"><code>openvar</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="GUI-Utility-Functions.html">GUI Utility Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Matrices-and-Arrays-in-Oct_002dFiles.html#index-operator"><code>operator</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Matrices-and-Arrays-in-Oct_002dFiles.html">Matrices and Arrays in Oct-Files</a></td></tr>
<tr><td></td><td valign="top"><a href="Linear-Least-Squares.html#index-optimget"><code>optimget</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Linear-Least-Squares.html">Linear Least Squares</a></td></tr>
<tr><td></td><td valign="top"><a href="Linear-Least-Squares.html#index-optimget-1"><code>optimget</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Linear-Least-Squares.html">Linear Least Squares</a></td></tr>
<tr><td></td><td valign="top"><a href="Basic-Usage.html#index-optimize_005fdiagonal_005fmatrix"><code>optimize_diagonal_matrix</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Basic-Usage.html">Basic Usage</a></td></tr>
<tr><td></td><td valign="top"><a href="Basic-Usage.html#index-optimize_005fdiagonal_005fmatrix-1"><code>optimize_diagonal_matrix</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Basic-Usage.html">Basic Usage</a></td></tr>
<tr><td></td><td valign="top"><a href="Basic-Usage.html#index-optimize_005fdiagonal_005fmatrix-2"><code>optimize_diagonal_matrix</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Basic-Usage.html">Basic Usage</a></td></tr>
<tr><td></td><td valign="top"><a href="Basic-Usage.html#index-optimize_005fpermutation_005fmatrix"><code>optimize_permutation_matrix</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Basic-Usage.html">Basic Usage</a></td></tr>
<tr><td></td><td valign="top"><a href="Basic-Usage.html#index-optimize_005fpermutation_005fmatrix-1"><code>optimize_permutation_matrix</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Basic-Usage.html">Basic Usage</a></td></tr>
<tr><td></td><td valign="top"><a href="Basic-Usage.html#index-optimize_005fpermutation_005fmatrix-2"><code>optimize_permutation_matrix</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Basic-Usage.html">Basic Usage</a></td></tr>
<tr><td></td><td valign="top"><a href="Ranges.html#index-optimize_005frange"><code>optimize_range</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Ranges.html">Ranges</a></td></tr>
<tr><td></td><td valign="top"><a href="Ranges.html#index-optimize_005frange-1"><code>optimize_range</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Ranges.html">Ranges</a></td></tr>
<tr><td></td><td valign="top"><a href="Ranges.html#index-optimize_005frange-2"><code>optimize_range</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Ranges.html">Ranges</a></td></tr>
<tr><td></td><td valign="top"><a href="Defining-Indexing-And-Indexed-Assignment.html#index-optimize_005fsubsasgn_005fcalls"><code>optimize_subsasgn_calls</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Defining-Indexing-And-Indexed-Assignment.html">Defining Indexing And Indexed Assignment</a></td></tr>
<tr><td></td><td valign="top"><a href="Defining-Indexing-And-Indexed-Assignment.html#index-optimize_005fsubsasgn_005fcalls-1"><code>optimize_subsasgn_calls</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Defining-Indexing-And-Indexed-Assignment.html">Defining Indexing And Indexed Assignment</a></td></tr>
<tr><td></td><td valign="top"><a href="Defining-Indexing-And-Indexed-Assignment.html#index-optimize_005fsubsasgn_005fcalls-2"><code>optimize_subsasgn_calls</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Defining-Indexing-And-Indexed-Assignment.html">Defining Indexing And Indexed Assignment</a></td></tr>
<tr><td></td><td valign="top"><a href="Linear-Least-Squares.html#index-optimset"><code>optimset</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Linear-Least-Squares.html">Linear Least Squares</a></td></tr>
<tr><td></td><td valign="top"><a href="Linear-Least-Squares.html#index-optimset-1"><code>optimset</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Linear-Least-Squares.html">Linear Least Squares</a></td></tr>
<tr><td></td><td valign="top"><a href="Linear-Least-Squares.html#index-optimset-2"><code>optimset</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Linear-Least-Squares.html">Linear Least Squares</a></td></tr>
<tr><td></td><td valign="top"><a href="Linear-Least-Squares.html#index-optimset-3"><code>optimset</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Linear-Least-Squares.html">Linear Least Squares</a></td></tr>
<tr><td></td><td valign="top"><a href="Linear-Least-Squares.html#index-optimset-4"><code>optimset</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Linear-Least-Squares.html">Linear Least Squares</a></td></tr>
<tr><td></td><td valign="top"><a href="Element_002dby_002delement-Boolean-Operators.html#index-or"><code>or</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Element_002dby_002delement-Boolean-Operators.html">Element-by-element Boolean Operators</a></td></tr>
<tr><td></td><td valign="top"><a href="Element_002dby_002delement-Boolean-Operators.html#index-or-1"><code>or</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Element_002dby_002delement-Boolean-Operators.html">Element-by-element Boolean Operators</a></td></tr>
<tr><td></td><td valign="top"><a href="Matrix-Factorizations.html#index-ordeig"><code>ordeig</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Matrix-Factorizations.html">Matrix Factorizations</a></td></tr>
<tr><td></td><td valign="top"><a href="Matrix-Factorizations.html#index-ordeig-1"><code>ordeig</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Matrix-Factorizations.html">Matrix Factorizations</a></td></tr>
<tr><td></td><td valign="top"><a href="Manipulating-Structures.html#index-orderfields"><code>orderfields</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Manipulating-Structures.html">Manipulating Structures</a></td></tr>
<tr><td></td><td valign="top"><a href="Manipulating-Structures.html#index-orderfields-1"><code>orderfields</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Manipulating-Structures.html">Manipulating Structures</a></td></tr>
<tr><td></td><td valign="top"><a href="Manipulating-Structures.html#index-orderfields-2"><code>orderfields</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Manipulating-Structures.html">Manipulating Structures</a></td></tr>
<tr><td></td><td valign="top"><a href="Manipulating-Structures.html#index-orderfields-3"><code>orderfields</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Manipulating-Structures.html">Manipulating Structures</a></td></tr>
<tr><td></td><td valign="top"><a href="Manipulating-Structures.html#index-orderfields-4"><code>orderfields</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Manipulating-Structures.html">Manipulating Structures</a></td></tr>
<tr><td></td><td valign="top"><a href="Matrix-Factorizations.html#index-ordqz"><code>ordqz</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Matrix-Factorizations.html">Matrix Factorizations</a></td></tr>
<tr><td></td><td valign="top"><a href="Matrix-Factorizations.html#index-ordqz-1"><code>ordqz</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Matrix-Factorizations.html">Matrix Factorizations</a></td></tr>
<tr><td></td><td valign="top"><a href="Matrix-Factorizations.html#index-ordschur"><code>ordschur</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Matrix-Factorizations.html">Matrix Factorizations</a></td></tr>
<tr><td></td><td valign="top"><a href="Printing-and-Saving-Plots.html#index-orient"><code>orient</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Printing-and-Saving-Plots.html">Printing and Saving Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Printing-and-Saving-Plots.html#index-orient-1"><code>orient</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Printing-and-Saving-Plots.html">Printing and Saving Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Printing-and-Saving-Plots.html#index-orient-2"><code>orient</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Printing-and-Saving-Plots.html">Printing and Saving Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Printing-and-Saving-Plots.html#index-orient-3"><code>orient</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Printing-and-Saving-Plots.html">Printing and Saving Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Basic-Matrix-Functions.html#index-orth"><code>orth</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Basic-Matrix-Functions.html">Basic Matrix Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Basic-Matrix-Functions.html#index-orth-1"><code>orth</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Basic-Matrix-Functions.html">Basic Matrix Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Demonstration-Functions.html#index-oruntests"><code>oruntests</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Demonstration-Functions.html">Demonstration Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Demonstration-Functions.html#index-oruntests-1"><code>oruntests</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Demonstration-Functions.html">Demonstration Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-ostreamtube"><code>ostreamtube</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-ostreamtube-1"><code>ostreamtube</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-ostreamtube-2"><code>ostreamtube</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-ostreamtube-3"><code>ostreamtube</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-ostreamtube-4"><code>ostreamtube</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-ostreamtube-5"><code>ostreamtube</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Splitting-and-Joining-Strings.html#index-ostrsplit"><code>ostrsplit</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Splitting-and-Joining-Strings.html">Splitting and Joining Strings</a></td></tr>
<tr><td></td><td valign="top"><a href="Splitting-and-Joining-Strings.html#index-ostrsplit-1"><code>ostrsplit</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Splitting-and-Joining-Strings.html">Splitting and Joining Strings</a></td></tr>
<tr><td></td><td valign="top"><a href="Matrices.html#index-output_005fprecision"><code>output_precision</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Matrices.html">Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Matrices.html#index-output_005fprecision-1"><code>output_precision</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Matrices.html">Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Matrices.html#index-output_005fprecision-2"><code>output_precision</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Matrices.html">Matrices</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th id="Function-Index_fn_letter-P">P</th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="Status-of-Variables.html#index-pack"><code>pack</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Status-of-Variables.html">Status of Variables</a></td></tr>
<tr><td></td><td valign="top"><a href="Polynomial-Interpolation.html#index-padecoef"><code>padecoef</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Polynomial-Interpolation.html">Polynomial Interpolation</a></td></tr>
<tr><td></td><td valign="top"><a href="Polynomial-Interpolation.html#index-padecoef-1"><code>padecoef</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Polynomial-Interpolation.html">Polynomial Interpolation</a></td></tr>
<tr><td></td><td valign="top"><a href="Paging-Screen-Output.html#index-PAGER"><code>PAGER</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Paging-Screen-Output.html">Paging Screen Output</a></td></tr>
<tr><td></td><td valign="top"><a href="Paging-Screen-Output.html#index-PAGER-1"><code>PAGER</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Paging-Screen-Output.html">Paging Screen Output</a></td></tr>
<tr><td></td><td valign="top"><a href="Paging-Screen-Output.html#index-PAGER-2"><code>PAGER</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Paging-Screen-Output.html">Paging Screen Output</a></td></tr>
<tr><td></td><td valign="top"><a href="Paging-Screen-Output.html#index-PAGER_005fFLAGS"><code>PAGER_FLAGS</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Paging-Screen-Output.html">Paging Screen Output</a></td></tr>
<tr><td></td><td valign="top"><a href="Paging-Screen-Output.html#index-PAGER_005fFLAGS-1"><code>PAGER_FLAGS</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Paging-Screen-Output.html">Paging Screen Output</a></td></tr>
<tr><td></td><td valign="top"><a href="Paging-Screen-Output.html#index-PAGER_005fFLAGS-2"><code>PAGER_FLAGS</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Paging-Screen-Output.html">Paging Screen Output</a></td></tr>
<tr><td></td><td valign="top"><a href="Paging-Screen-Output.html#index-page_005foutput_005fimmediately"><code>page_output_immediately</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Paging-Screen-Output.html">Paging Screen Output</a></td></tr>
<tr><td></td><td valign="top"><a href="Paging-Screen-Output.html#index-page_005foutput_005fimmediately-1"><code>page_output_immediately</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Paging-Screen-Output.html">Paging Screen Output</a></td></tr>
<tr><td></td><td valign="top"><a href="Paging-Screen-Output.html#index-page_005foutput_005fimmediately-2"><code>page_output_immediately</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Paging-Screen-Output.html">Paging Screen Output</a></td></tr>
<tr><td></td><td valign="top"><a href="Paging-Screen-Output.html#index-page_005fscreen_005foutput"><code>page_screen_output</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Paging-Screen-Output.html">Paging Screen Output</a></td></tr>
<tr><td></td><td valign="top"><a href="Paging-Screen-Output.html#index-page_005fscreen_005foutput-1"><code>page_screen_output</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Paging-Screen-Output.html">Paging Screen Output</a></td></tr>
<tr><td></td><td valign="top"><a href="Paging-Screen-Output.html#index-page_005fscreen_005foutput-2"><code>page_screen_output</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Paging-Screen-Output.html">Paging Screen Output</a></td></tr>
<tr><td></td><td valign="top"><a href="Manipulation-of-Plot-Objects.html#index-pan"><code>pan</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Manipulation-of-Plot-Objects.html">Manipulation of Plot Objects</a></td></tr>
<tr><td></td><td valign="top"><a href="Manipulation-of-Plot-Objects.html#index-pan-1"><code>pan</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Manipulation-of-Plot-Objects.html">Manipulation of Plot Objects</a></td></tr>
<tr><td></td><td valign="top"><a href="Manipulation-of-Plot-Objects.html#index-pan-2"><code>pan</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Manipulation-of-Plot-Objects.html">Manipulation of Plot Objects</a></td></tr>
<tr><td></td><td valign="top"><a href="Manipulation-of-Plot-Objects.html#index-pan-3"><code>pan</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Manipulation-of-Plot-Objects.html">Manipulation of Plot Objects</a></td></tr>
<tr><td></td><td valign="top"><a href="Manipulation-of-Plot-Objects.html#index-pan-4"><code>pan</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Manipulation-of-Plot-Objects.html">Manipulation of Plot Objects</a></td></tr>
<tr><td></td><td valign="top"><a href="Manipulation-of-Plot-Objects.html#index-pan-5"><code>pan</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Manipulation-of-Plot-Objects.html">Manipulation of Plot Objects</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-pareto"><code>pareto</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-pareto-1"><code>pareto</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-pareto-2"><code>pareto</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-pareto-3"><code>pareto</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Variable_002dlength-Argument-Lists.html#index-parseparams"><code>parseparams</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Variable_002dlength-Argument-Lists.html">Variable-length Argument Lists</a></td></tr>
<tr><td></td><td valign="top"><a href="Variable_002dlength-Argument-Lists.html#index-parseparams-1"><code>parseparams</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Variable_002dlength-Argument-Lists.html">Variable-length Argument Lists</a></td></tr>
<tr><td></td><td valign="top"><a href="Famous-Matrices.html#index-pascal"><code>pascal</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Famous-Matrices.html">Famous Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Famous-Matrices.html#index-pascal-1"><code>pascal</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Famous-Matrices.html">Famous Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Graphics-Objects.html#index-patch"><code>patch</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Graphics-Objects.html">Graphics Objects</a></td></tr>
<tr><td></td><td valign="top"><a href="Graphics-Objects.html#index-patch-1"><code>patch</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Graphics-Objects.html">Graphics Objects</a></td></tr>
<tr><td></td><td valign="top"><a href="Graphics-Objects.html#index-patch-2"><code>patch</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Graphics-Objects.html">Graphics Objects</a></td></tr>
<tr><td></td><td valign="top"><a href="Graphics-Objects.html#index-patch-3"><code>patch</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Graphics-Objects.html">Graphics Objects</a></td></tr>
<tr><td></td><td valign="top"><a href="Graphics-Objects.html#index-patch-4"><code>patch</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Graphics-Objects.html">Graphics Objects</a></td></tr>
<tr><td></td><td valign="top"><a href="Graphics-Objects.html#index-patch-5"><code>patch</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Graphics-Objects.html">Graphics Objects</a></td></tr>
<tr><td></td><td valign="top"><a href="Graphics-Objects.html#index-patch-6"><code>patch</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Graphics-Objects.html">Graphics Objects</a></td></tr>
<tr><td></td><td valign="top"><a href="Graphics-Objects.html#index-patch-7"><code>patch</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Graphics-Objects.html">Graphics Objects</a></td></tr>
<tr><td></td><td valign="top"><a href="Manipulating-the-Load-Path.html#index-path"><code>path</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Manipulating-the-Load-Path.html">Manipulating the Load Path</a></td></tr>
<tr><td></td><td valign="top"><a href="Manipulating-the-Load-Path.html#index-path-1"><code>path</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Manipulating-the-Load-Path.html">Manipulating the Load Path</a></td></tr>
<tr><td></td><td valign="top"><a href="Manipulating-the-Load-Path.html#index-path-2"><code>path</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Manipulating-the-Load-Path.html">Manipulating the Load Path</a></td></tr>
<tr><td></td><td valign="top"><a href="Manipulating-the-Load-Path.html#index-pathdef"><code>pathdef</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Manipulating-the-Load-Path.html">Manipulating the Load Path</a></td></tr>
<tr><td></td><td valign="top"><a href="Manipulating-the-Load-Path.html#index-pathsep"><code>pathsep</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Manipulating-the-Load-Path.html">Manipulating the Load Path</a></td></tr>
<tr><td></td><td valign="top"><a href="Playback.html#index-pause"><code>pause</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Playback.html">Playback</a></td></tr>
<tr><td></td><td valign="top"><a href="Recording.html#index-pause-1"><code>pause</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Recording.html">Recording</a></td></tr>
<tr><td></td><td valign="top"><a href="Timing-Utilities.html#index-pause-2"><code>pause</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Timing-Utilities.html">Timing Utilities</a></td></tr>
<tr><td></td><td valign="top"><a href="Timing-Utilities.html#index-pause-3"><code>pause</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Timing-Utilities.html">Timing Utilities</a></td></tr>
<tr><td></td><td valign="top"><a href="Timing-Utilities.html#index-pause-4"><code>pause</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Timing-Utilities.html">Timing Utilities</a></td></tr>
<tr><td></td><td valign="top"><a href="Timing-Utilities.html#index-pause-5"><code>pause</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Timing-Utilities.html">Timing Utilities</a></td></tr>
<tr><td></td><td valign="top"><a href="Timing-Utilities.html#index-pause-6"><code>pause</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Timing-Utilities.html">Timing Utilities</a></td></tr>
<tr><td></td><td valign="top"><a href="Aspect-Ratio.html#index-pbaspect"><code>pbaspect</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Aspect-Ratio.html">Aspect Ratio</a></td></tr>
<tr><td></td><td valign="top"><a href="Aspect-Ratio.html#index-pbaspect-1"><code>pbaspect</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Aspect-Ratio.html">Aspect Ratio</a></td></tr>
<tr><td></td><td valign="top"><a href="Aspect-Ratio.html#index-pbaspect-2"><code>pbaspect</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Aspect-Ratio.html">Aspect Ratio</a></td></tr>
<tr><td></td><td valign="top"><a href="Aspect-Ratio.html#index-pbaspect-3"><code>pbaspect</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Aspect-Ratio.html">Aspect Ratio</a></td></tr>
<tr><td></td><td valign="top"><a href="Aspect-Ratio.html#index-pbaspect-4"><code>pbaspect</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Aspect-Ratio.html">Aspect Ratio</a></td></tr>
<tr><td></td><td valign="top"><a href="Iterative-Techniques.html#index-pcg"><code>pcg</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Iterative-Techniques.html">Iterative Techniques</a></td></tr>
<tr><td></td><td valign="top"><a href="Iterative-Techniques.html#index-pcg-1"><code>pcg</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Iterative-Techniques.html">Iterative Techniques</a></td></tr>
<tr><td></td><td valign="top"><a href="Iterative-Techniques.html#index-pcg-2"><code>pcg</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Iterative-Techniques.html">Iterative Techniques</a></td></tr>
<tr><td></td><td valign="top"><a href="Signal-Processing.html#index-pchip"><code>pchip</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Signal-Processing.html">Signal Processing</a></td></tr>
<tr><td></td><td valign="top"><a href="Signal-Processing.html#index-pchip-1"><code>pchip</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Signal-Processing.html">Signal Processing</a></td></tr>
<tr><td></td><td valign="top"><a href="Controlling-Subprocesses.html#index-pclose"><code>pclose</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Controlling-Subprocesses.html">Controlling Subprocesses</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-pcolor"><code>pcolor</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-pcolor-1"><code>pcolor</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-pcolor-2"><code>pcolor</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-pcolor-3"><code>pcolor</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Iterative-Techniques.html#index-pcr"><code>pcr</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Iterative-Techniques.html">Iterative Techniques</a></td></tr>
<tr><td></td><td valign="top"><a href="Iterative-Techniques.html#index-pcr-1"><code>pcr</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Iterative-Techniques.html">Iterative Techniques</a></td></tr>
<tr><td></td><td valign="top"><a href="Test-Plotting-Functions.html#index-peaks"><code>peaks</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Test-Plotting-Functions.html">Test Plotting Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Test-Plotting-Functions.html#index-peaks-1"><code>peaks</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Test-Plotting-Functions.html">Test Plotting Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Test-Plotting-Functions.html#index-peaks-2"><code>peaks</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Test-Plotting-Functions.html">Test Plotting Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Test-Plotting-Functions.html#index-peaks-3"><code>peaks</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Test-Plotting-Functions.html">Test Plotting Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Test-Plotting-Functions.html#index-peaks-4"><code>peaks</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Test-Plotting-Functions.html">Test Plotting Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Signal-Processing.html#index-periodogram"><code>periodogram</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Signal-Processing.html">Signal Processing</a></td></tr>
<tr><td></td><td valign="top"><a href="Signal-Processing.html#index-periodogram-1"><code>periodogram</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Signal-Processing.html">Signal Processing</a></td></tr>
<tr><td></td><td valign="top"><a href="Signal-Processing.html#index-periodogram-2"><code>periodogram</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Signal-Processing.html">Signal Processing</a></td></tr>
<tr><td></td><td valign="top"><a href="Signal-Processing.html#index-periodogram-3"><code>periodogram</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Signal-Processing.html">Signal Processing</a></td></tr>
<tr><td></td><td valign="top"><a href="Signal-Processing.html#index-periodogram-4"><code>periodogram</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Signal-Processing.html">Signal Processing</a></td></tr>
<tr><td></td><td valign="top"><a href="Signal-Processing.html#index-periodogram-5"><code>periodogram</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Signal-Processing.html">Signal Processing</a></td></tr>
<tr><td></td><td valign="top"><a href="Controlling-Subprocesses.html#index-perl"><code>perl</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Controlling-Subprocesses.html">Controlling Subprocesses</a></td></tr>
<tr><td></td><td valign="top"><a href="Controlling-Subprocesses.html#index-perl-1"><code>perl</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Controlling-Subprocesses.html">Controlling Subprocesses</a></td></tr>
<tr><td></td><td valign="top"><a href="Controlling-Subprocesses.html#index-perl-2"><code>perl</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Controlling-Subprocesses.html">Controlling Subprocesses</a></td></tr>
<tr><td></td><td valign="top"><a href="Basic-Statistical-Functions.html#index-perms"><code>perms</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Basic-Statistical-Functions.html">Basic Statistical Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Rearranging-Matrices.html#index-permute"><code>permute</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Rearranging-Matrices.html">Rearranging Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Mathematical-Constants.html#index-pi"><code>pi</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Mathematical-Constants.html">Mathematical Constants</a></td></tr>
<tr><td></td><td valign="top"><a href="Mathematical-Constants.html#index-pi-1"><code>pi</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Mathematical-Constants.html">Mathematical Constants</a></td></tr>
<tr><td></td><td valign="top"><a href="Mathematical-Constants.html#index-pi-2"><code>pi</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Mathematical-Constants.html">Mathematical Constants</a></td></tr>
<tr><td></td><td valign="top"><a href="Mathematical-Constants.html#index-pi-3"><code>pi</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Mathematical-Constants.html">Mathematical Constants</a></td></tr>
<tr><td></td><td valign="top"><a href="Mathematical-Constants.html#index-pi-4"><code>pi</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Mathematical-Constants.html">Mathematical Constants</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-pie"><code>pie</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-pie-1"><code>pie</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-pie-2"><code>pie</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-pie-3"><code>pie</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-pie-4"><code>pie</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-pie3"><code>pie3</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-pie3-1"><code>pie3</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-pie3-2"><code>pie3</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-pie3-3"><code>pie3</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-pie3-4"><code>pie3</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Representing-Images.html#index-pink"><code>pink</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Representing-Images.html">Representing Images</a></td></tr>
<tr><td></td><td valign="top"><a href="Representing-Images.html#index-pink-1"><code>pink</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Representing-Images.html">Representing Images</a></td></tr>
<tr><td></td><td valign="top"><a href="Basic-Matrix-Functions.html#index-pinv"><code>pinv</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Basic-Matrix-Functions.html">Basic Matrix Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Basic-Matrix-Functions.html#index-pinv-1"><code>pinv</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Basic-Matrix-Functions.html">Basic Matrix Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Controlling-Subprocesses.html#index-pipe"><code>pipe</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Controlling-Subprocesses.html">Controlling Subprocesses</a></td></tr>
<tr><td></td><td valign="top"><a href="Packages.html#index-pkg"><code>pkg</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Packages.html">Packages</a></td></tr>
<tr><td></td><td valign="top"><a href="Installing-and-Removing-Packages.html#index-pkg-1"><code>pkg</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Installing-and-Removing-Packages.html">Installing and Removing Packages</a></td></tr>
<tr><td></td><td valign="top"><a href="Installing-and-Removing-Packages.html#index-pkg-2"><code>pkg</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Installing-and-Removing-Packages.html">Installing and Removing Packages</a></td></tr>
<tr><td></td><td valign="top"><a href="Installing-and-Removing-Packages.html#index-pkg-3"><code>pkg</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Installing-and-Removing-Packages.html">Installing and Removing Packages</a></td></tr>
<tr><td></td><td valign="top"><a href="Basic-Matrix-Functions.html#index-planerot"><code>planerot</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Basic-Matrix-Functions.html">Basic Matrix Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Playback.html#index-play"><code>play</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Playback.html">Playback</a></td></tr>
<tr><td></td><td valign="top"><a href="Playback.html#index-play-1"><code>play</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Playback.html">Playback</a></td></tr>
<tr><td></td><td valign="top"><a href="Playback.html#index-play-2"><code>play</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Playback.html">Playback</a></td></tr>
<tr><td></td><td valign="top"><a href="Data-Retrieval.html#index-play-3"><code>play</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Data-Retrieval.html">Data Retrieval</a></td></tr>
<tr><td></td><td valign="top"><a href="Data-Retrieval.html#index-play-4"><code>play</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Data-Retrieval.html">Data Retrieval</a></td></tr>
<tr><td></td><td valign="top"><a href="Data-Retrieval.html#index-play-5"><code>play</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Data-Retrieval.html">Data Retrieval</a></td></tr>
<tr><td></td><td valign="top"><a href="Playback.html#index-playblocking"><code>playblocking</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Playback.html">Playback</a></td></tr>
<tr><td></td><td valign="top"><a href="Playback.html#index-playblocking-1"><code>playblocking</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Playback.html">Playback</a></td></tr>
<tr><td></td><td valign="top"><a href="Playback.html#index-playblocking-2"><code>playblocking</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Playback.html">Playback</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-plot"><code>plot</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-plot-1"><code>plot</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-plot-2"><code>plot</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-plot-3"><code>plot</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-plot-4"><code>plot</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-plot-5"><code>plot</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-plot-6"><code>plot</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-plot3"><code>plot3</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-plot3-1"><code>plot3</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-plot3-2"><code>plot3</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-plot3-3"><code>plot3</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-plot3-4"><code>plot3</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-plot3-5"><code>plot3</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-plot3-6"><code>plot3</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-plotmatrix"><code>plotmatrix</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-plotmatrix-1"><code>plotmatrix</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-plotmatrix-2"><code>plotmatrix</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-plotmatrix-3"><code>plotmatrix</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-plotmatrix-4"><code>plotmatrix</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-plotyy"><code>plotyy</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-plotyy-1"><code>plotyy</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-plotyy-2"><code>plotyy</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-plotyy-3"><code>plotyy</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-plotyy-4"><code>plotyy</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Arithmetic-Ops.html#index-plus"><code>plus</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Arithmetic-Ops.html">Arithmetic Ops</a></td></tr>
<tr><td></td><td valign="top"><a href="Arithmetic-Ops.html#index-plus-1"><code>plus</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Arithmetic-Ops.html">Arithmetic Ops</a></td></tr>
<tr><td></td><td valign="top"><a href="Coordinate-Transformations.html#index-pol2cart"><code>pol2cart</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Coordinate-Transformations.html">Coordinate Transformations</a></td></tr>
<tr><td></td><td valign="top"><a href="Coordinate-Transformations.html#index-pol2cart-1"><code>pol2cart</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Coordinate-Transformations.html">Coordinate Transformations</a></td></tr>
<tr><td></td><td valign="top"><a href="Coordinate-Transformations.html#index-pol2cart-2"><code>pol2cart</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Coordinate-Transformations.html">Coordinate Transformations</a></td></tr>
<tr><td></td><td valign="top"><a href="Coordinate-Transformations.html#index-pol2cart-3"><code>pol2cart</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Coordinate-Transformations.html">Coordinate Transformations</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-polar"><code>polar</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-polar-1"><code>polar</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-polar-2"><code>polar</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-polar-3"><code>polar</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-polar-4"><code>polar</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-polar-5"><code>polar</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Miscellaneous-Functions.html#index-poly"><code>poly</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Miscellaneous-Functions.html">Miscellaneous Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Miscellaneous-Functions.html#index-poly-1"><code>poly</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Miscellaneous-Functions.html">Miscellaneous Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Derivatives-_002f-Integrals-_002f-Transforms.html#index-polyaffine"><code>polyaffine</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Derivatives-_002f-Integrals-_002f-Transforms.html">Derivatives / Integrals / Transforms</a></td></tr>
<tr><td></td><td valign="top"><a href="Voronoi-Diagrams.html#index-polyarea"><code>polyarea</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Voronoi-Diagrams.html">Voronoi Diagrams</a></td></tr>
<tr><td></td><td valign="top"><a href="Voronoi-Diagrams.html#index-polyarea-1"><code>polyarea</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Voronoi-Diagrams.html">Voronoi Diagrams</a></td></tr>
<tr><td></td><td valign="top"><a href="Derivatives-_002f-Integrals-_002f-Transforms.html#index-polyder"><code>polyder</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Derivatives-_002f-Integrals-_002f-Transforms.html">Derivatives / Integrals / Transforms</a></td></tr>
<tr><td></td><td valign="top"><a href="Derivatives-_002f-Integrals-_002f-Transforms.html#index-polyder-1"><code>polyder</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Derivatives-_002f-Integrals-_002f-Transforms.html">Derivatives / Integrals / Transforms</a></td></tr>
<tr><td></td><td valign="top"><a href="Derivatives-_002f-Integrals-_002f-Transforms.html#index-polyder-2"><code>polyder</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Derivatives-_002f-Integrals-_002f-Transforms.html">Derivatives / Integrals / Transforms</a></td></tr>
<tr><td></td><td valign="top"><a href="Finding-Roots.html#index-polyeig"><code>polyeig</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Finding-Roots.html">Finding Roots</a></td></tr>
<tr><td></td><td valign="top"><a href="Finding-Roots.html#index-polyeig-1"><code>polyeig</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Finding-Roots.html">Finding Roots</a></td></tr>
<tr><td></td><td valign="top"><a href="Polynomial-Interpolation.html#index-polyfit"><code>polyfit</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Polynomial-Interpolation.html">Polynomial Interpolation</a></td></tr>
<tr><td></td><td valign="top"><a href="Polynomial-Interpolation.html#index-polyfit-1"><code>polyfit</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Polynomial-Interpolation.html">Polynomial Interpolation</a></td></tr>
<tr><td></td><td valign="top"><a href="Polynomial-Interpolation.html#index-polyfit-2"><code>polyfit</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Polynomial-Interpolation.html">Polynomial Interpolation</a></td></tr>
<tr><td></td><td valign="top"><a href="Products-of-Polynomials.html#index-polygcd"><code>polygcd</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Products-of-Polynomials.html">Products of Polynomials</a></td></tr>
<tr><td></td><td valign="top"><a href="Products-of-Polynomials.html#index-polygcd-1"><code>polygcd</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Products-of-Polynomials.html">Products of Polynomials</a></td></tr>
<tr><td></td><td valign="top"><a href="Derivatives-_002f-Integrals-_002f-Transforms.html#index-polyint"><code>polyint</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Derivatives-_002f-Integrals-_002f-Transforms.html">Derivatives / Integrals / Transforms</a></td></tr>
<tr><td></td><td valign="top"><a href="Derivatives-_002f-Integrals-_002f-Transforms.html#index-polyint-1"><code>polyint</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Derivatives-_002f-Integrals-_002f-Transforms.html">Derivatives / Integrals / Transforms</a></td></tr>
<tr><td></td><td valign="top"><a href="Miscellaneous-Functions.html#index-polyout"><code>polyout</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Miscellaneous-Functions.html">Miscellaneous Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Miscellaneous-Functions.html#index-polyout-1"><code>polyout</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Miscellaneous-Functions.html">Miscellaneous Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Miscellaneous-Functions.html#index-polyout-2"><code>polyout</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Miscellaneous-Functions.html">Miscellaneous Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Miscellaneous-Functions.html#index-polyreduce"><code>polyreduce</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Miscellaneous-Functions.html">Miscellaneous Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Evaluating-Polynomials.html#index-polyval"><code>polyval</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Evaluating-Polynomials.html">Evaluating Polynomials</a></td></tr>
<tr><td></td><td valign="top"><a href="Evaluating-Polynomials.html#index-polyval-1"><code>polyval</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Evaluating-Polynomials.html">Evaluating Polynomials</a></td></tr>
<tr><td></td><td valign="top"><a href="Evaluating-Polynomials.html#index-polyval-2"><code>polyval</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Evaluating-Polynomials.html">Evaluating Polynomials</a></td></tr>
<tr><td></td><td valign="top"><a href="Evaluating-Polynomials.html#index-polyval-3"><code>polyval</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Evaluating-Polynomials.html">Evaluating Polynomials</a></td></tr>
<tr><td></td><td valign="top"><a href="Evaluating-Polynomials.html#index-polyvalm"><code>polyvalm</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Evaluating-Polynomials.html">Evaluating Polynomials</a></td></tr>
<tr><td></td><td valign="top"><a href="Controlling-Subprocesses.html#index-popen"><code>popen</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Controlling-Subprocesses.html">Controlling Subprocesses</a></td></tr>
<tr><td></td><td valign="top"><a href="Controlling-Subprocesses.html#index-popen2"><code>popen2</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Controlling-Subprocesses.html">Controlling Subprocesses</a></td></tr>
<tr><td></td><td valign="top"><a href="Rearranging-Matrices.html#index-postpad"><code>postpad</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Rearranging-Matrices.html">Rearranging Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Rearranging-Matrices.html#index-postpad-1"><code>postpad</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Rearranging-Matrices.html">Rearranging Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Rearranging-Matrices.html#index-postpad-2"><code>postpad</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Rearranging-Matrices.html">Rearranging Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Exponents-and-Logarithms.html#index-pow2"><code>pow2</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Exponents-and-Logarithms.html">Exponents and Logarithms</a></td></tr>
<tr><td></td><td valign="top"><a href="Exponents-and-Logarithms.html#index-pow2-1"><code>pow2</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Exponents-and-Logarithms.html">Exponents and Logarithms</a></td></tr>
<tr><td></td><td valign="top"><a href="Arithmetic-Ops.html#index-power"><code>power</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Arithmetic-Ops.html">Arithmetic Ops</a></td></tr>
<tr><td></td><td valign="top"><a href="Set-Operations.html#index-powerset"><code>powerset</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Set-Operations.html">Set Operations</a></td></tr>
<tr><td></td><td valign="top"><a href="Set-Operations.html#index-powerset-1"><code>powerset</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Set-Operations.html">Set Operations</a></td></tr>
<tr><td></td><td valign="top"><a href="Polynomial-Interpolation.html#index-ppder"><code>ppder</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Polynomial-Interpolation.html">Polynomial Interpolation</a></td></tr>
<tr><td></td><td valign="top"><a href="Polynomial-Interpolation.html#index-ppder-1"><code>ppder</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Polynomial-Interpolation.html">Polynomial Interpolation</a></td></tr>
<tr><td></td><td valign="top"><a href="Polynomial-Interpolation.html#index-ppint"><code>ppint</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Polynomial-Interpolation.html">Polynomial Interpolation</a></td></tr>
<tr><td></td><td valign="top"><a href="Polynomial-Interpolation.html#index-ppint-1"><code>ppint</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Polynomial-Interpolation.html">Polynomial Interpolation</a></td></tr>
<tr><td></td><td valign="top"><a href="Polynomial-Interpolation.html#index-ppjumps"><code>ppjumps</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Polynomial-Interpolation.html">Polynomial Interpolation</a></td></tr>
<tr><td></td><td valign="top"><a href="Polynomial-Interpolation.html#index-ppval"><code>ppval</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Polynomial-Interpolation.html">Polynomial Interpolation</a></td></tr>
<tr><td></td><td valign="top"><a href="Quadratic-Programming.html#index-pqpnonneg"><code>pqpnonneg</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Quadratic-Programming.html">Quadratic Programming</a></td></tr>
<tr><td></td><td valign="top"><a href="Quadratic-Programming.html#index-pqpnonneg-1"><code>pqpnonneg</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Quadratic-Programming.html">Quadratic Programming</a></td></tr>
<tr><td></td><td valign="top"><a href="Quadratic-Programming.html#index-pqpnonneg-2"><code>pqpnonneg</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Quadratic-Programming.html">Quadratic Programming</a></td></tr>
<tr><td></td><td valign="top"><a href="Quadratic-Programming.html#index-pqpnonneg-3"><code>pqpnonneg</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Quadratic-Programming.html">Quadratic Programming</a></td></tr>
<tr><td></td><td valign="top"><a href="Quadratic-Programming.html#index-pqpnonneg-4"><code>pqpnonneg</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Quadratic-Programming.html">Quadratic Programming</a></td></tr>
<tr><td></td><td valign="top"><a href="Quadratic-Programming.html#index-pqpnonneg-5"><code>pqpnonneg</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Quadratic-Programming.html">Quadratic Programming</a></td></tr>
<tr><td></td><td valign="top"><a href="Quadratic-Programming.html#index-pqpnonneg-6"><code>pqpnonneg</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Quadratic-Programming.html">Quadratic Programming</a></td></tr>
<tr><td></td><td valign="top"><a href="Descriptive-Statistics.html#index-prctile"><code>prctile</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Descriptive-Statistics.html">Descriptive Statistics</a></td></tr>
<tr><td></td><td valign="top"><a href="Descriptive-Statistics.html#index-prctile-1"><code>prctile</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Descriptive-Statistics.html">Descriptive Statistics</a></td></tr>
<tr><td></td><td valign="top"><a href="Descriptive-Statistics.html#index-prctile-2"><code>prctile</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Descriptive-Statistics.html">Descriptive Statistics</a></td></tr>
<tr><td></td><td valign="top"><a href="User_002dDefined-Preferences.html#index-prefdir"><code>prefdir</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="User_002dDefined-Preferences.html">User-Defined Preferences</a></td></tr>
<tr><td></td><td valign="top"><a href="User_002dDefined-Preferences.html#index-prefdir-1"><code>prefdir</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="User_002dDefined-Preferences.html">User-Defined Preferences</a></td></tr>
<tr><td></td><td valign="top"><a href="User_002dDefined-Preferences.html#index-prefdir-2"><code>prefdir</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="User_002dDefined-Preferences.html">User-Defined Preferences</a></td></tr>
<tr><td></td><td valign="top"><a href="User_002dDefined-Preferences.html#index-preferences"><code>preferences</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="User_002dDefined-Preferences.html">User-Defined Preferences</a></td></tr>
<tr><td></td><td valign="top"><a href="Rearranging-Matrices.html#index-prepad"><code>prepad</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Rearranging-Matrices.html">Rearranging Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Rearranging-Matrices.html#index-prepad-1"><code>prepad</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Rearranging-Matrices.html">Rearranging Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Rearranging-Matrices.html#index-prepad-2"><code>prepad</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Rearranging-Matrices.html">Rearranging Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Utility-Functions.html#index-primes"><code>primes</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Utility-Functions.html">Utility Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Printing-and-Saving-Plots.html#index-print"><code>print</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Printing-and-Saving-Plots.html">Printing and Saving Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Printing-and-Saving-Plots.html#index-print-1"><code>print</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Printing-and-Saving-Plots.html">Printing and Saving Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Printing-and-Saving-Plots.html#index-print-2"><code>print</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Printing-and-Saving-Plots.html">Printing and Saving Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Printing-and-Saving-Plots.html#index-print-3"><code>print</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Printing-and-Saving-Plots.html">Printing and Saving Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Printing-and-Saving-Plots.html#index-print-4"><code>print</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Printing-and-Saving-Plots.html">Printing and Saving Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-printd"><code>printd</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-printd-1"><code>printd</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Formatted-Output.html#index-printf"><code>printf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Formatted-Output.html">Formatted Output</a></td></tr>
<tr><td></td><td valign="top"><a href="Empty-Matrices.html#index-print_005fempty_005fdimensions"><code>print_empty_dimensions</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Empty-Matrices.html">Empty Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Empty-Matrices.html#index-print_005fempty_005fdimensions-1"><code>print_empty_dimensions</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Empty-Matrices.html">Empty Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Empty-Matrices.html#index-print_005fempty_005fdimensions-2"><code>print_empty_dimensions</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Empty-Matrices.html">Empty Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Basic-Usage-and-Examples.html#index-print_005fstruct_005farray_005fcontents"><code>print_struct_array_contents</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Basic-Usage-and-Examples.html">Basic Usage and Examples</a></td></tr>
<tr><td></td><td valign="top"><a href="Basic-Usage-and-Examples.html#index-print_005fstruct_005farray_005fcontents-1"><code>print_struct_array_contents</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Basic-Usage-and-Examples.html">Basic Usage and Examples</a></td></tr>
<tr><td></td><td valign="top"><a href="Basic-Usage-and-Examples.html#index-print_005fstruct_005farray_005fcontents-2"><code>print_struct_array_contents</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Basic-Usage-and-Examples.html">Basic Usage and Examples</a></td></tr>
<tr><td></td><td valign="top"><a href="Raising-Errors.html#index-print_005fusage"><code>print_usage</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Raising-Errors.html">Raising Errors</a></td></tr>
<tr><td></td><td valign="top"><a href="Raising-Errors.html#index-print_005fusage-1"><code>print_usage</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Raising-Errors.html">Raising Errors</a></td></tr>
<tr><td></td><td valign="top"><a href="Representing-Images.html#index-prism"><code>prism</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Representing-Images.html">Representing Images</a></td></tr>
<tr><td></td><td valign="top"><a href="Representing-Images.html#index-prism-1"><code>prism</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Representing-Images.html">Representing Images</a></td></tr>
<tr><td></td><td valign="top"><a href="Sums-and-Products.html#index-prod"><code>prod</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Sums-and-Products.html">Sums and Products</a></td></tr>
<tr><td></td><td valign="top"><a href="Sums-and-Products.html#index-prod-1"><code>prod</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Sums-and-Products.html">Sums and Products</a></td></tr>
<tr><td></td><td valign="top"><a href="Sums-and-Products.html#index-prod-2"><code>prod</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Sums-and-Products.html">Sums and Products</a></td></tr>
<tr><td></td><td valign="top"><a href="Sums-and-Products.html#index-prod-3"><code>prod</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Sums-and-Products.html">Sums and Products</a></td></tr>
<tr><td></td><td valign="top"><a href="Profiling.html#index-profexplore"><code>profexplore</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Profiling.html">Profiling</a></td></tr>
<tr><td></td><td valign="top"><a href="Profiling.html#index-profexplore-1"><code>profexplore</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Profiling.html">Profiling</a></td></tr>
<tr><td></td><td valign="top"><a href="Profiling.html#index-profexport"><code>profexport</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Profiling.html">Profiling</a></td></tr>
<tr><td></td><td valign="top"><a href="Profiling.html#index-profexport-1"><code>profexport</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Profiling.html">Profiling</a></td></tr>
<tr><td></td><td valign="top"><a href="Profiling.html#index-profexport-2"><code>profexport</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Profiling.html">Profiling</a></td></tr>
<tr><td></td><td valign="top"><a href="Profiling.html#index-profexport-3"><code>profexport</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Profiling.html">Profiling</a></td></tr>
<tr><td></td><td valign="top"><a href="Profiling.html#index-profile"><code>profile</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Profiling.html">Profiling</a></td></tr>
<tr><td></td><td valign="top"><a href="Profiling.html#index-profile-1"><code>profile</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Profiling.html">Profiling</a></td></tr>
<tr><td></td><td valign="top"><a href="Profiling.html#index-profile-2"><code>profile</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Profiling.html">Profiling</a></td></tr>
<tr><td></td><td valign="top"><a href="Profiling.html#index-profile-3"><code>profile</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Profiling.html">Profiling</a></td></tr>
<tr><td></td><td valign="top"><a href="Profiling.html#index-profile-4"><code>profile</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Profiling.html">Profiling</a></td></tr>
<tr><td></td><td valign="top"><a href="Profiling.html#index-profile-5"><code>profile</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Profiling.html">Profiling</a></td></tr>
<tr><td></td><td valign="top"><a href="Profiling.html#index-profshow"><code>profshow</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Profiling.html">Profiling</a></td></tr>
<tr><td></td><td valign="top"><a href="Profiling.html#index-profshow-1"><code>profshow</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Profiling.html">Profiling</a></td></tr>
<tr><td></td><td valign="top"><a href="Profiling.html#index-profshow-2"><code>profshow</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Profiling.html">Profiling</a></td></tr>
<tr><td></td><td valign="top"><a href="Profiling.html#index-profshow-3"><code>profshow</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Profiling.html">Profiling</a></td></tr>
<tr><td></td><td valign="top"><a href="Command-Line-Options.html#index-program_005finvocation_005fname"><code>program_invocation_name</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Command-Line-Options.html">Command Line Options</a></td></tr>
<tr><td></td><td valign="top"><a href="Command-Line-Options.html#index-program_005fname"><code>program_name</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Command-Line-Options.html">Command Line Options</a></td></tr>
<tr><td></td><td valign="top"><a href="Properties.html#index-properties"><code>properties</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Properties.html">Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Properties.html#index-properties-1"><code>properties</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Properties.html">Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Properties.html#index-properties-2"><code>properties</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Properties.html">Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Customizing-the-Prompt.html#index-PS1"><code>PS1</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Customizing-the-Prompt.html">Customizing the Prompt</a></td></tr>
<tr><td></td><td valign="top"><a href="Customizing-the-Prompt.html#index-PS1-1"><code>PS1</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Customizing-the-Prompt.html">Customizing the Prompt</a></td></tr>
<tr><td></td><td valign="top"><a href="Customizing-the-Prompt.html#index-PS1-2"><code>PS1</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Customizing-the-Prompt.html">Customizing the Prompt</a></td></tr>
<tr><td></td><td valign="top"><a href="Customizing-the-Prompt.html#index-PS2"><code>PS2</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Customizing-the-Prompt.html">Customizing the Prompt</a></td></tr>
<tr><td></td><td valign="top"><a href="Customizing-the-Prompt.html#index-PS2-1"><code>PS2</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Customizing-the-Prompt.html">Customizing the Prompt</a></td></tr>
<tr><td></td><td valign="top"><a href="Customizing-the-Prompt.html#index-PS2-2"><code>PS2</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Customizing-the-Prompt.html">Customizing the Prompt</a></td></tr>
<tr><td></td><td valign="top"><a href="Customizing-the-Prompt.html#index-PS4"><code>PS4</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Customizing-the-Prompt.html">Customizing the Prompt</a></td></tr>
<tr><td></td><td valign="top"><a href="Customizing-the-Prompt.html#index-PS4-1"><code>PS4</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Customizing-the-Prompt.html">Customizing the Prompt</a></td></tr>
<tr><td></td><td valign="top"><a href="Customizing-the-Prompt.html#index-PS4-2"><code>PS4</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Customizing-the-Prompt.html">Customizing the Prompt</a></td></tr>
<tr><td></td><td valign="top"><a href="Special-Functions.html#index-psi"><code>psi</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Special-Functions.html">Special Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Special-Functions.html#index-psi-1"><code>psi</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Special-Functions.html">Special Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Publish-Octave-Script-Files.html#index-publish"><code>publish</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Publish-Octave-Script-Files.html">Publish Octave Script Files</a></td></tr>
<tr><td></td><td valign="top"><a href="Publish-Octave-Script-Files.html#index-publish-1"><code>publish</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Publish-Octave-Script-Files.html">Publish Octave Script Files</a></td></tr>
<tr><td></td><td valign="top"><a href="Publish-Octave-Script-Files.html#index-publish-2"><code>publish</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Publish-Octave-Script-Files.html">Publish Octave Script Files</a></td></tr>
<tr><td></td><td valign="top"><a href="Publish-Octave-Script-Files.html#index-publish-3"><code>publish</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Publish-Octave-Script-Files.html">Publish Octave Script Files</a></td></tr>
<tr><td></td><td valign="top"><a href="Publish-Octave-Script-Files.html#index-publish-4"><code>publish</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Publish-Octave-Script-Files.html">Publish Octave Script Files</a></td></tr>
<tr><td></td><td valign="top"><a href="Environment-Variables.html#index-putenv"><code>putenv</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Environment-Variables.html">Environment Variables</a></td></tr>
<tr><td></td><td valign="top"><a href="Simple-Output.html#index-puts"><code>puts</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Simple-Output.html">Simple Output</a></td></tr>
<tr><td></td><td valign="top"><a href="Simple-Output.html#index-puts-1"><code>puts</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Simple-Output.html">Simple Output</a></td></tr>
<tr><td></td><td valign="top"><a href="Current-Working-Directory.html#index-pwd"><code>pwd</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Current-Working-Directory.html">Current Working Directory</a></td></tr>
<tr><td></td><td valign="top"><a href="Current-Working-Directory.html#index-pwd-1"><code>pwd</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Current-Working-Directory.html">Current Working Directory</a></td></tr>
<tr><td></td><td valign="top"><a href="Controlling-Subprocesses.html#index-python"><code>python</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Controlling-Subprocesses.html">Controlling Subprocesses</a></td></tr>
<tr><td></td><td valign="top"><a href="Controlling-Subprocesses.html#index-python-1"><code>python</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Controlling-Subprocesses.html">Controlling Subprocesses</a></td></tr>
<tr><td></td><td valign="top"><a href="Controlling-Subprocesses.html#index-python-2"><code>python</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Controlling-Subprocesses.html">Controlling Subprocesses</a></td></tr>
<tr><td></td><td valign="top"><a href="Temporary-Files.html#index-P_005ftmpdir"><code>P_tmpdir</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Temporary-Files.html">Temporary Files</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th id="Function-Index_fn_letter-Q">Q</th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="Specialized-Solvers.html#index-qmr"><code>qmr</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Specialized-Solvers.html">Specialized Solvers</a></td></tr>
<tr><td></td><td valign="top"><a href="Specialized-Solvers.html#index-qmr-1"><code>qmr</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Specialized-Solvers.html">Specialized Solvers</a></td></tr>
<tr><td></td><td valign="top"><a href="Specialized-Solvers.html#index-qmr-2"><code>qmr</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Specialized-Solvers.html">Specialized Solvers</a></td></tr>
<tr><td></td><td valign="top"><a href="Quadratic-Programming.html#index-qp"><code>qp</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Quadratic-Programming.html">Quadratic Programming</a></td></tr>
<tr><td></td><td valign="top"><a href="Quadratic-Programming.html#index-qp-1"><code>qp</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Quadratic-Programming.html">Quadratic Programming</a></td></tr>
<tr><td></td><td valign="top"><a href="Quadratic-Programming.html#index-qp-2"><code>qp</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Quadratic-Programming.html">Quadratic Programming</a></td></tr>
<tr><td></td><td valign="top"><a href="Quadratic-Programming.html#index-qp-3"><code>qp</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Quadratic-Programming.html">Quadratic Programming</a></td></tr>
<tr><td></td><td valign="top"><a href="Quadratic-Programming.html#index-qp-4"><code>qp</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Quadratic-Programming.html">Quadratic Programming</a></td></tr>
<tr><td></td><td valign="top"><a href="Quadratic-Programming.html#index-qp-5"><code>qp</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Quadratic-Programming.html">Quadratic Programming</a></td></tr>
<tr><td></td><td valign="top"><a href="Matrix-Factorizations.html#index-qr"><code>qr</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Matrix-Factorizations.html">Matrix Factorizations</a></td></tr>
<tr><td></td><td valign="top"><a href="Matrix-Factorizations.html#index-qr-1"><code>qr</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Matrix-Factorizations.html">Matrix Factorizations</a></td></tr>
<tr><td></td><td valign="top"><a href="Matrix-Factorizations.html#index-qr-2"><code>qr</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Matrix-Factorizations.html">Matrix Factorizations</a></td></tr>
<tr><td></td><td valign="top"><a href="Matrix-Factorizations.html#index-qr-3"><code>qr</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Matrix-Factorizations.html">Matrix Factorizations</a></td></tr>
<tr><td></td><td valign="top"><a href="Matrix-Factorizations.html#index-qr-4"><code>qr</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Matrix-Factorizations.html">Matrix Factorizations</a></td></tr>
<tr><td></td><td valign="top"><a href="Matrix-Factorizations.html#index-qr-5"><code>qr</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Matrix-Factorizations.html">Matrix Factorizations</a></td></tr>
<tr><td></td><td valign="top"><a href="Matrix-Factorizations.html#index-qr-6"><code>qr</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Matrix-Factorizations.html">Matrix Factorizations</a></td></tr>
<tr><td></td><td valign="top"><a href="Matrix-Factorizations.html#index-qr-7"><code>qr</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Matrix-Factorizations.html">Matrix Factorizations</a></td></tr>
<tr><td></td><td valign="top"><a href="Matrix-Factorizations.html#index-qr-8"><code>qr</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Matrix-Factorizations.html">Matrix Factorizations</a></td></tr>
<tr><td></td><td valign="top"><a href="Matrix-Factorizations.html#index-qrdelete"><code>qrdelete</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Matrix-Factorizations.html">Matrix Factorizations</a></td></tr>
<tr><td></td><td valign="top"><a href="Matrix-Factorizations.html#index-qrinsert"><code>qrinsert</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Matrix-Factorizations.html">Matrix Factorizations</a></td></tr>
<tr><td></td><td valign="top"><a href="Matrix-Factorizations.html#index-qrshift"><code>qrshift</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Matrix-Factorizations.html">Matrix Factorizations</a></td></tr>
<tr><td></td><td valign="top"><a href="Matrix-Factorizations.html#index-qrupdate"><code>qrupdate</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Matrix-Factorizations.html">Matrix Factorizations</a></td></tr>
<tr><td></td><td valign="top"><a href="Functions-of-One-Variable.html#index-quad"><code>quad</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Functions-of-One-Variable.html">Functions of One Variable</a></td></tr>
<tr><td></td><td valign="top"><a href="Functions-of-One-Variable.html#index-quad-1"><code>quad</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Functions-of-One-Variable.html">Functions of One Variable</a></td></tr>
<tr><td></td><td valign="top"><a href="Functions-of-One-Variable.html#index-quad-2"><code>quad</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Functions-of-One-Variable.html">Functions of One Variable</a></td></tr>
<tr><td></td><td valign="top"><a href="Functions-of-One-Variable.html#index-quad-3"><code>quad</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Functions-of-One-Variable.html">Functions of One Variable</a></td></tr>
<tr><td></td><td valign="top"><a href="Functions-of-Multiple-Variables.html#index-quad2d"><code>quad2d</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Functions-of-Multiple-Variables.html">Functions of Multiple Variables</a></td></tr>
<tr><td></td><td valign="top"><a href="Functions-of-Multiple-Variables.html#index-quad2d-1"><code>quad2d</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Functions-of-Multiple-Variables.html">Functions of Multiple Variables</a></td></tr>
<tr><td></td><td valign="top"><a href="Functions-of-Multiple-Variables.html#index-quad2d-2"><code>quad2d</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Functions-of-Multiple-Variables.html">Functions of Multiple Variables</a></td></tr>
<tr><td></td><td valign="top"><a href="Functions-of-One-Variable.html#index-quadcc"><code>quadcc</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Functions-of-One-Variable.html">Functions of One Variable</a></td></tr>
<tr><td></td><td valign="top"><a href="Functions-of-One-Variable.html#index-quadcc-1"><code>quadcc</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Functions-of-One-Variable.html">Functions of One Variable</a></td></tr>
<tr><td></td><td valign="top"><a href="Functions-of-One-Variable.html#index-quadcc-2"><code>quadcc</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Functions-of-One-Variable.html">Functions of One Variable</a></td></tr>
<tr><td></td><td valign="top"><a href="Functions-of-One-Variable.html#index-quadcc-3"><code>quadcc</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Functions-of-One-Variable.html">Functions of One Variable</a></td></tr>
<tr><td></td><td valign="top"><a href="Functions-of-One-Variable.html#index-quadgk"><code>quadgk</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Functions-of-One-Variable.html">Functions of One Variable</a></td></tr>
<tr><td></td><td valign="top"><a href="Functions-of-One-Variable.html#index-quadgk-1"><code>quadgk</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Functions-of-One-Variable.html">Functions of One Variable</a></td></tr>
<tr><td></td><td valign="top"><a href="Functions-of-One-Variable.html#index-quadgk-2"><code>quadgk</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Functions-of-One-Variable.html">Functions of One Variable</a></td></tr>
<tr><td></td><td valign="top"><a href="Functions-of-One-Variable.html#index-quadgk-3"><code>quadgk</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Functions-of-One-Variable.html">Functions of One Variable</a></td></tr>
<tr><td></td><td valign="top"><a href="Functions-of-One-Variable.html#index-quadgk-4"><code>quadgk</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Functions-of-One-Variable.html">Functions of One Variable</a></td></tr>
<tr><td></td><td valign="top"><a href="Functions-of-One-Variable.html#index-quadl"><code>quadl</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Functions-of-One-Variable.html">Functions of One Variable</a></td></tr>
<tr><td></td><td valign="top"><a href="Functions-of-One-Variable.html#index-quadl-1"><code>quadl</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Functions-of-One-Variable.html">Functions of One Variable</a></td></tr>
<tr><td></td><td valign="top"><a href="Functions-of-One-Variable.html#index-quadl-2"><code>quadl</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Functions-of-One-Variable.html">Functions of One Variable</a></td></tr>
<tr><td></td><td valign="top"><a href="Functions-of-One-Variable.html#index-quadl-3"><code>quadl</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Functions-of-One-Variable.html">Functions of One Variable</a></td></tr>
<tr><td></td><td valign="top"><a href="Functions-of-One-Variable.html#index-quadl-4"><code>quadl</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Functions-of-One-Variable.html">Functions of One Variable</a></td></tr>
<tr><td></td><td valign="top"><a href="Functions-of-One-Variable.html#index-quadv"><code>quadv</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Functions-of-One-Variable.html">Functions of One Variable</a></td></tr>
<tr><td></td><td valign="top"><a href="Functions-of-One-Variable.html#index-quadv-1"><code>quadv</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Functions-of-One-Variable.html">Functions of One Variable</a></td></tr>
<tr><td></td><td valign="top"><a href="Functions-of-One-Variable.html#index-quadv-2"><code>quadv</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Functions-of-One-Variable.html">Functions of One Variable</a></td></tr>
<tr><td></td><td valign="top"><a href="Functions-of-One-Variable.html#index-quadv-3"><code>quadv</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Functions-of-One-Variable.html">Functions of One Variable</a></td></tr>
<tr><td></td><td valign="top"><a href="Functions-of-One-Variable.html#index-quadv-4"><code>quadv</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Functions-of-One-Variable.html">Functions of One Variable</a></td></tr>
<tr><td></td><td valign="top"><a href="Functions-of-One-Variable.html#index-quad_005foptions"><code>quad_options</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Functions-of-One-Variable.html">Functions of One Variable</a></td></tr>
<tr><td></td><td valign="top"><a href="Functions-of-One-Variable.html#index-quad_005foptions-1"><code>quad_options</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Functions-of-One-Variable.html">Functions of One Variable</a></td></tr>
<tr><td></td><td valign="top"><a href="Functions-of-One-Variable.html#index-quad_005foptions-2"><code>quad_options</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Functions-of-One-Variable.html">Functions of One Variable</a></td></tr>
<tr><td></td><td valign="top"><a href="Descriptive-Statistics.html#index-quantile"><code>quantile</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Descriptive-Statistics.html">Descriptive Statistics</a></td></tr>
<tr><td></td><td valign="top"><a href="Descriptive-Statistics.html#index-quantile-1"><code>quantile</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Descriptive-Statistics.html">Descriptive Statistics</a></td></tr>
<tr><td></td><td valign="top"><a href="Descriptive-Statistics.html#index-quantile-2"><code>quantile</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Descriptive-Statistics.html">Descriptive Statistics</a></td></tr>
<tr><td></td><td valign="top"><a href="Descriptive-Statistics.html#index-quantile-3"><code>quantile</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Descriptive-Statistics.html">Descriptive Statistics</a></td></tr>
<tr><td></td><td valign="top"><a href="I_002fO-Dialogs.html#index-questdlg"><code>questdlg</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="I_002fO-Dialogs.html">I/O Dialogs</a></td></tr>
<tr><td></td><td valign="top"><a href="I_002fO-Dialogs.html#index-questdlg-1"><code>questdlg</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="I_002fO-Dialogs.html">I/O Dialogs</a></td></tr>
<tr><td></td><td valign="top"><a href="I_002fO-Dialogs.html#index-questdlg-2"><code>questdlg</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="I_002fO-Dialogs.html">I/O Dialogs</a></td></tr>
<tr><td></td><td valign="top"><a href="I_002fO-Dialogs.html#index-questdlg-3"><code>questdlg</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="I_002fO-Dialogs.html">I/O Dialogs</a></td></tr>
<tr><td></td><td valign="top"><a href="I_002fO-Dialogs.html#index-questdlg-4"><code>questdlg</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="I_002fO-Dialogs.html">I/O Dialogs</a></td></tr>
<tr><td></td><td valign="top"><a href="Quitting-Octave.html#index-quit"><code>quit</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Quitting-Octave.html">Quitting Octave</a></td></tr>
<tr><td></td><td valign="top"><a href="Quitting-Octave.html#index-quit-1"><code>quit</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Quitting-Octave.html">Quitting Octave</a></td></tr>
<tr><td></td><td valign="top"><a href="Quitting-Octave.html#index-quit-2"><code>quit</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Quitting-Octave.html">Quitting Octave</a></td></tr>
<tr><td></td><td valign="top"><a href="Quitting-Octave.html#index-quit-3"><code>quit</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Quitting-Octave.html">Quitting Octave</a></td></tr>
<tr><td></td><td valign="top"><a href="Quitting-Octave.html#index-quit-4"><code>quit</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Quitting-Octave.html">Quitting Octave</a></td></tr>
<tr><td></td><td valign="top"><a href="Quitting-Octave.html#index-quit-5"><code>quit</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Quitting-Octave.html">Quitting Octave</a></td></tr>
<tr><td></td><td valign="top"><a href="Quitting-Octave.html#index-quit-6"><code>quit</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Quitting-Octave.html">Quitting Octave</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-quiver"><code>quiver</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-quiver-1"><code>quiver</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-quiver-2"><code>quiver</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-quiver-3"><code>quiver</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-quiver-4"><code>quiver</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-quiver-5"><code>quiver</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-quiver-6"><code>quiver</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-quiver3"><code>quiver3</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-quiver3-1"><code>quiver3</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-quiver3-2"><code>quiver3</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-quiver3-3"><code>quiver3</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-quiver3-4"><code>quiver3</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-quiver3-5"><code>quiver3</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-quiver3-6"><code>quiver3</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Matrix-Factorizations.html#index-qz"><code>qz</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Matrix-Factorizations.html">Matrix Factorizations</a></td></tr>
<tr><td></td><td valign="top"><a href="Matrix-Factorizations.html#index-qz-1"><code>qz</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Matrix-Factorizations.html">Matrix Factorizations</a></td></tr>
<tr><td></td><td valign="top"><a href="Matrix-Factorizations.html#index-qz-2"><code>qz</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Matrix-Factorizations.html">Matrix Factorizations</a></td></tr>
<tr><td></td><td valign="top"><a href="Matrix-Factorizations.html#index-qz-3"><code>qz</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Matrix-Factorizations.html">Matrix Factorizations</a></td></tr>
<tr><td></td><td valign="top"><a href="Matrix-Factorizations.html#index-qzhess"><code>qzhess</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Matrix-Factorizations.html">Matrix Factorizations</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th id="Function-Index_fn_letter-R">R</th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="Trigonometry.html#index-rad2deg"><code>rad2deg</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Trigonometry.html">Trigonometry</a></td></tr>
<tr><td></td><td valign="top"><a href="Representing-Images.html#index-rainbow"><code>rainbow</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Representing-Images.html">Representing Images</a></td></tr>
<tr><td></td><td valign="top"><a href="Representing-Images.html#index-rainbow-1"><code>rainbow</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Representing-Images.html">Representing Images</a></td></tr>
<tr><td></td><td valign="top"><a href="Special-Utility-Matrices.html#index-rand"><code>rand</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Special-Utility-Matrices.html">Special Utility Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Special-Utility-Matrices.html#index-rand-1"><code>rand</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Special-Utility-Matrices.html">Special Utility Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Special-Utility-Matrices.html#index-rand-2"><code>rand</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Special-Utility-Matrices.html">Special Utility Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Special-Utility-Matrices.html#index-rand-3"><code>rand</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Special-Utility-Matrices.html">Special Utility Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Special-Utility-Matrices.html#index-rand-4"><code>rand</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Special-Utility-Matrices.html">Special Utility Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Special-Utility-Matrices.html#index-rand-5"><code>rand</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Special-Utility-Matrices.html">Special Utility Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Special-Utility-Matrices.html#index-rand-6"><code>rand</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Special-Utility-Matrices.html">Special Utility Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Special-Utility-Matrices.html#index-rand-7"><code>rand</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Special-Utility-Matrices.html">Special Utility Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Special-Utility-Matrices.html#index-rand-8"><code>rand</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Special-Utility-Matrices.html">Special Utility Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Special-Utility-Matrices.html#index-rand-9"><code>rand</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Special-Utility-Matrices.html">Special Utility Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Special-Utility-Matrices.html#index-rand-10"><code>rand</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Special-Utility-Matrices.html">Special Utility Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Special-Utility-Matrices.html#index-rande"><code>rande</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Special-Utility-Matrices.html">Special Utility Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Special-Utility-Matrices.html#index-rande-1"><code>rande</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Special-Utility-Matrices.html">Special Utility Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Special-Utility-Matrices.html#index-rande-2"><code>rande</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Special-Utility-Matrices.html">Special Utility Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Special-Utility-Matrices.html#index-rande-3"><code>rande</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Special-Utility-Matrices.html">Special Utility Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Special-Utility-Matrices.html#index-rande-4"><code>rande</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Special-Utility-Matrices.html">Special Utility Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Special-Utility-Matrices.html#index-rande-5"><code>rande</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Special-Utility-Matrices.html">Special Utility Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Special-Utility-Matrices.html#index-rande-6"><code>rande</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Special-Utility-Matrices.html">Special Utility Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Special-Utility-Matrices.html#index-rande-7"><code>rande</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Special-Utility-Matrices.html">Special Utility Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Special-Utility-Matrices.html#index-rande-8"><code>rande</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Special-Utility-Matrices.html">Special Utility Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Special-Utility-Matrices.html#index-rande-9"><code>rande</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Special-Utility-Matrices.html">Special Utility Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Special-Utility-Matrices.html#index-rande-10"><code>rande</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Special-Utility-Matrices.html">Special Utility Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Special-Utility-Matrices.html#index-randg"><code>randg</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Special-Utility-Matrices.html">Special Utility Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Special-Utility-Matrices.html#index-randg-1"><code>randg</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Special-Utility-Matrices.html">Special Utility Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Special-Utility-Matrices.html#index-randg-2"><code>randg</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Special-Utility-Matrices.html">Special Utility Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Special-Utility-Matrices.html#index-randg-3"><code>randg</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Special-Utility-Matrices.html">Special Utility Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Special-Utility-Matrices.html#index-randg-4"><code>randg</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Special-Utility-Matrices.html">Special Utility Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Special-Utility-Matrices.html#index-randg-5"><code>randg</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Special-Utility-Matrices.html">Special Utility Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Special-Utility-Matrices.html#index-randg-6"><code>randg</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Special-Utility-Matrices.html">Special Utility Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Special-Utility-Matrices.html#index-randg-7"><code>randg</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Special-Utility-Matrices.html">Special Utility Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Special-Utility-Matrices.html#index-randg-8"><code>randg</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Special-Utility-Matrices.html">Special Utility Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Special-Utility-Matrices.html#index-randg-9"><code>randg</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Special-Utility-Matrices.html">Special Utility Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Special-Utility-Matrices.html#index-randg-10"><code>randg</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Special-Utility-Matrices.html">Special Utility Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Special-Utility-Matrices.html#index-randi"><code>randi</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Special-Utility-Matrices.html">Special Utility Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Special-Utility-Matrices.html#index-randi-1"><code>randi</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Special-Utility-Matrices.html">Special Utility Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Special-Utility-Matrices.html#index-randi-2"><code>randi</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Special-Utility-Matrices.html">Special Utility Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Special-Utility-Matrices.html#index-randi-3"><code>randi</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Special-Utility-Matrices.html">Special Utility Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Special-Utility-Matrices.html#index-randi-4"><code>randi</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Special-Utility-Matrices.html">Special Utility Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Special-Utility-Matrices.html#index-randn"><code>randn</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Special-Utility-Matrices.html">Special Utility Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Special-Utility-Matrices.html#index-randn-1"><code>randn</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Special-Utility-Matrices.html">Special Utility Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Special-Utility-Matrices.html#index-randn-2"><code>randn</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Special-Utility-Matrices.html">Special Utility Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Special-Utility-Matrices.html#index-randn-3"><code>randn</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Special-Utility-Matrices.html">Special Utility Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Special-Utility-Matrices.html#index-randn-4"><code>randn</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Special-Utility-Matrices.html">Special Utility Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Special-Utility-Matrices.html#index-randn-5"><code>randn</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Special-Utility-Matrices.html">Special Utility Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Special-Utility-Matrices.html#index-randn-6"><code>randn</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Special-Utility-Matrices.html">Special Utility Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Special-Utility-Matrices.html#index-randn-7"><code>randn</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Special-Utility-Matrices.html">Special Utility Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Special-Utility-Matrices.html#index-randn-8"><code>randn</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Special-Utility-Matrices.html">Special Utility Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Special-Utility-Matrices.html#index-randn-9"><code>randn</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Special-Utility-Matrices.html">Special Utility Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Special-Utility-Matrices.html#index-randn-10"><code>randn</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Special-Utility-Matrices.html">Special Utility Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Special-Utility-Matrices.html#index-randp"><code>randp</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Special-Utility-Matrices.html">Special Utility Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Special-Utility-Matrices.html#index-randp-1"><code>randp</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Special-Utility-Matrices.html">Special Utility Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Special-Utility-Matrices.html#index-randp-2"><code>randp</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Special-Utility-Matrices.html">Special Utility Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Special-Utility-Matrices.html#index-randp-3"><code>randp</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Special-Utility-Matrices.html">Special Utility Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Special-Utility-Matrices.html#index-randp-4"><code>randp</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Special-Utility-Matrices.html">Special Utility Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Special-Utility-Matrices.html#index-randp-5"><code>randp</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Special-Utility-Matrices.html">Special Utility Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Special-Utility-Matrices.html#index-randp-6"><code>randp</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Special-Utility-Matrices.html">Special Utility Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Special-Utility-Matrices.html#index-randp-7"><code>randp</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Special-Utility-Matrices.html">Special Utility Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Special-Utility-Matrices.html#index-randp-8"><code>randp</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Special-Utility-Matrices.html">Special Utility Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Special-Utility-Matrices.html#index-randp-9"><code>randp</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Special-Utility-Matrices.html">Special Utility Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Special-Utility-Matrices.html#index-randp-10"><code>randp</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Special-Utility-Matrices.html">Special Utility Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Special-Utility-Matrices.html#index-randperm"><code>randperm</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Special-Utility-Matrices.html">Special Utility Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Special-Utility-Matrices.html#index-randperm-1"><code>randperm</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Special-Utility-Matrices.html">Special Utility Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Descriptive-Statistics.html#index-range"><code>range</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Descriptive-Statistics.html">Descriptive Statistics</a></td></tr>
<tr><td></td><td valign="top"><a href="Descriptive-Statistics.html#index-range-1"><code>range</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Descriptive-Statistics.html">Descriptive Statistics</a></td></tr>
<tr><td></td><td valign="top"><a href="Basic-Matrix-Functions.html#index-rank"><code>rank</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Basic-Matrix-Functions.html">Basic Matrix Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Basic-Matrix-Functions.html#index-rank-1"><code>rank</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Basic-Matrix-Functions.html">Basic Matrix Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Basic-Statistical-Functions.html#index-ranks"><code>ranks</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Basic-Statistical-Functions.html">Basic Statistical Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Basic-Statistical-Functions.html#index-ranks-1"><code>ranks</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Basic-Statistical-Functions.html">Basic Statistical Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Basic-Statistical-Functions.html#index-ranks-2"><code>ranks</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Basic-Statistical-Functions.html">Basic Statistical Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Rational-Approximations.html#index-rat"><code>rat</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Rational-Approximations.html">Rational Approximations</a></td></tr>
<tr><td></td><td valign="top"><a href="Rational-Approximations.html#index-rat-1"><code>rat</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Rational-Approximations.html">Rational Approximations</a></td></tr>
<tr><td></td><td valign="top"><a href="Rational-Approximations.html#index-rat-2"><code>rat</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Rational-Approximations.html">Rational Approximations</a></td></tr>
<tr><td></td><td valign="top"><a href="Rational-Approximations.html#index-rats"><code>rats</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Rational-Approximations.html">Rational Approximations</a></td></tr>
<tr><td></td><td valign="top"><a href="Rational-Approximations.html#index-rats-1"><code>rats</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Rational-Approximations.html">Rational Approximations</a></td></tr>
<tr><td></td><td valign="top"><a href="Basic-Matrix-Functions.html#index-rcond"><code>rcond</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Basic-Matrix-Functions.html">Basic Matrix Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Arithmetic-Ops.html#index-rdivide"><code>rdivide</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Arithmetic-Ops.html">Arithmetic Ops</a></td></tr>
<tr><td></td><td valign="top"><a href="Filesystem-Utilities.html#index-readdir"><code>readdir</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Filesystem-Utilities.html">Filesystem Utilities</a></td></tr>
<tr><td></td><td valign="top"><a href="Filesystem-Utilities.html#index-readdir-1"><code>readdir</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Filesystem-Utilities.html">Filesystem Utilities</a></td></tr>
<tr><td></td><td valign="top"><a href="Customizing-readline.html#index-readline_005fread_005finit_005ffile"><code>readline_read_init_file</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Customizing-readline.html">Customizing readline</a></td></tr>
<tr><td></td><td valign="top"><a href="Customizing-readline.html#index-readline_005fre_005fread_005finit_005ffile"><code>readline_re_read_init_file</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Customizing-readline.html">Customizing readline</a></td></tr>
<tr><td></td><td valign="top"><a href="Filesystem-Utilities.html#index-readlink"><code>readlink</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Filesystem-Utilities.html">Filesystem Utilities</a></td></tr>
<tr><td></td><td valign="top"><a href="Filesystem-Utilities.html#index-readlink-1"><code>readlink</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Filesystem-Utilities.html">Filesystem Utilities</a></td></tr>
<tr><td></td><td valign="top"><a href="Complex-Arithmetic.html#index-real"><code>real</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Complex-Arithmetic.html">Complex Arithmetic</a></td></tr>
<tr><td></td><td valign="top"><a href="Exponents-and-Logarithms.html#index-reallog"><code>reallog</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Exponents-and-Logarithms.html">Exponents and Logarithms</a></td></tr>
<tr><td></td><td valign="top"><a href="Mathematical-Constants.html#index-realmax"><code>realmax</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Mathematical-Constants.html">Mathematical Constants</a></td></tr>
<tr><td></td><td valign="top"><a href="Mathematical-Constants.html#index-realmax-1"><code>realmax</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Mathematical-Constants.html">Mathematical Constants</a></td></tr>
<tr><td></td><td valign="top"><a href="Mathematical-Constants.html#index-realmax-2"><code>realmax</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Mathematical-Constants.html">Mathematical Constants</a></td></tr>
<tr><td></td><td valign="top"><a href="Mathematical-Constants.html#index-realmax-3"><code>realmax</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Mathematical-Constants.html">Mathematical Constants</a></td></tr>
<tr><td></td><td valign="top"><a href="Mathematical-Constants.html#index-realmax-4"><code>realmax</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Mathematical-Constants.html">Mathematical Constants</a></td></tr>
<tr><td></td><td valign="top"><a href="Mathematical-Constants.html#index-realmin"><code>realmin</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Mathematical-Constants.html">Mathematical Constants</a></td></tr>
<tr><td></td><td valign="top"><a href="Mathematical-Constants.html#index-realmin-1"><code>realmin</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Mathematical-Constants.html">Mathematical Constants</a></td></tr>
<tr><td></td><td valign="top"><a href="Mathematical-Constants.html#index-realmin-2"><code>realmin</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Mathematical-Constants.html">Mathematical Constants</a></td></tr>
<tr><td></td><td valign="top"><a href="Mathematical-Constants.html#index-realmin-3"><code>realmin</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Mathematical-Constants.html">Mathematical Constants</a></td></tr>
<tr><td></td><td valign="top"><a href="Mathematical-Constants.html#index-realmin-4"><code>realmin</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Mathematical-Constants.html">Mathematical Constants</a></td></tr>
<tr><td></td><td valign="top"><a href="Exponents-and-Logarithms.html#index-realpow"><code>realpow</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Exponents-and-Logarithms.html">Exponents and Logarithms</a></td></tr>
<tr><td></td><td valign="top"><a href="Exponents-and-Logarithms.html#index-realsqrt"><code>realsqrt</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Exponents-and-Logarithms.html">Exponents and Logarithms</a></td></tr>
<tr><td></td><td valign="top"><a href="Recording.html#index-record"><code>record</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Recording.html">Recording</a></td></tr>
<tr><td></td><td valign="top"><a href="Recording.html#index-record-1"><code>record</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Recording.html">Recording</a></td></tr>
<tr><td></td><td valign="top"><a href="Audio-Data-Processing.html#index-record-2"><code>record</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Audio-Data-Processing.html">Audio Data Processing</a></td></tr>
<tr><td></td><td valign="top"><a href="Audio-Data-Processing.html#index-record-3"><code>record</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Audio-Data-Processing.html">Audio Data Processing</a></td></tr>
<tr><td></td><td valign="top"><a href="Recording.html#index-recordblocking"><code>recordblocking</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Recording.html">Recording</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002ddimensional-Geometric-Shapes.html#index-rectangle"><code>rectangle</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002ddimensional-Geometric-Shapes.html">Two-dimensional Geometric Shapes</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002ddimensional-Geometric-Shapes.html#index-rectangle-1"><code>rectangle</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002ddimensional-Geometric-Shapes.html">Two-dimensional Geometric Shapes</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002ddimensional-Geometric-Shapes.html#index-rectangle-2"><code>rectangle</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002ddimensional-Geometric-Shapes.html">Two-dimensional Geometric Shapes</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002ddimensional-Geometric-Shapes.html#index-rectangle-3"><code>rectangle</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002ddimensional-Geometric-Shapes.html">Two-dimensional Geometric Shapes</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002ddimensional-Geometric-Shapes.html#index-rectangle-4"><code>rectangle</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002ddimensional-Geometric-Shapes.html">Two-dimensional Geometric Shapes</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002ddimensional-Geometric-Shapes.html#index-rectangle-5"><code>rectangle</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002ddimensional-Geometric-Shapes.html">Two-dimensional Geometric Shapes</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002ddimensional-Geometric-Shapes.html#index-rectangle-6"><code>rectangle</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002ddimensional-Geometric-Shapes.html">Two-dimensional Geometric Shapes</a></td></tr>
<tr><td></td><td valign="top"><a href="Voronoi-Diagrams.html#index-rectint"><code>rectint</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Voronoi-Diagrams.html">Voronoi Diagrams</a></td></tr>
<tr><td></td><td valign="top"><a href="Filesystem-Utilities.html#index-recycle"><code>recycle</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Filesystem-Utilities.html">Filesystem Utilities</a></td></tr>
<tr><td></td><td valign="top"><a href="Filesystem-Utilities.html#index-recycle-1"><code>recycle</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Filesystem-Utilities.html">Filesystem Utilities</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-reducepatch"><code>reducepatch</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-reducepatch-1"><code>reducepatch</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-reducepatch-2"><code>reducepatch</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-reducepatch-3"><code>reducepatch</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-reducepatch-4"><code>reducepatch</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-reducepatch-5"><code>reducepatch</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-reducepatch-6"><code>reducepatch</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-reducepatch-7"><code>reducepatch</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-reducevolume"><code>reducevolume</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-reducevolume-1"><code>reducevolume</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-reducevolume-2"><code>reducevolume</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Manipulation-of-Plot-Windows.html#index-refresh"><code>refresh</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Manipulation-of-Plot-Windows.html">Manipulation of Plot Windows</a></td></tr>
<tr><td></td><td valign="top"><a href="Manipulation-of-Plot-Windows.html#index-refresh-1"><code>refresh</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Manipulation-of-Plot-Windows.html">Manipulation of Plot Windows</a></td></tr>
<tr><td></td><td valign="top"><a href="Data-Sources-in-Object-Groups.html#index-refreshdata"><code>refreshdata</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Data-Sources-in-Object-Groups.html">Data Sources in Object Groups</a></td></tr>
<tr><td></td><td valign="top"><a href="Data-Sources-in-Object-Groups.html#index-refreshdata-1"><code>refreshdata</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Data-Sources-in-Object-Groups.html">Data Sources in Object Groups</a></td></tr>
<tr><td></td><td valign="top"><a href="Data-Sources-in-Object-Groups.html#index-refreshdata-2"><code>refreshdata</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Data-Sources-in-Object-Groups.html">Data Sources in Object Groups</a></td></tr>
<tr><td></td><td valign="top"><a href="Searching-and-Replacing-in-Strings.html#index-regexp"><code>regexp</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Searching-and-Replacing-in-Strings.html">Searching and Replacing in Strings</a></td></tr>
<tr><td></td><td valign="top"><a href="Searching-and-Replacing-in-Strings.html#index-regexp-1"><code>regexp</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Searching-and-Replacing-in-Strings.html">Searching and Replacing in Strings</a></td></tr>
<tr><td></td><td valign="top"><a href="Searching-and-Replacing-in-Strings.html#index-regexpi"><code>regexpi</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Searching-and-Replacing-in-Strings.html">Searching and Replacing in Strings</a></td></tr>
<tr><td></td><td valign="top"><a href="Searching-and-Replacing-in-Strings.html#index-regexpi-1"><code>regexpi</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Searching-and-Replacing-in-Strings.html">Searching and Replacing in Strings</a></td></tr>
<tr><td></td><td valign="top"><a href="Searching-and-Replacing-in-Strings.html#index-regexprep"><code>regexprep</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Searching-and-Replacing-in-Strings.html">Searching and Replacing in Strings</a></td></tr>
<tr><td></td><td valign="top"><a href="Searching-and-Replacing-in-Strings.html#index-regexprep-1"><code>regexprep</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Searching-and-Replacing-in-Strings.html">Searching and Replacing in Strings</a></td></tr>
<tr><td></td><td valign="top"><a href="Searching-and-Replacing-in-Strings.html#index-regexptranslate"><code>regexptranslate</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Searching-and-Replacing-in-Strings.html">Searching and Replacing in Strings</a></td></tr>
<tr><td></td><td valign="top"><a href="Graphics-Toolkits.html#index-register_005fgraphics_005ftoolkit"><code>register_graphics_toolkit</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Graphics-Toolkits.html">Graphics Toolkits</a></td></tr>
<tr><td></td><td valign="top"><a href="Manipulating-the-Load-Path.html#index-rehash"><code>rehash</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Manipulating-the-Load-Path.html">Manipulating the Load Path</a></td></tr>
<tr><td></td><td valign="top"><a href="Utility-Functions.html#index-rem"><code>rem</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Utility-Functions.html">Utility Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Parser.html#index-remove_005finput_005fevent_005fhook"><code>remove_input_event_hook</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Parser.html">Parser</a></td></tr>
<tr><td></td><td valign="top"><a href="Parser.html#index-remove_005finput_005fevent_005fhook-1"><code>remove_input_event_hook</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Parser.html">Parser</a></td></tr>
<tr><td></td><td valign="top"><a href="Filesystem-Utilities.html#index-rename"><code>rename</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Filesystem-Utilities.html">Filesystem Utilities</a></td></tr>
<tr><td></td><td valign="top"><a href="Filesystem-Utilities.html#index-rename-1"><code>rename</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Filesystem-Utilities.html">Filesystem Utilities</a></td></tr>
<tr><td></td><td valign="top"><a href="FTP-Objects.html#index-rename-2"><code>rename</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="FTP-Objects.html">FTP Objects</a></td></tr>
<tr><td></td><td valign="top"><a href="Special-Utility-Matrices.html#index-repelem"><code>repelem</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Special-Utility-Matrices.html">Special Utility Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Special-Utility-Matrices.html#index-repelem-1"><code>repelem</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Special-Utility-Matrices.html">Special Utility Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Special-Utility-Matrices.html#index-repelems"><code>repelems</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Special-Utility-Matrices.html">Special Utility Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Special-Utility-Matrices.html#index-repmat"><code>repmat</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Special-Utility-Matrices.html">Special Utility Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Special-Utility-Matrices.html#index-repmat-1"><code>repmat</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Special-Utility-Matrices.html">Special Utility Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Special-Utility-Matrices.html#index-repmat-2"><code>repmat</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Special-Utility-Matrices.html">Special Utility Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Special-Utility-Matrices.html#index-repmat-3"><code>repmat</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Special-Utility-Matrices.html">Special Utility Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Special-Utility-Matrices.html#index-repmat-4"><code>repmat</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Special-Utility-Matrices.html">Special Utility Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Simple-File-I_002fO.html#index-rescale"><code>rescale</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Simple-File-I_002fO.html">Simple File I/O</a></td></tr>
<tr><td></td><td valign="top"><a href="Simple-File-I_002fO.html#index-rescale-1"><code>rescale</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Simple-File-I_002fO.html">Simple File I/O</a></td></tr>
<tr><td></td><td valign="top"><a href="Simple-File-I_002fO.html#index-rescale-2"><code>rescale</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Simple-File-I_002fO.html">Simple File I/O</a></td></tr>
<tr><td></td><td valign="top"><a href="Simple-File-I_002fO.html#index-rescale-3"><code>rescale</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Simple-File-I_002fO.html">Simple File I/O</a></td></tr>
<tr><td></td><td valign="top"><a href="Managing-Default-Properties.html#index-reset"><code>reset</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Managing-Default-Properties.html">Managing Default Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Rearranging-Matrices.html#index-reshape"><code>reshape</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Rearranging-Matrices.html">Rearranging Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Rearranging-Matrices.html#index-reshape-1"><code>reshape</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Rearranging-Matrices.html">Rearranging Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Rearranging-Matrices.html#index-reshape-2"><code>reshape</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Rearranging-Matrices.html">Rearranging Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Rearranging-Matrices.html#index-reshape-3"><code>reshape</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Rearranging-Matrices.html">Rearranging Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Products-of-Polynomials.html#index-residue"><code>residue</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Products-of-Polynomials.html">Products of Polynomials</a></td></tr>
<tr><td></td><td valign="top"><a href="Products-of-Polynomials.html#index-residue-1"><code>residue</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Products-of-Polynomials.html">Products of Polynomials</a></td></tr>
<tr><td></td><td valign="top"><a href="Products-of-Polynomials.html#index-residue-2"><code>residue</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Products-of-Polynomials.html">Products of Polynomials</a></td></tr>
<tr><td></td><td valign="top"><a href="Rearranging-Matrices.html#index-resize"><code>resize</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Rearranging-Matrices.html">Rearranging Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Rearranging-Matrices.html#index-resize-1"><code>resize</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Rearranging-Matrices.html">Rearranging Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Rearranging-Matrices.html#index-resize-2"><code>resize</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Rearranging-Matrices.html">Rearranging Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Matrices-and-Arrays-in-Oct_002dFiles.html#index-resize-3"><code>resize</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Matrices-and-Arrays-in-Oct_002dFiles.html">Matrices and Arrays in Oct-Files</a></td></tr>
<tr><td></td><td valign="top"><a href="Matrices-and-Arrays-in-Oct_002dFiles.html#index-resize-4"><code>resize</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Matrices-and-Arrays-in-Oct_002dFiles.html">Matrices and Arrays in Oct-Files</a></td></tr>
<tr><td></td><td valign="top"><a href="Manipulating-the-Load-Path.html#index-restoredefaultpath"><code>restoredefaultpath</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Manipulating-the-Load-Path.html">Manipulating the Load Path</a></td></tr>
<tr><td></td><td valign="top"><a href="Playback.html#index-resume"><code>resume</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Playback.html">Playback</a></td></tr>
<tr><td></td><td valign="top"><a href="Recording.html#index-resume-1"><code>resume</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Recording.html">Recording</a></td></tr>
<tr><td></td><td valign="top"><a href="Catching-Errors.html#index-rethrow"><code>rethrow</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Catching-Errors.html">Catching Errors</a></td></tr>
<tr><td></td><td valign="top"><a href="Returning-from-a-Function.html#index-return"><code>return</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Returning-from-a-Function.html">Returning from a Function</a></td></tr>
<tr><td></td><td valign="top"><a href="Color-Conversion.html#index-rgb2gray"><code>rgb2gray</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Color-Conversion.html">Color Conversion</a></td></tr>
<tr><td></td><td valign="top"><a href="Color-Conversion.html#index-rgb2gray-1"><code>rgb2gray</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Color-Conversion.html">Color Conversion</a></td></tr>
<tr><td></td><td valign="top"><a href="Color-Conversion.html#index-rgb2hsv"><code>rgb2hsv</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Color-Conversion.html">Color Conversion</a></td></tr>
<tr><td></td><td valign="top"><a href="Color-Conversion.html#index-rgb2hsv-1"><code>rgb2hsv</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Color-Conversion.html">Color Conversion</a></td></tr>
<tr><td></td><td valign="top"><a href="Representing-Images.html#index-rgb2ind"><code>rgb2ind</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Representing-Images.html">Representing Images</a></td></tr>
<tr><td></td><td valign="top"><a href="Representing-Images.html#index-rgb2ind-1"><code>rgb2ind</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Representing-Images.html">Representing Images</a></td></tr>
<tr><td></td><td valign="top"><a href="Representing-Images.html#index-rgbplot"><code>rgbplot</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Representing-Images.html">Representing Images</a></td></tr>
<tr><td></td><td valign="top"><a href="Representing-Images.html#index-rgbplot-1"><code>rgbplot</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Representing-Images.html">Representing Images</a></td></tr>
<tr><td></td><td valign="top"><a href="Representing-Images.html#index-rgbplot-2"><code>rgbplot</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Representing-Images.html">Representing Images</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-ribbon"><code>ribbon</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-ribbon-1"><code>ribbon</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-ribbon-2"><code>ribbon</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-ribbon-3"><code>ribbon</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-ribbon-4"><code>ribbon</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Searching-in-Strings.html#index-rindex"><code>rindex</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Searching-in-Strings.html">Searching in Strings</a></td></tr>
<tr><td></td><td valign="top"><a href="Application_002ddefined-Data.html#index-rmappdata"><code>rmappdata</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Application_002ddefined-Data.html">Application-defined Data</a></td></tr>
<tr><td></td><td valign="top"><a href="Application_002ddefined-Data.html#index-rmappdata-1"><code>rmappdata</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Application_002ddefined-Data.html">Application-defined Data</a></td></tr>
<tr><td></td><td valign="top"><a href="Filesystem-Utilities.html#index-rmdir"><code>rmdir</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Filesystem-Utilities.html">Filesystem Utilities</a></td></tr>
<tr><td></td><td valign="top"><a href="Filesystem-Utilities.html#index-rmdir-1"><code>rmdir</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Filesystem-Utilities.html">Filesystem Utilities</a></td></tr>
<tr><td></td><td valign="top"><a href="Filesystem-Utilities.html#index-rmdir-2"><code>rmdir</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Filesystem-Utilities.html">Filesystem Utilities</a></td></tr>
<tr><td></td><td valign="top"><a href="FTP-Objects.html#index-rmdir-3"><code>rmdir</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="FTP-Objects.html">FTP Objects</a></td></tr>
<tr><td></td><td valign="top"><a href="Manipulating-Structures.html#index-rmfield"><code>rmfield</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Manipulating-Structures.html">Manipulating Structures</a></td></tr>
<tr><td></td><td valign="top"><a href="Manipulating-Structures.html#index-rmfield-1"><code>rmfield</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Manipulating-Structures.html">Manipulating Structures</a></td></tr>
<tr><td></td><td valign="top"><a href="Manipulating-the-Load-Path.html#index-rmpath"><code>rmpath</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Manipulating-the-Load-Path.html">Manipulating the Load Path</a></td></tr>
<tr><td></td><td valign="top"><a href="User_002dDefined-Preferences.html#index-rmpref"><code>rmpref</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="User_002dDefined-Preferences.html">User-Defined Preferences</a></td></tr>
<tr><td></td><td valign="top"><a href="User_002dDefined-Preferences.html#index-rmpref-1"><code>rmpref</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="User_002dDefined-Preferences.html">User-Defined Preferences</a></td></tr>
<tr><td></td><td valign="top"><a href="User_002dDefined-Preferences.html#index-rmpref-2"><code>rmpref</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="User_002dDefined-Preferences.html">User-Defined Preferences</a></td></tr>
<tr><td></td><td valign="top"><a href="Special-Utility-Matrices.html#index-rng"><code>rng</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Special-Utility-Matrices.html">Special Utility Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Special-Utility-Matrices.html#index-rng-1"><code>rng</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Special-Utility-Matrices.html">Special Utility Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Special-Utility-Matrices.html#index-rng-2"><code>rng</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Special-Utility-Matrices.html">Special Utility Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Special-Utility-Matrices.html#index-rng-3"><code>rng</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Special-Utility-Matrices.html">Special Utility Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Special-Utility-Matrices.html#index-rng-4"><code>rng</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Special-Utility-Matrices.html">Special Utility Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Special-Utility-Matrices.html#index-rng-5"><code>rng</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Special-Utility-Matrices.html">Special Utility Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Special-Utility-Matrices.html#index-rng-6"><code>rng</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Special-Utility-Matrices.html">Special Utility Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Special-Utility-Matrices.html#index-rng-7"><code>rng</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Special-Utility-Matrices.html">Special Utility Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Finding-Roots.html#index-roots"><code>roots</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Finding-Roots.html">Finding Roots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-rose"><code>rose</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-rose-1"><code>rose</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-rose-2"><code>rose</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-rose-3"><code>rose</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-rose-4"><code>rose</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-rose-5"><code>rose</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Famous-Matrices.html#index-rosser"><code>rosser</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Famous-Matrices.html">Famous Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Rearranging-Matrices.html#index-rot90"><code>rot90</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Rearranging-Matrices.html">Rearranging Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Rearranging-Matrices.html#index-rot90-1"><code>rot90</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Rearranging-Matrices.html">Rearranging Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Manipulation-of-Plot-Objects.html#index-rotate"><code>rotate</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Manipulation-of-Plot-Objects.html">Manipulation of Plot Objects</a></td></tr>
<tr><td></td><td valign="top"><a href="Manipulation-of-Plot-Objects.html#index-rotate-1"><code>rotate</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Manipulation-of-Plot-Objects.html">Manipulation of Plot Objects</a></td></tr>
<tr><td></td><td valign="top"><a href="Manipulation-of-Plot-Objects.html#index-rotate3d"><code>rotate3d</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Manipulation-of-Plot-Objects.html">Manipulation of Plot Objects</a></td></tr>
<tr><td></td><td valign="top"><a href="Manipulation-of-Plot-Objects.html#index-rotate3d-1"><code>rotate3d</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Manipulation-of-Plot-Objects.html">Manipulation of Plot Objects</a></td></tr>
<tr><td></td><td valign="top"><a href="Manipulation-of-Plot-Objects.html#index-rotate3d-2"><code>rotate3d</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Manipulation-of-Plot-Objects.html">Manipulation of Plot Objects</a></td></tr>
<tr><td></td><td valign="top"><a href="Manipulation-of-Plot-Objects.html#index-rotate3d-3"><code>rotate3d</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Manipulation-of-Plot-Objects.html">Manipulation of Plot Objects</a></td></tr>
<tr><td></td><td valign="top"><a href="Rearranging-Matrices.html#index-rotdim"><code>rotdim</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Rearranging-Matrices.html">Rearranging Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Rearranging-Matrices.html#index-rotdim-1"><code>rotdim</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Rearranging-Matrices.html">Rearranging Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Rearranging-Matrices.html#index-rotdim-2"><code>rotdim</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Rearranging-Matrices.html">Rearranging Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Vector-Rotation-Matrices.html#index-rotx"><code>rotx</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Vector-Rotation-Matrices.html">Vector Rotation Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Vector-Rotation-Matrices.html#index-roty"><code>roty</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Vector-Rotation-Matrices.html">Vector Rotation Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Vector-Rotation-Matrices.html#index-rotz"><code>rotz</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Vector-Rotation-Matrices.html">Vector Rotation Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Utility-Functions.html#index-round"><code>round</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Utility-Functions.html">Utility Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Utility-Functions.html#index-roundb"><code>roundb</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Utility-Functions.html">Utility Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Object-Sizes.html#index-rows"><code>rows</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Object-Sizes.html">Object Sizes</a></td></tr>
<tr><td></td><td valign="top"><a href="Basic-Matrix-Functions.html#index-rref"><code>rref</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Basic-Matrix-Functions.html">Basic Matrix Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Basic-Matrix-Functions.html#index-rref-1"><code>rref</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Basic-Matrix-Functions.html">Basic Matrix Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Basic-Matrix-Functions.html#index-rref-2"><code>rref</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Basic-Matrix-Functions.html">Basic Matrix Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Matrix-Factorizations.html#index-rsf2csf"><code>rsf2csf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Matrix-Factorizations.html">Matrix Factorizations</a></td></tr>
<tr><td></td><td valign="top"><a href="Axis-Configuration.html#index-rticks"><code>rticks</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Axis-Configuration.html">Axis Configuration</a></td></tr>
<tr><td></td><td valign="top"><a href="Calling-a-Function-by-its-Name.html#index-run"><code>run</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Calling-a-Function-by-its-Name.html">Calling a Function by its Name</a></td></tr>
<tr><td></td><td valign="top"><a href="Calling-a-Function-by-its-Name.html#index-run-1"><code>run</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Calling-a-Function-by-its-Name.html">Calling a Function by its Name</a></td></tr>
<tr><td></td><td valign="top"><a href="Demonstration-Functions.html#index-rundemos"><code>rundemos</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Demonstration-Functions.html">Demonstration Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Demonstration-Functions.html#index-rundemos-1"><code>rundemos</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Demonstration-Functions.html">Demonstration Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Basic-Statistical-Functions.html#index-runlength"><code>runlength</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Basic-Statistical-Functions.html">Basic Statistical Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Basic-Statistical-Functions.html#index-runlength-1"><code>runlength</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Basic-Statistical-Functions.html">Basic Statistical Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Basic-Statistical-Functions.html#index-run_005fcount"><code>run_count</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Basic-Statistical-Functions.html">Basic Statistical Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Basic-Statistical-Functions.html#index-run_005fcount-1"><code>run_count</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Basic-Statistical-Functions.html">Basic Statistical Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Commands-for-History.html#index-run_005fhistory"><code>run_history</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Commands-for-History.html">Commands for History</a></td></tr>
<tr><td></td><td valign="top"><a href="Commands-for-History.html#index-run_005fhistory-1"><code>run_history</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Commands-for-History.html">Commands for History</a></td></tr>
<tr><td></td><td valign="top"><a href="Commands-for-History.html#index-run_005fhistory-2"><code>run_history</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Commands-for-History.html">Commands for History</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th id="Function-Index_fn_letter-S">S</th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="Simple-File-I_002fO.html#index-save"><code>save</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Simple-File-I_002fO.html">Simple File I/O</a></td></tr>
<tr><td></td><td valign="top"><a href="Simple-File-I_002fO.html#index-save-1"><code>save</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Simple-File-I_002fO.html">Simple File I/O</a></td></tr>
<tr><td></td><td valign="top"><a href="Simple-File-I_002fO.html#index-save-2"><code>save</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Simple-File-I_002fO.html">Simple File I/O</a></td></tr>
<tr><td></td><td valign="top"><a href="Simple-File-I_002fO.html#index-save-3"><code>save</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Simple-File-I_002fO.html">Simple File I/O</a></td></tr>
<tr><td></td><td valign="top"><a href="Simple-File-I_002fO.html#index-save-4"><code>save</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Simple-File-I_002fO.html">Simple File I/O</a></td></tr>
<tr><td></td><td valign="top"><a href="Simple-File-I_002fO.html#index-save-5"><code>save</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Simple-File-I_002fO.html">Simple File I/O</a></td></tr>
<tr><td></td><td valign="top"><a href="Simple-File-I_002fO.html#index-save-6"><code>save</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Simple-File-I_002fO.html">Simple File I/O</a></td></tr>
<tr><td></td><td valign="top"><a href="Printing-and-Saving-Plots.html#index-saveas"><code>saveas</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Printing-and-Saving-Plots.html">Printing and Saving Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Printing-and-Saving-Plots.html#index-saveas-1"><code>saveas</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Printing-and-Saving-Plots.html">Printing and Saving Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Printing-and-Saving-Plots.html#index-savefig"><code>savefig</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Printing-and-Saving-Plots.html">Printing and Saving Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Printing-and-Saving-Plots.html#index-savefig-1"><code>savefig</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Printing-and-Saving-Plots.html">Printing and Saving Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Printing-and-Saving-Plots.html#index-savefig-2"><code>savefig</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Printing-and-Saving-Plots.html">Printing and Saving Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Printing-and-Saving-Plots.html#index-savefig-3"><code>savefig</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Printing-and-Saving-Plots.html">Printing and Saving Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Printing-and-Saving-Plots.html#index-savefig-4"><code>savefig</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Printing-and-Saving-Plots.html">Printing and Saving Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Class-Methods.html#index-saveobj"><code>saveobj</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Class-Methods.html">Class Methods</a></td></tr>
<tr><td></td><td valign="top"><a href="Manipulating-the-Load-Path.html#index-savepath"><code>savepath</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Manipulating-the-Load-Path.html">Manipulating the Load Path</a></td></tr>
<tr><td></td><td valign="top"><a href="Manipulating-the-Load-Path.html#index-savepath-1"><code>savepath</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Manipulating-the-Load-Path.html">Manipulating the Load Path</a></td></tr>
<tr><td></td><td valign="top"><a href="Manipulating-the-Load-Path.html#index-savepath-2"><code>savepath</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Manipulating-the-Load-Path.html">Manipulating the Load Path</a></td></tr>
<tr><td></td><td valign="top"><a href="Simple-File-I_002fO.html#index-save_005fdefault_005foptions"><code>save_default_options</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Simple-File-I_002fO.html">Simple File I/O</a></td></tr>
<tr><td></td><td valign="top"><a href="Simple-File-I_002fO.html#index-save_005fdefault_005foptions-1"><code>save_default_options</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Simple-File-I_002fO.html">Simple File I/O</a></td></tr>
<tr><td></td><td valign="top"><a href="Simple-File-I_002fO.html#index-save_005fdefault_005foptions-2"><code>save_default_options</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Simple-File-I_002fO.html">Simple File I/O</a></td></tr>
<tr><td></td><td valign="top"><a href="Simple-File-I_002fO.html#index-save_005fheader_005fformat_005fstring"><code>save_header_format_string</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Simple-File-I_002fO.html">Simple File I/O</a></td></tr>
<tr><td></td><td valign="top"><a href="Simple-File-I_002fO.html#index-save_005fheader_005fformat_005fstring-1"><code>save_header_format_string</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Simple-File-I_002fO.html">Simple File I/O</a></td></tr>
<tr><td></td><td valign="top"><a href="Simple-File-I_002fO.html#index-save_005fheader_005fformat_005fstring-2"><code>save_header_format_string</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Simple-File-I_002fO.html">Simple File I/O</a></td></tr>
<tr><td></td><td valign="top"><a href="Simple-File-I_002fO.html#index-save_005fprecision"><code>save_precision</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Simple-File-I_002fO.html">Simple File I/O</a></td></tr>
<tr><td></td><td valign="top"><a href="Simple-File-I_002fO.html#index-save_005fprecision-1"><code>save_precision</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Simple-File-I_002fO.html">Simple File I/O</a></td></tr>
<tr><td></td><td valign="top"><a href="Simple-File-I_002fO.html#index-save_005fprecision-2"><code>save_precision</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Simple-File-I_002fO.html">Simple File I/O</a></td></tr>
<tr><td></td><td valign="top"><a href="Formatted-Input.html#index-scanf"><code>scanf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Formatted-Input.html">Formatted Input</a></td></tr>
<tr><td></td><td valign="top"><a href="Formatted-Input.html#index-scanf-1"><code>scanf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Formatted-Input.html">Formatted Input</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-scatter"><code>scatter</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-scatter-1"><code>scatter</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-scatter-2"><code>scatter</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-scatter-3"><code>scatter</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-scatter-4"><code>scatter</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-scatter-5"><code>scatter</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-scatter-6"><code>scatter</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-scatter-7"><code>scatter</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-scatter3"><code>scatter3</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-scatter3-1"><code>scatter3</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-scatter3-2"><code>scatter3</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-scatter3-3"><code>scatter3</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-scatter3-4"><code>scatter3</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-scatter3-5"><code>scatter3</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-scatter3-6"><code>scatter3</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-scatter3-7"><code>scatter3</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Matrix-Factorizations.html#index-schur"><code>schur</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Matrix-Factorizations.html">Matrix Factorizations</a></td></tr>
<tr><td></td><td valign="top"><a href="Matrix-Factorizations.html#index-schur-1"><code>schur</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Matrix-Factorizations.html">Matrix Factorizations</a></td></tr>
<tr><td></td><td valign="top"><a href="Matrix-Factorizations.html#index-schur-2"><code>schur</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Matrix-Factorizations.html">Matrix Factorizations</a></td></tr>
<tr><td></td><td valign="top"><a href="Matrix-Factorizations.html#index-schur-3"><code>schur</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Matrix-Factorizations.html">Matrix Factorizations</a></td></tr>
<tr><td></td><td valign="top"><a href="Matrix-Factorizations.html#index-schur-4"><code>schur</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Matrix-Factorizations.html">Matrix Factorizations</a></td></tr>
<tr><td></td><td valign="top"><a href="Trigonometry.html#index-sec"><code>sec</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Trigonometry.html">Trigonometry</a></td></tr>
<tr><td></td><td valign="top"><a href="Trigonometry.html#index-secd"><code>secd</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Trigonometry.html">Trigonometry</a></td></tr>
<tr><td></td><td valign="top"><a href="Trigonometry.html#index-sech"><code>sech</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Trigonometry.html">Trigonometry</a></td></tr>
<tr><td></td><td valign="top"><a href="File-Positioning.html#index-SEEK_005fCUR"><code>SEEK_CUR</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="File-Positioning.html">File Positioning</a></td></tr>
<tr><td></td><td valign="top"><a href="File-Positioning.html#index-SEEK_005fEND"><code>SEEK_END</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="File-Positioning.html">File Positioning</a></td></tr>
<tr><td></td><td valign="top"><a href="File-Positioning.html#index-SEEK_005fSET"><code>SEEK_SET</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="File-Positioning.html">File Positioning</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-semilogx"><code>semilogx</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-semilogx-1"><code>semilogx</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-semilogx-2"><code>semilogx</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-semilogx-3"><code>semilogx</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-semilogx-4"><code>semilogx</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-semilogx-5"><code>semilogx</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-semilogxerr"><code>semilogxerr</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-semilogxerr-1"><code>semilogxerr</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-semilogxerr-2"><code>semilogxerr</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-semilogxerr-3"><code>semilogxerr</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-semilogxerr-4"><code>semilogxerr</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-semilogxerr-5"><code>semilogxerr</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-semilogxerr-6"><code>semilogxerr</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-semilogxerr-7"><code>semilogxerr</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-semilogxerr-8"><code>semilogxerr</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-semilogxerr-9"><code>semilogxerr</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-semilogy"><code>semilogy</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-semilogy-1"><code>semilogy</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-semilogy-2"><code>semilogy</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-semilogy-3"><code>semilogy</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-semilogy-4"><code>semilogy</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-semilogy-5"><code>semilogy</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-semilogyerr"><code>semilogyerr</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-semilogyerr-1"><code>semilogyerr</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-semilogyerr-2"><code>semilogyerr</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-semilogyerr-3"><code>semilogyerr</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-semilogyerr-4"><code>semilogyerr</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-semilogyerr-5"><code>semilogyerr</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-semilogyerr-6"><code>semilogyerr</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-semilogyerr-7"><code>semilogyerr</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-semilogyerr-8"><code>semilogyerr</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-semilogyerr-9"><code>semilogyerr</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Graphics-Objects.html#index-set"><code>set</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Graphics-Objects.html">Graphics Objects</a></td></tr>
<tr><td></td><td valign="top"><a href="Graphics-Objects.html#index-set-1"><code>set</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Graphics-Objects.html">Graphics Objects</a></td></tr>
<tr><td></td><td valign="top"><a href="Graphics-Objects.html#index-set-2"><code>set</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Graphics-Objects.html">Graphics Objects</a></td></tr>
<tr><td></td><td valign="top"><a href="Graphics-Objects.html#index-set-3"><code>set</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Graphics-Objects.html">Graphics Objects</a></td></tr>
<tr><td></td><td valign="top"><a href="Graphics-Objects.html#index-set-4"><code>set</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Graphics-Objects.html">Graphics Objects</a></td></tr>
<tr><td></td><td valign="top"><a href="Player-Properties.html#index-set-5"><code>set</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Player-Properties.html">Player Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Player-Properties.html#index-set-6"><code>set</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Player-Properties.html">Player Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Player-Properties.html#index-set-7"><code>set</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Player-Properties.html">Player Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Recorder-Properties.html#index-set-8"><code>set</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Recorder-Properties.html">Recorder Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Recorder-Properties.html#index-set-9"><code>set</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Recorder-Properties.html">Recorder Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Recorder-Properties.html#index-set-10"><code>set</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Recorder-Properties.html">Recorder Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Application_002ddefined-Data.html#index-setappdata"><code>setappdata</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Application_002ddefined-Data.html">Application-defined Data</a></td></tr>
<tr><td></td><td valign="top"><a href="Application_002ddefined-Data.html#index-setappdata-1"><code>setappdata</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Application_002ddefined-Data.html">Application-defined Data</a></td></tr>
<tr><td></td><td valign="top"><a href="Application_002ddefined-Data.html#index-setappdata-2"><code>setappdata</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Application_002ddefined-Data.html">Application-defined Data</a></td></tr>
<tr><td></td><td valign="top"><a href="Set-Operations.html#index-setdiff"><code>setdiff</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Set-Operations.html">Set Operations</a></td></tr>
<tr><td></td><td valign="top"><a href="Set-Operations.html#index-setdiff-1"><code>setdiff</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Set-Operations.html">Set Operations</a></td></tr>
<tr><td></td><td valign="top"><a href="Set-Operations.html#index-setdiff-2"><code>setdiff</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Set-Operations.html">Set Operations</a></td></tr>
<tr><td></td><td valign="top"><a href="Set-Operations.html#index-setdiff-3"><code>setdiff</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Set-Operations.html">Set Operations</a></td></tr>
<tr><td></td><td valign="top"><a href="Set-Operations.html#index-setdiff-4"><code>setdiff</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Set-Operations.html">Set Operations</a></td></tr>
<tr><td></td><td valign="top"><a href="Set-Operations.html#index-setdiff-5"><code>setdiff</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Set-Operations.html">Set Operations</a></td></tr>
<tr><td></td><td valign="top"><a href="Environment-Variables.html#index-setenv"><code>setenv</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Environment-Variables.html">Environment Variables</a></td></tr>
<tr><td></td><td valign="top"><a href="Environment-Variables.html#index-setenv-1"><code>setenv</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Environment-Variables.html">Environment Variables</a></td></tr>
<tr><td></td><td valign="top"><a href="Manipulating-Structures.html#index-setfield"><code>setfield</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Manipulating-Structures.html">Manipulating Structures</a></td></tr>
<tr><td></td><td valign="top"><a href="Manipulating-Structures.html#index-setfield-1"><code>setfield</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Manipulating-Structures.html">Manipulating Structures</a></td></tr>
<tr><td></td><td valign="top"><a href="Group-Database-Functions.html#index-setgrent"><code>setgrent</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Group-Database-Functions.html">Group Database Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="User_002dDefined-Preferences.html#index-setpref"><code>setpref</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="User_002dDefined-Preferences.html">User-Defined Preferences</a></td></tr>
<tr><td></td><td valign="top"><a href="User_002dDefined-Preferences.html#index-setpref-1"><code>setpref</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="User_002dDefined-Preferences.html">User-Defined Preferences</a></td></tr>
<tr><td></td><td valign="top"><a href="Password-Database-Functions.html#index-setpwent"><code>setpwent</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Password-Database-Functions.html">Password Database Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Set-Operations.html#index-setxor"><code>setxor</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Set-Operations.html">Set Operations</a></td></tr>
<tr><td></td><td valign="top"><a href="Set-Operations.html#index-setxor-1"><code>setxor</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Set-Operations.html">Set Operations</a></td></tr>
<tr><td></td><td valign="top"><a href="Set-Operations.html#index-setxor-2"><code>setxor</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Set-Operations.html">Set Operations</a></td></tr>
<tr><td></td><td valign="top"><a href="Set-Operations.html#index-setxor-3"><code>setxor</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Set-Operations.html">Set Operations</a></td></tr>
<tr><td></td><td valign="top"><a href="Set-Operations.html#index-setxor-4"><code>setxor</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Set-Operations.html">Set Operations</a></td></tr>
<tr><td></td><td valign="top"><a href="Set-Operations.html#index-setxor-5"><code>setxor</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Set-Operations.html">Set Operations</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-shading"><code>shading</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-shading-1"><code>shading</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Manipulation-of-Plot-Windows.html#index-shg"><code>shg</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Manipulation-of-Plot-Windows.html">Manipulation of Plot Windows</a></td></tr>
<tr><td></td><td valign="top"><a href="Rearranging-Matrices.html#index-shift"><code>shift</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Rearranging-Matrices.html">Rearranging Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Rearranging-Matrices.html#index-shift-1"><code>shift</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Rearranging-Matrices.html">Rearranging Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Rearranging-Matrices.html#index-shiftdim"><code>shiftdim</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Rearranging-Matrices.html">Rearranging Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Rearranging-Matrices.html#index-shiftdim-1"><code>shiftdim</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Rearranging-Matrices.html">Rearranging Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-shrinkfaces"><code>shrinkfaces</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-shrinkfaces-1"><code>shrinkfaces</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-shrinkfaces-2"><code>shrinkfaces</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-shrinkfaces-3"><code>shrinkfaces</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-shrinkfaces-4"><code>shrinkfaces</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Controlling-Subprocesses.html#index-SIG"><code>SIG</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Controlling-Subprocesses.html">Controlling Subprocesses</a></td></tr>
<tr><td></td><td valign="top"><a href="Saving-Data-on-Unexpected-Exits.html#index-sighup_005fdumps_005foctave_005fcore"><code>sighup_dumps_octave_core</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Saving-Data-on-Unexpected-Exits.html">Saving Data on Unexpected Exits</a></td></tr>
<tr><td></td><td valign="top"><a href="Saving-Data-on-Unexpected-Exits.html#index-sighup_005fdumps_005foctave_005fcore-1"><code>sighup_dumps_octave_core</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Saving-Data-on-Unexpected-Exits.html">Saving Data on Unexpected Exits</a></td></tr>
<tr><td></td><td valign="top"><a href="Saving-Data-on-Unexpected-Exits.html#index-sighup_005fdumps_005foctave_005fcore-2"><code>sighup_dumps_octave_core</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Saving-Data-on-Unexpected-Exits.html">Saving Data on Unexpected Exits</a></td></tr>
<tr><td></td><td valign="top"><a href="Utility-Functions.html#index-sign"><code>sign</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Utility-Functions.html">Utility Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Utility-Functions.html#index-signbit"><code>signbit</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Utility-Functions.html">Utility Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Saving-Data-on-Unexpected-Exits.html#index-sigquit_005fdumps_005foctave_005fcore"><code>sigquit_dumps_octave_core</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Saving-Data-on-Unexpected-Exits.html">Saving Data on Unexpected Exits</a></td></tr>
<tr><td></td><td valign="top"><a href="Saving-Data-on-Unexpected-Exits.html#index-sigquit_005fdumps_005foctave_005fcore-1"><code>sigquit_dumps_octave_core</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Saving-Data-on-Unexpected-Exits.html">Saving Data on Unexpected Exits</a></td></tr>
<tr><td></td><td valign="top"><a href="Saving-Data-on-Unexpected-Exits.html#index-sigquit_005fdumps_005foctave_005fcore-2"><code>sigquit_dumps_octave_core</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Saving-Data-on-Unexpected-Exits.html">Saving Data on Unexpected Exits</a></td></tr>
<tr><td></td><td valign="top"><a href="Saving-Data-on-Unexpected-Exits.html#index-sigterm_005fdumps_005foctave_005fcore"><code>sigterm_dumps_octave_core</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Saving-Data-on-Unexpected-Exits.html">Saving Data on Unexpected Exits</a></td></tr>
<tr><td></td><td valign="top"><a href="Saving-Data-on-Unexpected-Exits.html#index-sigterm_005fdumps_005foctave_005fcore-1"><code>sigterm_dumps_octave_core</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Saving-Data-on-Unexpected-Exits.html">Saving Data on Unexpected Exits</a></td></tr>
<tr><td></td><td valign="top"><a href="Saving-Data-on-Unexpected-Exits.html#index-sigterm_005fdumps_005foctave_005fcore-2"><code>sigterm_dumps_octave_core</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Saving-Data-on-Unexpected-Exits.html">Saving Data on Unexpected Exits</a></td></tr>
<tr><td></td><td valign="top"><a href="Defining-Functions.html#index-silent_005ffunctions"><code>silent_functions</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Defining-Functions.html">Defining Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Defining-Functions.html#index-silent_005ffunctions-1"><code>silent_functions</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Defining-Functions.html">Defining Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Defining-Functions.html#index-silent_005ffunctions-2"><code>silent_functions</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Defining-Functions.html">Defining Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Trigonometry.html#index-sin"><code>sin</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Trigonometry.html">Trigonometry</a></td></tr>
<tr><td></td><td valign="top"><a href="Signal-Processing.html#index-sinc"><code>sinc</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Signal-Processing.html">Signal Processing</a></td></tr>
<tr><td></td><td valign="top"><a href="Trigonometry.html#index-sind"><code>sind</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Trigonometry.html">Trigonometry</a></td></tr>
<tr><td></td><td valign="top"><a href="Signal-Processing.html#index-sinetone"><code>sinetone</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Signal-Processing.html">Signal Processing</a></td></tr>
<tr><td></td><td valign="top"><a href="Signal-Processing.html#index-sinewave"><code>sinewave</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Signal-Processing.html">Signal Processing</a></td></tr>
<tr><td></td><td valign="top"><a href="Single-Precision-Data-Types.html#index-single"><code>single</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Single-Precision-Data-Types.html">Single Precision Data Types</a></td></tr>
<tr><td></td><td valign="top"><a href="Trigonometry.html#index-sinh"><code>sinh</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Trigonometry.html">Trigonometry</a></td></tr>
<tr><td></td><td valign="top"><a href="Special-Functions.html#index-sinint"><code>sinint</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Special-Functions.html">Special Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Trigonometry.html#index-sinpi"><code>sinpi</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Trigonometry.html">Trigonometry</a></td></tr>
<tr><td></td><td valign="top"><a href="Object-Sizes.html#index-size"><code>size</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Object-Sizes.html">Object Sizes</a></td></tr>
<tr><td></td><td valign="top"><a href="Object-Sizes.html#index-size-1"><code>size</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Object-Sizes.html">Object Sizes</a></td></tr>
<tr><td></td><td valign="top"><a href="Object-Sizes.html#index-size-2"><code>size</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Object-Sizes.html">Object Sizes</a></td></tr>
<tr><td></td><td valign="top"><a href="Object-Sizes.html#index-size-3"><code>size</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Object-Sizes.html">Object Sizes</a></td></tr>
<tr><td></td><td valign="top"><a href="Matrices.html#index-sizemax"><code>sizemax</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Matrices.html">Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Object-Sizes.html#index-sizeof"><code>sizeof</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Object-Sizes.html">Object Sizes</a></td></tr>
<tr><td></td><td valign="top"><a href="Object-Sizes.html#index-size_005fequal"><code>size_equal</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Object-Sizes.html">Object Sizes</a></td></tr>
<tr><td></td><td valign="top"><a href="Descriptive-Statistics.html#index-skewness"><code>skewness</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Descriptive-Statistics.html">Descriptive Statistics</a></td></tr>
<tr><td></td><td valign="top"><a href="Descriptive-Statistics.html#index-skewness-1"><code>skewness</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Descriptive-Statistics.html">Descriptive Statistics</a></td></tr>
<tr><td></td><td valign="top"><a href="Descriptive-Statistics.html#index-skewness-2"><code>skewness</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Descriptive-Statistics.html">Descriptive Statistics</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-slice"><code>slice</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-slice-1"><code>slice</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-slice-2"><code>slice</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-slice-3"><code>slice</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-slice-4"><code>slice</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-slice-5"><code>slice</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-slice-6"><code>slice</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-smooth3"><code>smooth3</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-smooth3-1"><code>smooth3</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-smooth3-2"><code>smooth3</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-smooth3-3"><code>smooth3</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Test-Plotting-Functions.html#index-sombrero"><code>sombrero</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Test-Plotting-Functions.html">Test Plotting Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Test-Plotting-Functions.html#index-sombrero-1"><code>sombrero</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Test-Plotting-Functions.html">Test Plotting Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Test-Plotting-Functions.html#index-sombrero-2"><code>sombrero</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Test-Plotting-Functions.html">Test Plotting Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Test-Plotting-Functions.html#index-sombrero-3"><code>sombrero</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Test-Plotting-Functions.html">Test Plotting Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Rearranging-Matrices.html#index-sort"><code>sort</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Rearranging-Matrices.html">Rearranging Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Rearranging-Matrices.html#index-sort-1"><code>sort</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Rearranging-Matrices.html">Rearranging Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Rearranging-Matrices.html#index-sort-2"><code>sort</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Rearranging-Matrices.html">Rearranging Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Rearranging-Matrices.html#index-sort-3"><code>sort</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Rearranging-Matrices.html">Rearranging Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Rearranging-Matrices.html#index-sortrows"><code>sortrows</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Rearranging-Matrices.html">Rearranging Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Rearranging-Matrices.html#index-sortrows-1"><code>sortrows</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Rearranging-Matrices.html">Rearranging Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Audio-Data-Processing.html#index-sound"><code>sound</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Audio-Data-Processing.html">Audio Data Processing</a></td></tr>
<tr><td></td><td valign="top"><a href="Audio-Data-Processing.html#index-sound-1"><code>sound</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Audio-Data-Processing.html">Audio Data Processing</a></td></tr>
<tr><td></td><td valign="top"><a href="Audio-Data-Processing.html#index-sound-2"><code>sound</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Audio-Data-Processing.html">Audio Data Processing</a></td></tr>
<tr><td></td><td valign="top"><a href="Audio-Data-Processing.html#index-soundsc"><code>soundsc</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Audio-Data-Processing.html">Audio Data Processing</a></td></tr>
<tr><td></td><td valign="top"><a href="Audio-Data-Processing.html#index-soundsc-1"><code>soundsc</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Audio-Data-Processing.html">Audio Data Processing</a></td></tr>
<tr><td></td><td valign="top"><a href="Audio-Data-Processing.html#index-soundsc-2"><code>soundsc</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Audio-Data-Processing.html">Audio Data Processing</a></td></tr>
<tr><td></td><td valign="top"><a href="Audio-Data-Processing.html#index-soundsc-3"><code>soundsc</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Audio-Data-Processing.html">Audio Data Processing</a></td></tr>
<tr><td></td><td valign="top"><a href="Script-Files.html#index-source"><code>source</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Script-Files.html">Script Files</a></td></tr>
<tr><td></td><td valign="top"><a href="Script-Files.html#index-source-1"><code>source</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Script-Files.html">Script Files</a></td></tr>
<tr><td></td><td valign="top"><a href="Creating-Sparse-Matrices.html#index-spalloc"><code>spalloc</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Creating-Sparse-Matrices.html">Creating Sparse Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Creating-Sparse-Matrices.html#index-sparse"><code>sparse</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Creating-Sparse-Matrices.html">Creating Sparse Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Creating-Sparse-Matrices.html#index-sparse-1"><code>sparse</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Creating-Sparse-Matrices.html">Creating Sparse Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Creating-Sparse-Matrices.html#index-sparse-2"><code>sparse</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Creating-Sparse-Matrices.html">Creating Sparse Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Creating-Sparse-Matrices.html#index-sparse-3"><code>sparse</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Creating-Sparse-Matrices.html">Creating Sparse Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Creating-Sparse-Matrices.html#index-sparse-4"><code>sparse</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Creating-Sparse-Matrices.html">Creating Sparse Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Creating-Sparse-Matrices.html#index-sparse-5"><code>sparse</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Creating-Sparse-Matrices.html">Creating Sparse Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Return-Types-of-Operators-and-Functions.html#index-sparse_005fauto_005fmutate"><code>sparse_auto_mutate</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Return-Types-of-Operators-and-Functions.html">Return Types of Operators and Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Return-Types-of-Operators-and-Functions.html#index-sparse_005fauto_005fmutate-1"><code>sparse_auto_mutate</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Return-Types-of-Operators-and-Functions.html">Return Types of Operators and Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Return-Types-of-Operators-and-Functions.html#index-sparse_005fauto_005fmutate-2"><code>sparse_auto_mutate</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Return-Types-of-Operators-and-Functions.html">Return Types of Operators and Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Sparse-Linear-Algebra.html#index-spaugment"><code>spaugment</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Sparse-Linear-Algebra.html">Sparse Linear Algebra</a></td></tr>
<tr><td></td><td valign="top"><a href="Creating-Sparse-Matrices.html#index-spconvert"><code>spconvert</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Creating-Sparse-Matrices.html">Creating Sparse Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Creating-Sparse-Matrices.html#index-spdiags"><code>spdiags</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Creating-Sparse-Matrices.html">Creating Sparse Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Creating-Sparse-Matrices.html#index-spdiags-1"><code>spdiags</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Creating-Sparse-Matrices.html">Creating Sparse Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Creating-Sparse-Matrices.html#index-spdiags-2"><code>spdiags</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Creating-Sparse-Matrices.html">Creating Sparse Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Creating-Sparse-Matrices.html#index-spdiags-3"><code>spdiags</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Creating-Sparse-Matrices.html">Creating Sparse Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Creating-Sparse-Matrices.html#index-spdiags-4"><code>spdiags</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Creating-Sparse-Matrices.html">Creating Sparse Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Correlation-and-Regression-Analysis.html#index-spearman"><code>spearman</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Correlation-and-Regression-Analysis.html">Correlation and Regression Analysis</a></td></tr>
<tr><td></td><td valign="top"><a href="Correlation-and-Regression-Analysis.html#index-spearman-1"><code>spearman</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Correlation-and-Regression-Analysis.html">Correlation and Regression Analysis</a></td></tr>
<tr><td></td><td valign="top"><a href="Signal-Processing.html#index-spectral_005fadf"><code>spectral_adf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Signal-Processing.html">Signal Processing</a></td></tr>
<tr><td></td><td valign="top"><a href="Signal-Processing.html#index-spectral_005fadf-1"><code>spectral_adf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Signal-Processing.html">Signal Processing</a></td></tr>
<tr><td></td><td valign="top"><a href="Signal-Processing.html#index-spectral_005fadf-2"><code>spectral_adf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Signal-Processing.html">Signal Processing</a></td></tr>
<tr><td></td><td valign="top"><a href="Signal-Processing.html#index-spectral_005fxdf"><code>spectral_xdf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Signal-Processing.html">Signal Processing</a></td></tr>
<tr><td></td><td valign="top"><a href="Signal-Processing.html#index-spectral_005fxdf-1"><code>spectral_xdf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Signal-Processing.html">Signal Processing</a></td></tr>
<tr><td></td><td valign="top"><a href="Signal-Processing.html#index-spectral_005fxdf-2"><code>spectral_xdf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Signal-Processing.html">Signal Processing</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-specular"><code>specular</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-specular-1"><code>specular</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Demonstration-Functions.html#index-speed"><code>speed</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Demonstration-Functions.html">Demonstration Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Demonstration-Functions.html#index-speed-1"><code>speed</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Demonstration-Functions.html">Demonstration Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Signal-Processing.html#index-spencer"><code>spencer</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Signal-Processing.html">Signal Processing</a></td></tr>
<tr><td></td><td valign="top"><a href="Creating-Sparse-Matrices.html#index-speye"><code>speye</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Creating-Sparse-Matrices.html">Creating Sparse Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Creating-Sparse-Matrices.html#index-speye-1"><code>speye</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Creating-Sparse-Matrices.html">Creating Sparse Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Creating-Sparse-Matrices.html#index-speye-2"><code>speye</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Creating-Sparse-Matrices.html">Creating Sparse Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Function-Application.html#index-spfun"><code>spfun</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Function-Application.html">Function Application</a></td></tr>
<tr><td></td><td valign="top"><a href="Coordinate-Transformations.html#index-sph2cart"><code>sph2cart</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Coordinate-Transformations.html">Coordinate Transformations</a></td></tr>
<tr><td></td><td valign="top"><a href="Coordinate-Transformations.html#index-sph2cart-1"><code>sph2cart</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Coordinate-Transformations.html">Coordinate Transformations</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002ddimensional-Geometric-Shapes.html#index-sphere"><code>sphere</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002ddimensional-Geometric-Shapes.html">Three-dimensional Geometric Shapes</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002ddimensional-Geometric-Shapes.html#index-sphere-1"><code>sphere</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002ddimensional-Geometric-Shapes.html">Three-dimensional Geometric Shapes</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002ddimensional-Geometric-Shapes.html#index-sphere-2"><code>sphere</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002ddimensional-Geometric-Shapes.html">Three-dimensional Geometric Shapes</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002ddimensional-Geometric-Shapes.html#index-sphere-3"><code>sphere</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002ddimensional-Geometric-Shapes.html">Three-dimensional Geometric Shapes</a></td></tr>
<tr><td></td><td valign="top"><a href="Representing-Images.html#index-spinmap"><code>spinmap</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Representing-Images.html">Representing Images</a></td></tr>
<tr><td></td><td valign="top"><a href="Representing-Images.html#index-spinmap-1"><code>spinmap</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Representing-Images.html">Representing Images</a></td></tr>
<tr><td></td><td valign="top"><a href="Representing-Images.html#index-spinmap-2"><code>spinmap</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Representing-Images.html">Representing Images</a></td></tr>
<tr><td></td><td valign="top"><a href="Representing-Images.html#index-spinmap-3"><code>spinmap</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Representing-Images.html">Representing Images</a></td></tr>
<tr><td></td><td valign="top"><a href="One_002ddimensional-Interpolation.html#index-spline"><code>spline</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="One_002ddimensional-Interpolation.html">One-dimensional Interpolation</a></td></tr>
<tr><td></td><td valign="top"><a href="One_002ddimensional-Interpolation.html#index-spline-1"><code>spline</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="One_002ddimensional-Interpolation.html">One-dimensional Interpolation</a></td></tr>
<tr><td></td><td valign="top"><a href="Polynomial-Interpolation.html#index-splinefit"><code>splinefit</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Polynomial-Interpolation.html">Polynomial Interpolation</a></td></tr>
<tr><td></td><td valign="top"><a href="Polynomial-Interpolation.html#index-splinefit-1"><code>splinefit</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Polynomial-Interpolation.html">Polynomial Interpolation</a></td></tr>
<tr><td></td><td valign="top"><a href="Polynomial-Interpolation.html#index-splinefit-2"><code>splinefit</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Polynomial-Interpolation.html">Polynomial Interpolation</a></td></tr>
<tr><td></td><td valign="top"><a href="Polynomial-Interpolation.html#index-splinefit-3"><code>splinefit</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Polynomial-Interpolation.html">Polynomial Interpolation</a></td></tr>
<tr><td></td><td valign="top"><a href="Polynomial-Interpolation.html#index-splinefit-4"><code>splinefit</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Polynomial-Interpolation.html">Polynomial Interpolation</a></td></tr>
<tr><td></td><td valign="top"><a href="Polynomial-Interpolation.html#index-splinefit-5"><code>splinefit</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Polynomial-Interpolation.html">Polynomial Interpolation</a></td></tr>
<tr><td></td><td valign="top"><a href="Polynomial-Interpolation.html#index-splinefit-6"><code>splinefit</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Polynomial-Interpolation.html">Polynomial Interpolation</a></td></tr>
<tr><td></td><td valign="top"><a href="Matrices.html#index-split_005flong_005frows"><code>split_long_rows</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Matrices.html">Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Matrices.html#index-split_005flong_005frows-1"><code>split_long_rows</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Matrices.html">Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Matrices.html#index-split_005flong_005frows-2"><code>split_long_rows</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Matrices.html">Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Creating-Sparse-Matrices.html#index-spones"><code>spones</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Creating-Sparse-Matrices.html">Creating Sparse Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Sparse-Linear-Algebra.html#index-spparms"><code>spparms</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Sparse-Linear-Algebra.html">Sparse Linear Algebra</a></td></tr>
<tr><td></td><td valign="top"><a href="Sparse-Linear-Algebra.html#index-spparms-1"><code>spparms</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Sparse-Linear-Algebra.html">Sparse Linear Algebra</a></td></tr>
<tr><td></td><td valign="top"><a href="Sparse-Linear-Algebra.html#index-spparms-2"><code>spparms</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Sparse-Linear-Algebra.html">Sparse Linear Algebra</a></td></tr>
<tr><td></td><td valign="top"><a href="Sparse-Linear-Algebra.html#index-spparms-3"><code>spparms</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Sparse-Linear-Algebra.html">Sparse Linear Algebra</a></td></tr>
<tr><td></td><td valign="top"><a href="Sparse-Linear-Algebra.html#index-spparms-4"><code>spparms</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Sparse-Linear-Algebra.html">Sparse Linear Algebra</a></td></tr>
<tr><td></td><td valign="top"><a href="Sparse-Linear-Algebra.html#index-spparms-5"><code>spparms</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Sparse-Linear-Algebra.html">Sparse Linear Algebra</a></td></tr>
<tr><td></td><td valign="top"><a href="Sparse-Linear-Algebra.html#index-spparms-6"><code>spparms</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Sparse-Linear-Algebra.html">Sparse Linear Algebra</a></td></tr>
<tr><td></td><td valign="top"><a href="Sparse-Linear-Algebra.html#index-spparms-7"><code>spparms</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Sparse-Linear-Algebra.html">Sparse Linear Algebra</a></td></tr>
<tr><td></td><td valign="top"><a href="Creating-Sparse-Matrices.html#index-sprand"><code>sprand</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Creating-Sparse-Matrices.html">Creating Sparse Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Creating-Sparse-Matrices.html#index-sprand-1"><code>sprand</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Creating-Sparse-Matrices.html">Creating Sparse Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Creating-Sparse-Matrices.html#index-sprand-2"><code>sprand</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Creating-Sparse-Matrices.html">Creating Sparse Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Creating-Sparse-Matrices.html#index-sprandn"><code>sprandn</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Creating-Sparse-Matrices.html">Creating Sparse Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Creating-Sparse-Matrices.html#index-sprandn-1"><code>sprandn</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Creating-Sparse-Matrices.html">Creating Sparse Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Creating-Sparse-Matrices.html#index-sprandn-2"><code>sprandn</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Creating-Sparse-Matrices.html">Creating Sparse Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Creating-Sparse-Matrices.html#index-sprandsym"><code>sprandsym</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Creating-Sparse-Matrices.html">Creating Sparse Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Creating-Sparse-Matrices.html#index-sprandsym-1"><code>sprandsym</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Creating-Sparse-Matrices.html">Creating Sparse Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Sparse-Linear-Algebra.html#index-sprank"><code>sprank</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Sparse-Linear-Algebra.html">Sparse Linear Algebra</a></td></tr>
<tr><td></td><td valign="top"><a href="Representing-Images.html#index-spring"><code>spring</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Representing-Images.html">Representing Images</a></td></tr>
<tr><td></td><td valign="top"><a href="Representing-Images.html#index-spring-1"><code>spring</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Representing-Images.html">Representing Images</a></td></tr>
<tr><td></td><td valign="top"><a href="Formatted-Output.html#index-sprintf"><code>sprintf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Formatted-Output.html">Formatted Output</a></td></tr>
<tr><td></td><td valign="top"><a href="Information.html#index-spstats"><code>spstats</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Information.html">Information</a></td></tr>
<tr><td></td><td valign="top"><a href="Information.html#index-spstats-1"><code>spstats</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Information.html">Information</a></td></tr>
<tr><td></td><td valign="top"><a href="Information.html#index-spy"><code>spy</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Information.html">Information</a></td></tr>
<tr><td></td><td valign="top"><a href="Information.html#index-spy-1"><code>spy</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Information.html">Information</a></td></tr>
<tr><td></td><td valign="top"><a href="Information.html#index-spy-2"><code>spy</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Information.html">Information</a></td></tr>
<tr><td></td><td valign="top"><a href="Nonlinear-Programming.html#index-sqp"><code>sqp</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Nonlinear-Programming.html">Nonlinear Programming</a></td></tr>
<tr><td></td><td valign="top"><a href="Nonlinear-Programming.html#index-sqp-1"><code>sqp</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Nonlinear-Programming.html">Nonlinear Programming</a></td></tr>
<tr><td></td><td valign="top"><a href="Nonlinear-Programming.html#index-sqp-2"><code>sqp</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Nonlinear-Programming.html">Nonlinear Programming</a></td></tr>
<tr><td></td><td valign="top"><a href="Nonlinear-Programming.html#index-sqp-3"><code>sqp</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Nonlinear-Programming.html">Nonlinear Programming</a></td></tr>
<tr><td></td><td valign="top"><a href="Nonlinear-Programming.html#index-sqp-4"><code>sqp</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Nonlinear-Programming.html">Nonlinear Programming</a></td></tr>
<tr><td></td><td valign="top"><a href="Nonlinear-Programming.html#index-sqp-5"><code>sqp</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Nonlinear-Programming.html">Nonlinear Programming</a></td></tr>
<tr><td></td><td valign="top"><a href="Exponents-and-Logarithms.html#index-sqrt"><code>sqrt</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Exponents-and-Logarithms.html">Exponents and Logarithms</a></td></tr>
<tr><td></td><td valign="top"><a href="Functions-of-a-Matrix.html#index-sqrtm"><code>sqrtm</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Functions-of-a-Matrix.html">Functions of a Matrix</a></td></tr>
<tr><td></td><td valign="top"><a href="Functions-of-a-Matrix.html#index-sqrtm-1"><code>sqrtm</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Functions-of-a-Matrix.html">Functions of a Matrix</a></td></tr>
<tr><td></td><td valign="top"><a href="Object-Sizes.html#index-squeeze"><code>squeeze</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Object-Sizes.html">Object Sizes</a></td></tr>
<tr><td></td><td valign="top"><a href="Formatted-Input.html#index-sscanf"><code>sscanf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Formatted-Input.html">Formatted Input</a></td></tr>
<tr><td></td><td valign="top"><a href="Formatted-Input.html#index-sscanf-1"><code>sscanf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Formatted-Input.html">Formatted Input</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-stairs"><code>stairs</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-stairs-1"><code>stairs</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-stairs-2"><code>stairs</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-stairs-3"><code>stairs</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-stairs-4"><code>stairs</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-stairs-5"><code>stairs</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-stairs-6"><code>stairs</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Searching-in-Strings.html#index-startsWith"><code>startsWith</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Searching-in-Strings.html">Searching in Strings</a></td></tr>
<tr><td></td><td valign="top"><a href="Searching-in-Strings.html#index-startsWith-1"><code>startsWith</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Searching-in-Strings.html">Searching in Strings</a></td></tr>
<tr><td></td><td valign="top"><a href="Filesystem-Utilities.html#index-stat"><code>stat</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Filesystem-Utilities.html">Filesystem Utilities</a></td></tr>
<tr><td></td><td valign="top"><a href="Filesystem-Utilities.html#index-stat-1"><code>stat</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Filesystem-Utilities.html">Filesystem Utilities</a></td></tr>
<tr><td></td><td valign="top"><a href="Descriptive-Statistics.html#index-statistics"><code>statistics</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Descriptive-Statistics.html">Descriptive Statistics</a></td></tr>
<tr><td></td><td valign="top"><a href="Descriptive-Statistics.html#index-statistics-1"><code>statistics</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Descriptive-Statistics.html">Descriptive Statistics</a></td></tr>
<tr><td></td><td valign="top"><a href="Descriptive-Statistics.html#index-std"><code>std</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Descriptive-Statistics.html">Descriptive Statistics</a></td></tr>
<tr><td></td><td valign="top"><a href="Descriptive-Statistics.html#index-std-1"><code>std</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Descriptive-Statistics.html">Descriptive Statistics</a></td></tr>
<tr><td></td><td valign="top"><a href="Descriptive-Statistics.html#index-std-2"><code>std</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Descriptive-Statistics.html">Descriptive Statistics</a></td></tr>
<tr><td></td><td valign="top"><a href="Descriptive-Statistics.html#index-std-3"><code>std</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Descriptive-Statistics.html">Descriptive Statistics</a></td></tr>
<tr><td></td><td valign="top"><a href="C_002dStyle-I_002fO-Functions.html#index-stderr"><code>stderr</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="C_002dStyle-I_002fO-Functions.html">C-Style I/O Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="C_002dStyle-I_002fO-Functions.html#index-stdin"><code>stdin</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="C_002dStyle-I_002fO-Functions.html">C-Style I/O Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="C_002dStyle-I_002fO-Functions.html#index-stdout"><code>stdout</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="C_002dStyle-I_002fO-Functions.html">C-Style I/O Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-stem"><code>stem</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-stem-1"><code>stem</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-stem-2"><code>stem</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-stem-3"><code>stem</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-stem-4"><code>stem</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-stem-5"><code>stem</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-stem-6"><code>stem</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-stem3"><code>stem3</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-stem3-1"><code>stem3</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-stem3-2"><code>stem3</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-stem3-3"><code>stem3</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-stem3-4"><code>stem3</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-stem3-5"><code>stem3</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-stemleaf"><code>stemleaf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-stemleaf-1"><code>stemleaf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-stemleaf-2"><code>stemleaf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Signal-Processing.html#index-stft"><code>stft</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Signal-Processing.html">Signal Processing</a></td></tr>
<tr><td></td><td valign="top"><a href="Signal-Processing.html#index-stft-1"><code>stft</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Signal-Processing.html">Signal Processing</a></td></tr>
<tr><td></td><td valign="top"><a href="Signal-Processing.html#index-stft-2"><code>stft</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Signal-Processing.html">Signal Processing</a></td></tr>
<tr><td></td><td valign="top"><a href="Signal-Processing.html#index-stft-3"><code>stft</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Signal-Processing.html">Signal Processing</a></td></tr>
<tr><td></td><td valign="top"><a href="Signal-Processing.html#index-stft-4"><code>stft</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Signal-Processing.html">Signal Processing</a></td></tr>
<tr><td></td><td valign="top"><a href="Signal-Processing.html#index-stft-5"><code>stft</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Signal-Processing.html">Signal Processing</a></td></tr>
<tr><td></td><td valign="top"><a href="Playback.html#index-stop"><code>stop</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Playback.html">Playback</a></td></tr>
<tr><td></td><td valign="top"><a href="Recording.html#index-stop-1"><code>stop</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Recording.html">Recording</a></td></tr>
<tr><td></td><td valign="top"><a href="Numerical-Data-and-Strings.html#index-str2double"><code>str2double</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Numerical-Data-and-Strings.html">Numerical Data and Strings</a></td></tr>
<tr><td></td><td valign="top"><a href="Function-Handles.html#index-str2func"><code>str2func</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Function-Handles.html">Function Handles</a></td></tr>
<tr><td></td><td valign="top"><a href="Numerical-Data-and-Strings.html#index-str2num"><code>str2num</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Numerical-Data-and-Strings.html">Numerical Data and Strings</a></td></tr>
<tr><td></td><td valign="top"><a href="Numerical-Data-and-Strings.html#index-str2num-1"><code>str2num</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Numerical-Data-and-Strings.html">Numerical Data and Strings</a></td></tr>
<tr><td></td><td valign="top"><a href="Concatenating-Strings.html#index-strcat"><code>strcat</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Concatenating-Strings.html">Concatenating Strings</a></td></tr>
<tr><td></td><td valign="top"><a href="Searching-in-Strings.html#index-strchr"><code>strchr</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Searching-in-Strings.html">Searching in Strings</a></td></tr>
<tr><td></td><td valign="top"><a href="Searching-in-Strings.html#index-strchr-1"><code>strchr</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Searching-in-Strings.html">Searching in Strings</a></td></tr>
<tr><td></td><td valign="top"><a href="Searching-in-Strings.html#index-strchr-2"><code>strchr</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Searching-in-Strings.html">Searching in Strings</a></td></tr>
<tr><td></td><td valign="top"><a href="Searching-in-Strings.html#index-strchr-3"><code>strchr</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Searching-in-Strings.html">Searching in Strings</a></td></tr>
<tr><td></td><td valign="top"><a href="Searching-in-Strings.html#index-strcmp"><code>strcmp</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Searching-in-Strings.html">Searching in Strings</a></td></tr>
<tr><td></td><td valign="top"><a href="Searching-in-Strings.html#index-strcmpi"><code>strcmpi</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Searching-in-Strings.html">Searching in Strings</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-stream2"><code>stream2</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-stream2-1"><code>stream2</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-stream2-2"><code>stream2</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-stream3"><code>stream3</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-stream3-1"><code>stream3</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-stream3-2"><code>stream3</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-streamline"><code>streamline</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-streamline-1"><code>streamline</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-streamline-2"><code>streamline</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-streamline-3"><code>streamline</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-streamline-4"><code>streamline</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-streamribbon"><code>streamribbon</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-streamribbon-1"><code>streamribbon</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-streamribbon-2"><code>streamribbon</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-streamribbon-3"><code>streamribbon</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-streamribbon-4"><code>streamribbon</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-streamribbon-5"><code>streamribbon</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-streamribbon-6"><code>streamribbon</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-streamribbon-7"><code>streamribbon</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-streamtube"><code>streamtube</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-streamtube-1"><code>streamtube</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-streamtube-2"><code>streamtube</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-streamtube-3"><code>streamtube</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-streamtube-4"><code>streamtube</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-streamtube-5"><code>streamtube</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-streamtube-6"><code>streamtube</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002dDimensional-Plots.html#index-streamtube-7"><code>streamtube</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002dDimensional-Plots.html">Two-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Searching-in-Strings.html#index-strfind"><code>strfind</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Searching-in-Strings.html">Searching in Strings</a></td></tr>
<tr><td></td><td valign="top"><a href="Searching-in-Strings.html#index-strfind-1"><code>strfind</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Searching-in-Strings.html">Searching in Strings</a></td></tr>
<tr><td></td><td valign="top"><a href="Searching-in-Strings.html#index-strfind-2"><code>strfind</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Searching-in-Strings.html">Searching in Strings</a></td></tr>
<tr><td></td><td valign="top"><a href="Searching-in-Strings.html#index-strfind-3"><code>strfind</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Searching-in-Strings.html">Searching in Strings</a></td></tr>
<tr><td></td><td valign="top"><a href="Timing-Utilities.html#index-strftime"><code>strftime</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Timing-Utilities.html">Timing Utilities</a></td></tr>
<tr><td></td><td valign="top"><a href="Character-Arrays.html#index-string_005ffill_005fchar"><code>string_fill_char</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Character-Arrays.html">Character Arrays</a></td></tr>
<tr><td></td><td valign="top"><a href="Character-Arrays.html#index-string_005ffill_005fchar-1"><code>string_fill_char</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Character-Arrays.html">Character Arrays</a></td></tr>
<tr><td></td><td valign="top"><a href="Character-Arrays.html#index-string_005ffill_005fchar-2"><code>string_fill_char</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Character-Arrays.html">Character Arrays</a></td></tr>
<tr><td></td><td valign="top"><a href="Splitting-and-Joining-Strings.html#index-strjoin"><code>strjoin</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Splitting-and-Joining-Strings.html">Splitting and Joining Strings</a></td></tr>
<tr><td></td><td valign="top"><a href="Splitting-and-Joining-Strings.html#index-strjoin-1"><code>strjoin</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Splitting-and-Joining-Strings.html">Splitting and Joining Strings</a></td></tr>
<tr><td></td><td valign="top"><a href="Character-Arrays.html#index-strjust"><code>strjust</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Character-Arrays.html">Character Arrays</a></td></tr>
<tr><td></td><td valign="top"><a href="Character-Arrays.html#index-strjust-1"><code>strjust</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Character-Arrays.html">Character Arrays</a></td></tr>
<tr><td></td><td valign="top"><a href="Searching-in-Strings.html#index-strmatch"><code>strmatch</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Searching-in-Strings.html">Searching in Strings</a></td></tr>
<tr><td></td><td valign="top"><a href="Searching-in-Strings.html#index-strmatch-1"><code>strmatch</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Searching-in-Strings.html">Searching in Strings</a></td></tr>
<tr><td></td><td valign="top"><a href="Searching-in-Strings.html#index-strncmp"><code>strncmp</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Searching-in-Strings.html">Searching in Strings</a></td></tr>
<tr><td></td><td valign="top"><a href="Searching-in-Strings.html#index-strncmpi"><code>strncmpi</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Searching-in-Strings.html">Searching in Strings</a></td></tr>
<tr><td></td><td valign="top"><a href="Timing-Utilities.html#index-strptime"><code>strptime</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Timing-Utilities.html">Timing Utilities</a></td></tr>
<tr><td></td><td valign="top"><a href="Numerical-Data-and-Strings.html#index-strread"><code>strread</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Numerical-Data-and-Strings.html">Numerical Data and Strings</a></td></tr>
<tr><td></td><td valign="top"><a href="Numerical-Data-and-Strings.html#index-strread-1"><code>strread</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Numerical-Data-and-Strings.html">Numerical Data and Strings</a></td></tr>
<tr><td></td><td valign="top"><a href="Numerical-Data-and-Strings.html#index-strread-2"><code>strread</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Numerical-Data-and-Strings.html">Numerical Data and Strings</a></td></tr>
<tr><td></td><td valign="top"><a href="Numerical-Data-and-Strings.html#index-strread-3"><code>strread</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Numerical-Data-and-Strings.html">Numerical Data and Strings</a></td></tr>
<tr><td></td><td valign="top"><a href="Numerical-Data-and-Strings.html#index-strread-4"><code>strread</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Numerical-Data-and-Strings.html">Numerical Data and Strings</a></td></tr>
<tr><td></td><td valign="top"><a href="Searching-and-Replacing-in-Strings.html#index-strrep"><code>strrep</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Searching-and-Replacing-in-Strings.html">Searching and Replacing in Strings</a></td></tr>
<tr><td></td><td valign="top"><a href="Searching-and-Replacing-in-Strings.html#index-strrep-1"><code>strrep</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Searching-and-Replacing-in-Strings.html">Searching and Replacing in Strings</a></td></tr>
<tr><td></td><td valign="top"><a href="Searching-and-Replacing-in-Strings.html#index-strrep-2"><code>strrep</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Searching-and-Replacing-in-Strings.html">Searching and Replacing in Strings</a></td></tr>
<tr><td></td><td valign="top"><a href="Splitting-and-Joining-Strings.html#index-strsplit"><code>strsplit</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Splitting-and-Joining-Strings.html">Splitting and Joining Strings</a></td></tr>
<tr><td></td><td valign="top"><a href="Splitting-and-Joining-Strings.html#index-strsplit-1"><code>strsplit</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Splitting-and-Joining-Strings.html">Splitting and Joining Strings</a></td></tr>
<tr><td></td><td valign="top"><a href="Splitting-and-Joining-Strings.html#index-strsplit-2"><code>strsplit</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Splitting-and-Joining-Strings.html">Splitting and Joining Strings</a></td></tr>
<tr><td></td><td valign="top"><a href="Splitting-and-Joining-Strings.html#index-strsplit-3"><code>strsplit</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Splitting-and-Joining-Strings.html">Splitting and Joining Strings</a></td></tr>
<tr><td></td><td valign="top"><a href="Splitting-and-Joining-Strings.html#index-strtok"><code>strtok</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Splitting-and-Joining-Strings.html">Splitting and Joining Strings</a></td></tr>
<tr><td></td><td valign="top"><a href="Splitting-and-Joining-Strings.html#index-strtok-1"><code>strtok</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Splitting-and-Joining-Strings.html">Splitting and Joining Strings</a></td></tr>
<tr><td></td><td valign="top"><a href="Common-String-Operations.html#index-strtrim"><code>strtrim</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Common-String-Operations.html">Common String Operations</a></td></tr>
<tr><td></td><td valign="top"><a href="Common-String-Operations.html#index-strtrunc"><code>strtrunc</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Common-String-Operations.html">Common String Operations</a></td></tr>
<tr><td></td><td valign="top"><a href="Creating-Structures.html#index-struct"><code>struct</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Creating-Structures.html">Creating Structures</a></td></tr>
<tr><td></td><td valign="top"><a href="Creating-Structures.html#index-struct-1"><code>struct</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Creating-Structures.html">Creating Structures</a></td></tr>
<tr><td></td><td valign="top"><a href="Creating-Structures.html#index-struct-2"><code>struct</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Creating-Structures.html">Creating Structures</a></td></tr>
<tr><td></td><td valign="top"><a href="Processing-Data-in-Structures.html#index-struct2cell"><code>struct2cell</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Processing-Data-in-Structures.html">Processing Data in Structures</a></td></tr>
<tr><td></td><td valign="top"><a href="Graphics-Objects.html#index-struct2hdl"><code>struct2hdl</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Graphics-Objects.html">Graphics Objects</a></td></tr>
<tr><td></td><td valign="top"><a href="Graphics-Objects.html#index-struct2hdl-1"><code>struct2hdl</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Graphics-Objects.html">Graphics Objects</a></td></tr>
<tr><td></td><td valign="top"><a href="Graphics-Objects.html#index-struct2hdl-2"><code>struct2hdl</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Graphics-Objects.html">Graphics Objects</a></td></tr>
<tr><td></td><td valign="top"><a href="Function-Application.html#index-structfun"><code>structfun</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Function-Application.html">Function Application</a></td></tr>
<tr><td></td><td valign="top"><a href="Function-Application.html#index-structfun-1"><code>structfun</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Function-Application.html">Function Application</a></td></tr>
<tr><td></td><td valign="top"><a href="Function-Application.html#index-structfun-2"><code>structfun</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Function-Application.html">Function Application</a></td></tr>
<tr><td></td><td valign="top"><a href="Function-Application.html#index-structfun-3"><code>structfun</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Function-Application.html">Function Application</a></td></tr>
<tr><td></td><td valign="top"><a href="Basic-Usage-and-Examples.html#index-struct_005flevels_005fto_005fprint"><code>struct_levels_to_print</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Basic-Usage-and-Examples.html">Basic Usage and Examples</a></td></tr>
<tr><td></td><td valign="top"><a href="Basic-Usage-and-Examples.html#index-struct_005flevels_005fto_005fprint-1"><code>struct_levels_to_print</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Basic-Usage-and-Examples.html">Basic Usage and Examples</a></td></tr>
<tr><td></td><td valign="top"><a href="Basic-Usage-and-Examples.html#index-struct_005flevels_005fto_005fprint-2"><code>struct_levels_to_print</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Basic-Usage-and-Examples.html">Basic Usage and Examples</a></td></tr>
<tr><td></td><td valign="top"><a href="Concatenating-Strings.html#index-strvcat"><code>strvcat</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Concatenating-Strings.html">Concatenating Strings</a></td></tr>
<tr><td></td><td valign="top"><a href="Concatenating-Strings.html#index-strvcat-1"><code>strvcat</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Concatenating-Strings.html">Concatenating Strings</a></td></tr>
<tr><td></td><td valign="top"><a href="Concatenating-Strings.html#index-strvcat-2"><code>strvcat</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Concatenating-Strings.html">Concatenating Strings</a></td></tr>
<tr><td></td><td valign="top"><a href="Concatenating-Strings.html#index-strvcat-3"><code>strvcat</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Concatenating-Strings.html">Concatenating Strings</a></td></tr>
<tr><td></td><td valign="top"><a href="Advanced-Indexing.html#index-sub2ind"><code>sub2ind</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Advanced-Indexing.html">Advanced Indexing</a></td></tr>
<tr><td></td><td valign="top"><a href="Advanced-Indexing.html#index-sub2ind-1"><code>sub2ind</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Advanced-Indexing.html">Advanced Indexing</a></td></tr>
<tr><td></td><td valign="top"><a href="Multiple-Plots-on-One-Page.html#index-subplot"><code>subplot</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Multiple-Plots-on-One-Page.html">Multiple Plots on One Page</a></td></tr>
<tr><td></td><td valign="top"><a href="Multiple-Plots-on-One-Page.html#index-subplot-1"><code>subplot</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Multiple-Plots-on-One-Page.html">Multiple Plots on One Page</a></td></tr>
<tr><td></td><td valign="top"><a href="Multiple-Plots-on-One-Page.html#index-subplot-2"><code>subplot</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Multiple-Plots-on-One-Page.html">Multiple Plots on One Page</a></td></tr>
<tr><td></td><td valign="top"><a href="Multiple-Plots-on-One-Page.html#index-subplot-3"><code>subplot</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Multiple-Plots-on-One-Page.html">Multiple Plots on One Page</a></td></tr>
<tr><td></td><td valign="top"><a href="Multiple-Plots-on-One-Page.html#index-subplot-4"><code>subplot</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Multiple-Plots-on-One-Page.html">Multiple Plots on One Page</a></td></tr>
<tr><td></td><td valign="top"><a href="Multiple-Plots-on-One-Page.html#index-subplot-5"><code>subplot</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Multiple-Plots-on-One-Page.html">Multiple Plots on One Page</a></td></tr>
<tr><td></td><td valign="top"><a href="Multiple-Plots-on-One-Page.html#index-subplot-6"><code>subplot</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Multiple-Plots-on-One-Page.html">Multiple Plots on One Page</a></td></tr>
<tr><td></td><td valign="top"><a href="Multiple-Plots-on-One-Page.html#index-subplot-7"><code>subplot</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Multiple-Plots-on-One-Page.html">Multiple Plots on One Page</a></td></tr>
<tr><td></td><td valign="top"><a href="Multiple-Plots-on-One-Page.html#index-subplot-8"><code>subplot</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Multiple-Plots-on-One-Page.html">Multiple Plots on One Page</a></td></tr>
<tr><td></td><td valign="top"><a href="Defining-Indexing-And-Indexed-Assignment.html#index-subsasgn"><code>subsasgn</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Defining-Indexing-And-Indexed-Assignment.html">Defining Indexing And Indexed Assignment</a></td></tr>
<tr><td></td><td valign="top"><a href="Defining-Indexing-And-Indexed-Assignment.html#index-subsindex"><code>subsindex</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Defining-Indexing-And-Indexed-Assignment.html">Defining Indexing And Indexed Assignment</a></td></tr>
<tr><td></td><td valign="top"><a href="Matrix-Factorizations.html#index-subspace"><code>subspace</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Matrix-Factorizations.html">Matrix Factorizations</a></td></tr>
<tr><td></td><td valign="top"><a href="Defining-Indexing-And-Indexed-Assignment.html#index-subsref"><code>subsref</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Defining-Indexing-And-Indexed-Assignment.html">Defining Indexing And Indexed Assignment</a></td></tr>
<tr><td></td><td valign="top"><a href="Splitting-and-Joining-Strings.html#index-substr"><code>substr</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Splitting-and-Joining-Strings.html">Splitting and Joining Strings</a></td></tr>
<tr><td></td><td valign="top"><a href="Splitting-and-Joining-Strings.html#index-substr-1"><code>substr</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Splitting-and-Joining-Strings.html">Splitting and Joining Strings</a></td></tr>
<tr><td></td><td valign="top"><a href="Manipulating-Structures.html#index-substruct"><code>substruct</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Manipulating-Structures.html">Manipulating Structures</a></td></tr>
<tr><td></td><td valign="top"><a href="Sums-and-Products.html#index-sum"><code>sum</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Sums-and-Products.html">Sums and Products</a></td></tr>
<tr><td></td><td valign="top"><a href="Sums-and-Products.html#index-sum-1"><code>sum</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Sums-and-Products.html">Sums and Products</a></td></tr>
<tr><td></td><td valign="top"><a href="Sums-and-Products.html#index-sum-2"><code>sum</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Sums-and-Products.html">Sums and Products</a></td></tr>
<tr><td></td><td valign="top"><a href="Sums-and-Products.html#index-sum-3"><code>sum</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Sums-and-Products.html">Sums and Products</a></td></tr>
<tr><td></td><td valign="top"><a href="Sums-and-Products.html#index-sum-4"><code>sum</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Sums-and-Products.html">Sums and Products</a></td></tr>
<tr><td></td><td valign="top"><a href="Representing-Images.html#index-summer"><code>summer</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Representing-Images.html">Representing Images</a></td></tr>
<tr><td></td><td valign="top"><a href="Representing-Images.html#index-summer-1"><code>summer</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Representing-Images.html">Representing Images</a></td></tr>
<tr><td></td><td valign="top"><a href="Sums-and-Products.html#index-sumsq"><code>sumsq</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Sums-and-Products.html">Sums and Products</a></td></tr>
<tr><td></td><td valign="top"><a href="Sums-and-Products.html#index-sumsq-1"><code>sumsq</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Sums-and-Products.html">Sums and Products</a></td></tr>
<tr><td></td><td valign="top"><a href="Precedence-of-Objects.html#index-superiorto"><code>superiorto</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Precedence-of-Objects.html">Precedence of Objects</a></td></tr>
<tr><td></td><td valign="top"><a href="Getting-Help.html#index-suppress_005fverbose_005fhelp_005fmessage"><code>suppress_verbose_help_message</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Getting-Help.html">Getting Help</a></td></tr>
<tr><td></td><td valign="top"><a href="Getting-Help.html#index-suppress_005fverbose_005fhelp_005fmessage-1"><code>suppress_verbose_help_message</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Getting-Help.html">Getting Help</a></td></tr>
<tr><td></td><td valign="top"><a href="Getting-Help.html#index-suppress_005fverbose_005fhelp_005fmessage-2"><code>suppress_verbose_help_message</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Getting-Help.html">Getting Help</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-surf"><code>surf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-surf-1"><code>surf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-surf-2"><code>surf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-surf-3"><code>surf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-surf-4"><code>surf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-surf-5"><code>surf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Graphics-Objects.html#index-surface"><code>surface</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Graphics-Objects.html">Graphics Objects</a></td></tr>
<tr><td></td><td valign="top"><a href="Graphics-Objects.html#index-surface-1"><code>surface</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Graphics-Objects.html">Graphics Objects</a></td></tr>
<tr><td></td><td valign="top"><a href="Graphics-Objects.html#index-surface-2"><code>surface</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Graphics-Objects.html">Graphics Objects</a></td></tr>
<tr><td></td><td valign="top"><a href="Graphics-Objects.html#index-surface-3"><code>surface</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Graphics-Objects.html">Graphics Objects</a></td></tr>
<tr><td></td><td valign="top"><a href="Graphics-Objects.html#index-surface-4"><code>surface</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Graphics-Objects.html">Graphics Objects</a></td></tr>
<tr><td></td><td valign="top"><a href="Graphics-Objects.html#index-surface-5"><code>surface</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Graphics-Objects.html">Graphics Objects</a></td></tr>
<tr><td></td><td valign="top"><a href="Graphics-Objects.html#index-surface-6"><code>surface</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Graphics-Objects.html">Graphics Objects</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-surfc"><code>surfc</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-surfc-1"><code>surfc</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-surfc-2"><code>surfc</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-surfc-3"><code>surfc</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-surfc-4"><code>surfc</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-surfc-5"><code>surfc</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-surfl"><code>surfl</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-surfl-1"><code>surfl</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-surfl-2"><code>surfl</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-surfl-3"><code>surfl</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-surfl-4"><code>surfl</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-surfl-5"><code>surfl</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-surfl-6"><code>surfl</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-surfl-7"><code>surfl</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-surfnorm"><code>surfnorm</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-surfnorm-1"><code>surfnorm</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-surfnorm-2"><code>surfnorm</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-surfnorm-3"><code>surfnorm</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-surfnorm-4"><code>surfnorm</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Matrix-Factorizations.html#index-svd"><code>svd</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Matrix-Factorizations.html">Matrix Factorizations</a></td></tr>
<tr><td></td><td valign="top"><a href="Matrix-Factorizations.html#index-svd-1"><code>svd</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Matrix-Factorizations.html">Matrix Factorizations</a></td></tr>
<tr><td></td><td valign="top"><a href="Matrix-Factorizations.html#index-svd-2"><code>svd</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Matrix-Factorizations.html">Matrix Factorizations</a></td></tr>
<tr><td></td><td valign="top"><a href="Matrix-Factorizations.html#index-svd-3"><code>svd</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Matrix-Factorizations.html">Matrix Factorizations</a></td></tr>
<tr><td></td><td valign="top"><a href="Sparse-Linear-Algebra.html#index-svds"><code>svds</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Sparse-Linear-Algebra.html">Sparse Linear Algebra</a></td></tr>
<tr><td></td><td valign="top"><a href="Sparse-Linear-Algebra.html#index-svds-1"><code>svds</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Sparse-Linear-Algebra.html">Sparse Linear Algebra</a></td></tr>
<tr><td></td><td valign="top"><a href="Sparse-Linear-Algebra.html#index-svds-2"><code>svds</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Sparse-Linear-Algebra.html">Sparse Linear Algebra</a></td></tr>
<tr><td></td><td valign="top"><a href="Sparse-Linear-Algebra.html#index-svds-3"><code>svds</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Sparse-Linear-Algebra.html">Sparse Linear Algebra</a></td></tr>
<tr><td></td><td valign="top"><a href="Sparse-Linear-Algebra.html#index-svds-4"><code>svds</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Sparse-Linear-Algebra.html">Sparse Linear Algebra</a></td></tr>
<tr><td></td><td valign="top"><a href="Sparse-Linear-Algebra.html#index-svds-5"><code>svds</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Sparse-Linear-Algebra.html">Sparse Linear Algebra</a></td></tr>
<tr><td></td><td valign="top"><a href="Matrix-Factorizations.html#index-svd_005fdriver"><code>svd_driver</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Matrix-Factorizations.html">Matrix Factorizations</a></td></tr>
<tr><td></td><td valign="top"><a href="Matrix-Factorizations.html#index-svd_005fdriver-1"><code>svd_driver</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Matrix-Factorizations.html">Matrix Factorizations</a></td></tr>
<tr><td></td><td valign="top"><a href="Matrix-Factorizations.html#index-svd_005fdriver-2"><code>svd_driver</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Matrix-Factorizations.html">Matrix Factorizations</a></td></tr>
<tr><td></td><td valign="top"><a href="Built_002din-Data-Types.html#index-swapbytes"><code>swapbytes</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Built_002din-Data-Types.html">Built-in Data Types</a></td></tr>
<tr><td></td><td valign="top"><a href="Functions-of-a-Matrix.html#index-sylvester"><code>sylvester</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Functions-of-a-Matrix.html">Functions of a Matrix</a></td></tr>
<tr><td></td><td valign="top"><a href="Mathematical-Considerations.html#index-symamd"><code>symamd</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Mathematical-Considerations.html">Mathematical Considerations</a></td></tr>
<tr><td></td><td valign="top"><a href="Mathematical-Considerations.html#index-symamd-1"><code>symamd</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Mathematical-Considerations.html">Mathematical Considerations</a></td></tr>
<tr><td></td><td valign="top"><a href="Mathematical-Considerations.html#index-symamd-2"><code>symamd</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Mathematical-Considerations.html">Mathematical Considerations</a></td></tr>
<tr><td></td><td valign="top"><a href="Mathematical-Considerations.html#index-symamd-3"><code>symamd</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Mathematical-Considerations.html">Mathematical Considerations</a></td></tr>
<tr><td></td><td valign="top"><a href="Sparse-Linear-Algebra.html#index-symbfact"><code>symbfact</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Sparse-Linear-Algebra.html">Sparse Linear Algebra</a></td></tr>
<tr><td></td><td valign="top"><a href="Sparse-Linear-Algebra.html#index-symbfact-1"><code>symbfact</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Sparse-Linear-Algebra.html">Sparse Linear Algebra</a></td></tr>
<tr><td></td><td valign="top"><a href="Sparse-Linear-Algebra.html#index-symbfact-2"><code>symbfact</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Sparse-Linear-Algebra.html">Sparse Linear Algebra</a></td></tr>
<tr><td></td><td valign="top"><a href="Filesystem-Utilities.html#index-symlink"><code>symlink</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Filesystem-Utilities.html">Filesystem Utilities</a></td></tr>
<tr><td></td><td valign="top"><a href="Filesystem-Utilities.html#index-symlink-1"><code>symlink</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Filesystem-Utilities.html">Filesystem Utilities</a></td></tr>
<tr><td></td><td valign="top"><a href="Mathematical-Considerations.html#index-symrcm"><code>symrcm</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Mathematical-Considerations.html">Mathematical Considerations</a></td></tr>
<tr><td></td><td valign="top"><a href="Function-Handles.html#index-symvar"><code>symvar</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Function-Handles.html">Function Handles</a></td></tr>
<tr><td></td><td valign="top"><a href="Signal-Processing.html#index-synthesis"><code>synthesis</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Signal-Processing.html">Signal Processing</a></td></tr>
<tr><td></td><td valign="top"><a href="Controlling-Subprocesses.html#index-system"><code>system</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Controlling-Subprocesses.html">Controlling Subprocesses</a></td></tr>
<tr><td></td><td valign="top"><a href="Controlling-Subprocesses.html#index-system-1"><code>system</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Controlling-Subprocesses.html">Controlling Subprocesses</a></td></tr>
<tr><td></td><td valign="top"><a href="Controlling-Subprocesses.html#index-system-2"><code>system</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Controlling-Subprocesses.html">Controlling Subprocesses</a></td></tr>
<tr><td></td><td valign="top"><a href="Controlling-Subprocesses.html#index-system-3"><code>system</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Controlling-Subprocesses.html">Controlling Subprocesses</a></td></tr>
<tr><td></td><td valign="top"><a href="Filesystem-Utilities.html#index-S_005fISBLK"><code>S_ISBLK</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Filesystem-Utilities.html">Filesystem Utilities</a></td></tr>
<tr><td></td><td valign="top"><a href="Filesystem-Utilities.html#index-S_005fISCHR"><code>S_ISCHR</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Filesystem-Utilities.html">Filesystem Utilities</a></td></tr>
<tr><td></td><td valign="top"><a href="Filesystem-Utilities.html#index-S_005fISDIR"><code>S_ISDIR</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Filesystem-Utilities.html">Filesystem Utilities</a></td></tr>
<tr><td></td><td valign="top"><a href="Filesystem-Utilities.html#index-S_005fISFIFO"><code>S_ISFIFO</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Filesystem-Utilities.html">Filesystem Utilities</a></td></tr>
<tr><td></td><td valign="top"><a href="Filesystem-Utilities.html#index-S_005fISLNK"><code>S_ISLNK</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Filesystem-Utilities.html">Filesystem Utilities</a></td></tr>
<tr><td></td><td valign="top"><a href="Filesystem-Utilities.html#index-S_005fISREG"><code>S_ISREG</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Filesystem-Utilities.html">Filesystem Utilities</a></td></tr>
<tr><td></td><td valign="top"><a href="Filesystem-Utilities.html#index-S_005fISSOCK"><code>S_ISSOCK</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Filesystem-Utilities.html">Filesystem Utilities</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th id="Function-Index_fn_letter-T">T</th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="Trigonometry.html#index-tan"><code>tan</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Trigonometry.html">Trigonometry</a></td></tr>
<tr><td></td><td valign="top"><a href="Trigonometry.html#index-tand"><code>tand</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Trigonometry.html">Trigonometry</a></td></tr>
<tr><td></td><td valign="top"><a href="Trigonometry.html#index-tanh"><code>tanh</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Trigonometry.html">Trigonometry</a></td></tr>
<tr><td></td><td valign="top"><a href="File-Archiving-Utilities.html#index-tar"><code>tar</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="File-Archiving-Utilities.html">File Archiving Utilities</a></td></tr>
<tr><td></td><td valign="top"><a href="File-Archiving-Utilities.html#index-tar-1"><code>tar</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="File-Archiving-Utilities.html">File Archiving Utilities</a></td></tr>
<tr><td></td><td valign="top"><a href="Temporary-Files.html#index-tempdir"><code>tempdir</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Temporary-Files.html">Temporary Files</a></td></tr>
<tr><td></td><td valign="top"><a href="Temporary-Files.html#index-tempname"><code>tempname</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Temporary-Files.html">Temporary Files</a></td></tr>
<tr><td></td><td valign="top"><a href="Temporary-Files.html#index-tempname-1"><code>tempname</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Temporary-Files.html">Temporary Files</a></td></tr>
<tr><td></td><td valign="top"><a href="Temporary-Files.html#index-tempname-2"><code>tempname</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Temporary-Files.html">Temporary Files</a></td></tr>
<tr><td></td><td valign="top"><a href="Terminal-Output.html#index-terminal_005fsize"><code>terminal_size</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Terminal-Output.html">Terminal Output</a></td></tr>
<tr><td></td><td valign="top"><a href="Test-Functions.html#index-test"><code>test</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Test-Functions.html">Test Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Test-Functions.html#index-test-1"><code>test</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Test-Functions.html">Test Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Test-Functions.html#index-test-2"><code>test</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Test-Functions.html">Test Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Test-Functions.html#index-test-3"><code>test</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Test-Functions.html">Test Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Test-Functions.html#index-test-4"><code>test</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Test-Functions.html">Test Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Test-Functions.html#index-test-5"><code>test</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Test-Functions.html">Test Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Test-Functions.html#index-test-6"><code>test</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Test-Functions.html">Test Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Test-Functions.html#index-test-7"><code>test</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Test-Functions.html">Test Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Test-Functions.html#index-test-8"><code>test</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Test-Functions.html">Test Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Plotting-the-Triangulation.html#index-tetramesh"><code>tetramesh</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Plotting-the-Triangulation.html">Plotting the Triangulation</a></td></tr>
<tr><td></td><td valign="top"><a href="Plotting-the-Triangulation.html#index-tetramesh-1"><code>tetramesh</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Plotting-the-Triangulation.html">Plotting the Triangulation</a></td></tr>
<tr><td></td><td valign="top"><a href="Plotting-the-Triangulation.html#index-tetramesh-2"><code>tetramesh</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Plotting-the-Triangulation.html">Plotting the Triangulation</a></td></tr>
<tr><td></td><td valign="top"><a href="Plotting-the-Triangulation.html#index-tetramesh-3"><code>tetramesh</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Plotting-the-Triangulation.html">Plotting the Triangulation</a></td></tr>
<tr><td></td><td valign="top"><a href="Getting-Help.html#index-texi_005fmacros_005ffile"><code>texi_macros_file</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Getting-Help.html">Getting Help</a></td></tr>
<tr><td></td><td valign="top"><a href="Getting-Help.html#index-texi_005fmacros_005ffile-1"><code>texi_macros_file</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Getting-Help.html">Getting Help</a></td></tr>
<tr><td></td><td valign="top"><a href="Getting-Help.html#index-texi_005fmacros_005ffile-2"><code>texi_macros_file</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Getting-Help.html">Getting Help</a></td></tr>
<tr><td></td><td valign="top"><a href="Plot-Annotations.html#index-text"><code>text</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Plot-Annotations.html">Plot Annotations</a></td></tr>
<tr><td></td><td valign="top"><a href="Plot-Annotations.html#index-text-1"><code>text</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Plot-Annotations.html">Plot Annotations</a></td></tr>
<tr><td></td><td valign="top"><a href="Plot-Annotations.html#index-text-2"><code>text</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Plot-Annotations.html">Plot Annotations</a></td></tr>
<tr><td></td><td valign="top"><a href="Plot-Annotations.html#index-text-3"><code>text</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Plot-Annotations.html">Plot Annotations</a></td></tr>
<tr><td></td><td valign="top"><a href="Plot-Annotations.html#index-text-4"><code>text</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Plot-Annotations.html">Plot Annotations</a></td></tr>
<tr><td></td><td valign="top"><a href="Simple-File-I_002fO.html#index-textread"><code>textread</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Simple-File-I_002fO.html">Simple File I/O</a></td></tr>
<tr><td></td><td valign="top"><a href="Simple-File-I_002fO.html#index-textread-1"><code>textread</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Simple-File-I_002fO.html">Simple File I/O</a></td></tr>
<tr><td></td><td valign="top"><a href="Simple-File-I_002fO.html#index-textread-2"><code>textread</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Simple-File-I_002fO.html">Simple File I/O</a></td></tr>
<tr><td></td><td valign="top"><a href="Simple-File-I_002fO.html#index-textread-3"><code>textread</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Simple-File-I_002fO.html">Simple File I/O</a></td></tr>
<tr><td></td><td valign="top"><a href="Simple-File-I_002fO.html#index-textread-4"><code>textread</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Simple-File-I_002fO.html">Simple File I/O</a></td></tr>
<tr><td></td><td valign="top"><a href="Simple-File-I_002fO.html#index-textscan"><code>textscan</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Simple-File-I_002fO.html">Simple File I/O</a></td></tr>
<tr><td></td><td valign="top"><a href="Simple-File-I_002fO.html#index-textscan-1"><code>textscan</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Simple-File-I_002fO.html">Simple File I/O</a></td></tr>
<tr><td></td><td valign="top"><a href="Simple-File-I_002fO.html#index-textscan-2"><code>textscan</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Simple-File-I_002fO.html">Simple File I/O</a></td></tr>
<tr><td></td><td valign="top"><a href="Simple-File-I_002fO.html#index-textscan-3"><code>textscan</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Simple-File-I_002fO.html">Simple File I/O</a></td></tr>
<tr><td></td><td valign="top"><a href="Simple-File-I_002fO.html#index-textscan-4"><code>textscan</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Simple-File-I_002fO.html">Simple File I/O</a></td></tr>
<tr><td></td><td valign="top"><a href="Simple-File-I_002fO.html#index-textscan-5"><code>textscan</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Simple-File-I_002fO.html">Simple File I/O</a></td></tr>
<tr><td></td><td valign="top"><a href="Specialized-Solvers.html#index-tfqmr"><code>tfqmr</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Specialized-Solvers.html">Specialized Solvers</a></td></tr>
<tr><td></td><td valign="top"><a href="Specialized-Solvers.html#index-tfqmr-1"><code>tfqmr</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Specialized-Solvers.html">Specialized Solvers</a></td></tr>
<tr><td></td><td valign="top"><a href="Specialized-Solvers.html#index-tfqmr-2"><code>tfqmr</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Specialized-Solvers.html">Specialized Solvers</a></td></tr>
<tr><td></td><td valign="top"><a href="Axis-Configuration.html#index-thetaticks"><code>thetaticks</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Axis-Configuration.html">Axis Configuration</a></td></tr>
<tr><td></td><td valign="top"><a href="Timing-Utilities.html#index-tic"><code>tic</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Timing-Utilities.html">Timing Utilities</a></td></tr>
<tr><td></td><td valign="top"><a href="Timing-Utilities.html#index-tic-1"><code>tic</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Timing-Utilities.html">Timing Utilities</a></td></tr>
<tr><td></td><td valign="top"><a href="Filesystem-Utilities.html#index-tilde_005fexpand"><code>tilde_expand</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Filesystem-Utilities.html">Filesystem Utilities</a></td></tr>
<tr><td></td><td valign="top"><a href="Filesystem-Utilities.html#index-tilde_005fexpand-1"><code>tilde_expand</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Filesystem-Utilities.html">Filesystem Utilities</a></td></tr>
<tr><td></td><td valign="top"><a href="Timing-Utilities.html#index-time"><code>time</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Timing-Utilities.html">Timing Utilities</a></td></tr>
<tr><td></td><td valign="top"><a href="Arithmetic-Ops.html#index-times"><code>times</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Arithmetic-Ops.html">Arithmetic Ops</a></td></tr>
<tr><td></td><td valign="top"><a href="Arithmetic-Ops.html#index-times-1"><code>times</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Arithmetic-Ops.html">Arithmetic Ops</a></td></tr>
<tr><td></td><td valign="top"><a href="Plot-Annotations.html#index-title"><code>title</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Plot-Annotations.html">Plot Annotations</a></td></tr>
<tr><td></td><td valign="top"><a href="Plot-Annotations.html#index-title-1"><code>title</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Plot-Annotations.html">Plot Annotations</a></td></tr>
<tr><td></td><td valign="top"><a href="Plot-Annotations.html#index-title-2"><code>title</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Plot-Annotations.html">Plot Annotations</a></td></tr>
<tr><td></td><td valign="top"><a href="Plot-Annotations.html#index-title-3"><code>title</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Plot-Annotations.html">Plot Annotations</a></td></tr>
<tr><td></td><td valign="top"><a href="Temporary-Files.html#index-tmpfile"><code>tmpfile</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Temporary-Files.html">Temporary Files</a></td></tr>
<tr><td></td><td valign="top"><a href="Timing-Utilities.html#index-toc"><code>toc</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Timing-Utilities.html">Timing Utilities</a></td></tr>
<tr><td></td><td valign="top"><a href="Timing-Utilities.html#index-toc-1"><code>toc</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Timing-Utilities.html">Timing Utilities</a></td></tr>
<tr><td></td><td valign="top"><a href="Timing-Utilities.html#index-toc-2"><code>toc</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Timing-Utilities.html">Timing Utilities</a></td></tr>
<tr><td></td><td valign="top"><a href="Famous-Matrices.html#index-toeplitz"><code>toeplitz</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Famous-Matrices.html">Famous Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Famous-Matrices.html#index-toeplitz-1"><code>toeplitz</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Famous-Matrices.html">Famous Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Common-String-Operations.html#index-tolower"><code>tolower</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Common-String-Operations.html">Common String Operations</a></td></tr>
<tr><td></td><td valign="top"><a href="Common-String-Operations.html#index-toupper"><code>toupper</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Common-String-Operations.html">Common String Operations</a></td></tr>
<tr><td></td><td valign="top"><a href="Basic-Matrix-Functions.html#index-trace"><code>trace</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Basic-Matrix-Functions.html">Basic Matrix Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Arithmetic-Ops.html#index-transpose-2"><code>transpose</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Arithmetic-Ops.html">Arithmetic Ops</a></td></tr>
<tr><td></td><td valign="top"><a href="Functions-of-One-Variable.html#index-trapz"><code>trapz</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Functions-of-One-Variable.html">Functions of One Variable</a></td></tr>
<tr><td></td><td valign="top"><a href="Functions-of-One-Variable.html#index-trapz-1"><code>trapz</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Functions-of-One-Variable.html">Functions of One Variable</a></td></tr>
<tr><td></td><td valign="top"><a href="Functions-of-One-Variable.html#index-trapz-2"><code>trapz</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Functions-of-One-Variable.html">Functions of One Variable</a></td></tr>
<tr><td></td><td valign="top"><a href="Information.html#index-treelayout"><code>treelayout</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Information.html">Information</a></td></tr>
<tr><td></td><td valign="top"><a href="Information.html#index-treelayout-1"><code>treelayout</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Information.html">Information</a></td></tr>
<tr><td></td><td valign="top"><a href="Information.html#index-treeplot"><code>treeplot</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Information.html">Information</a></td></tr>
<tr><td></td><td valign="top"><a href="Information.html#index-treeplot-1"><code>treeplot</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Information.html">Information</a></td></tr>
<tr><td></td><td valign="top"><a href="Rearranging-Matrices.html#index-tril"><code>tril</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Rearranging-Matrices.html">Rearranging Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Rearranging-Matrices.html#index-tril-1"><code>tril</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Rearranging-Matrices.html">Rearranging Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Rearranging-Matrices.html#index-tril-2"><code>tril</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Rearranging-Matrices.html">Rearranging Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Plotting-the-Triangulation.html#index-trimesh"><code>trimesh</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Plotting-the-Triangulation.html">Plotting the Triangulation</a></td></tr>
<tr><td></td><td valign="top"><a href="Plotting-the-Triangulation.html#index-trimesh-1"><code>trimesh</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Plotting-the-Triangulation.html">Plotting the Triangulation</a></td></tr>
<tr><td></td><td valign="top"><a href="Plotting-the-Triangulation.html#index-trimesh-2"><code>trimesh</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Plotting-the-Triangulation.html">Plotting the Triangulation</a></td></tr>
<tr><td></td><td valign="top"><a href="Plotting-the-Triangulation.html#index-trimesh-3"><code>trimesh</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Plotting-the-Triangulation.html">Plotting the Triangulation</a></td></tr>
<tr><td></td><td valign="top"><a href="Plotting-the-Triangulation.html#index-trimesh-4"><code>trimesh</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Plotting-the-Triangulation.html">Plotting the Triangulation</a></td></tr>
<tr><td></td><td valign="top"><a href="Functions-of-Multiple-Variables.html#index-triplequad"><code>triplequad</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Functions-of-Multiple-Variables.html">Functions of Multiple Variables</a></td></tr>
<tr><td></td><td valign="top"><a href="Functions-of-Multiple-Variables.html#index-triplequad-1"><code>triplequad</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Functions-of-Multiple-Variables.html">Functions of Multiple Variables</a></td></tr>
<tr><td></td><td valign="top"><a href="Functions-of-Multiple-Variables.html#index-triplequad-2"><code>triplequad</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Functions-of-Multiple-Variables.html">Functions of Multiple Variables</a></td></tr>
<tr><td></td><td valign="top"><a href="Functions-of-Multiple-Variables.html#index-triplequad-3"><code>triplequad</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Functions-of-Multiple-Variables.html">Functions of Multiple Variables</a></td></tr>
<tr><td></td><td valign="top"><a href="Plotting-the-Triangulation.html#index-triplot"><code>triplot</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Plotting-the-Triangulation.html">Plotting the Triangulation</a></td></tr>
<tr><td></td><td valign="top"><a href="Plotting-the-Triangulation.html#index-triplot-1"><code>triplot</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Plotting-the-Triangulation.html">Plotting the Triangulation</a></td></tr>
<tr><td></td><td valign="top"><a href="Plotting-the-Triangulation.html#index-triplot-2"><code>triplot</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Plotting-the-Triangulation.html">Plotting the Triangulation</a></td></tr>
<tr><td></td><td valign="top"><a href="Plotting-the-Triangulation.html#index-trisurf"><code>trisurf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Plotting-the-Triangulation.html">Plotting the Triangulation</a></td></tr>
<tr><td></td><td valign="top"><a href="Plotting-the-Triangulation.html#index-trisurf-1"><code>trisurf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Plotting-the-Triangulation.html">Plotting the Triangulation</a></td></tr>
<tr><td></td><td valign="top"><a href="Plotting-the-Triangulation.html#index-trisurf-2"><code>trisurf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Plotting-the-Triangulation.html">Plotting the Triangulation</a></td></tr>
<tr><td></td><td valign="top"><a href="Plotting-the-Triangulation.html#index-trisurf-3"><code>trisurf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Plotting-the-Triangulation.html">Plotting the Triangulation</a></td></tr>
<tr><td></td><td valign="top"><a href="Rearranging-Matrices.html#index-triu"><code>triu</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Rearranging-Matrices.html">Rearranging Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Rearranging-Matrices.html#index-triu-1"><code>triu</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Rearranging-Matrices.html">Rearranging Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Rearranging-Matrices.html#index-triu-2"><code>triu</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Rearranging-Matrices.html">Rearranging Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Logical-Values.html#index-true"><code>true</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Logical-Values.html">Logical Values</a></td></tr>
<tr><td></td><td valign="top"><a href="Logical-Values.html#index-true-1"><code>true</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Logical-Values.html">Logical Values</a></td></tr>
<tr><td></td><td valign="top"><a href="Logical-Values.html#index-true-2"><code>true</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Logical-Values.html">Logical Values</a></td></tr>
<tr><td></td><td valign="top"><a href="Logical-Values.html#index-true-3"><code>true</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Logical-Values.html">Logical Values</a></td></tr>
<tr><td></td><td valign="top"><a href="Identifying-Points-in-Triangulation.html#index-tsearch"><code>tsearch</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Identifying-Points-in-Triangulation.html">Identifying Points in Triangulation</a></td></tr>
<tr><td></td><td valign="top"><a href="Identifying-Points-in-Triangulation.html#index-tsearchn"><code>tsearchn</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Identifying-Points-in-Triangulation.html">Identifying Points in Triangulation</a></td></tr>
<tr><td></td><td valign="top"><a href="Identifying-Points-in-Triangulation.html#index-tsearchn-1"><code>tsearchn</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Identifying-Points-in-Triangulation.html">Identifying Points in Triangulation</a></td></tr>
<tr><td></td><td valign="top"><a href="Representing-Images.html#index-turbo"><code>turbo</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Representing-Images.html">Representing Images</a></td></tr>
<tr><td></td><td valign="top"><a href="Representing-Images.html#index-turbo-1"><code>turbo</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Representing-Images.html">Representing Images</a></td></tr>
<tr><td></td><td valign="top"><a href="Status-of-Variables.html#index-type"><code>type</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Status-of-Variables.html">Status of Variables</a></td></tr>
<tr><td></td><td valign="top"><a href="Status-of-Variables.html#index-type-1"><code>type</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Status-of-Variables.html">Status of Variables</a></td></tr>
<tr><td></td><td valign="top"><a href="Status-of-Variables.html#index-type-2"><code>type</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Status-of-Variables.html">Status of Variables</a></td></tr>
<tr><td></td><td valign="top"><a href="Built_002din-Data-Types.html#index-typecast"><code>typecast</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Built_002din-Data-Types.html">Built-in Data Types</a></td></tr>
<tr><td></td><td valign="top"><a href="Data-Types.html#index-typeinfo"><code>typeinfo</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Data-Types.html">Data Types</a></td></tr>
<tr><td></td><td valign="top"><a href="Data-Types.html#index-typeinfo-1"><code>typeinfo</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Data-Types.html">Data Types</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th id="Function-Index_fn_letter-U">U</th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="UI-Elements.html#index-uibuttongroup"><code>uibuttongroup</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="UI-Elements.html">UI Elements</a></td></tr>
<tr><td></td><td valign="top"><a href="UI-Elements.html#index-uibuttongroup-1"><code>uibuttongroup</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="UI-Elements.html">UI Elements</a></td></tr>
<tr><td></td><td valign="top"><a href="UI-Elements.html#index-uibuttongroup-2"><code>uibuttongroup</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="UI-Elements.html">UI Elements</a></td></tr>
<tr><td></td><td valign="top"><a href="UI-Elements.html#index-uicontextmenu"><code>uicontextmenu</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="UI-Elements.html">UI Elements</a></td></tr>
<tr><td></td><td valign="top"><a href="UI-Elements.html#index-uicontextmenu-1"><code>uicontextmenu</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="UI-Elements.html">UI Elements</a></td></tr>
<tr><td></td><td valign="top"><a href="UI-Elements.html#index-uicontrol"><code>uicontrol</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="UI-Elements.html">UI Elements</a></td></tr>
<tr><td></td><td valign="top"><a href="UI-Elements.html#index-uicontrol-1"><code>uicontrol</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="UI-Elements.html">UI Elements</a></td></tr>
<tr><td></td><td valign="top"><a href="UI-Elements.html#index-uicontrol-2"><code>uicontrol</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="UI-Elements.html">UI Elements</a></td></tr>
<tr><td></td><td valign="top"><a href="I_002fO-Dialogs.html#index-uigetdir"><code>uigetdir</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="I_002fO-Dialogs.html">I/O Dialogs</a></td></tr>
<tr><td></td><td valign="top"><a href="I_002fO-Dialogs.html#index-uigetdir-1"><code>uigetdir</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="I_002fO-Dialogs.html">I/O Dialogs</a></td></tr>
<tr><td></td><td valign="top"><a href="I_002fO-Dialogs.html#index-uigetdir-2"><code>uigetdir</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="I_002fO-Dialogs.html">I/O Dialogs</a></td></tr>
<tr><td></td><td valign="top"><a href="I_002fO-Dialogs.html#index-uigetfile"><code>uigetfile</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="I_002fO-Dialogs.html">I/O Dialogs</a></td></tr>
<tr><td></td><td valign="top"><a href="I_002fO-Dialogs.html#index-uigetfile-1"><code>uigetfile</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="I_002fO-Dialogs.html">I/O Dialogs</a></td></tr>
<tr><td></td><td valign="top"><a href="I_002fO-Dialogs.html#index-uigetfile-2"><code>uigetfile</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="I_002fO-Dialogs.html">I/O Dialogs</a></td></tr>
<tr><td></td><td valign="top"><a href="I_002fO-Dialogs.html#index-uigetfile-3"><code>uigetfile</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="I_002fO-Dialogs.html">I/O Dialogs</a></td></tr>
<tr><td></td><td valign="top"><a href="I_002fO-Dialogs.html#index-uigetfile-4"><code>uigetfile</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="I_002fO-Dialogs.html">I/O Dialogs</a></td></tr>
<tr><td></td><td valign="top"><a href="UI-Elements.html#index-uimenu"><code>uimenu</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="UI-Elements.html">UI Elements</a></td></tr>
<tr><td></td><td valign="top"><a href="UI-Elements.html#index-uimenu-1"><code>uimenu</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="UI-Elements.html">UI Elements</a></td></tr>
<tr><td></td><td valign="top"><a href="Integer-Data-Types.html#index-uint16"><code>uint16</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Integer-Data-Types.html">Integer Data Types</a></td></tr>
<tr><td></td><td valign="top"><a href="Integer-Data-Types.html#index-uint32"><code>uint32</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Integer-Data-Types.html">Integer Data Types</a></td></tr>
<tr><td></td><td valign="top"><a href="Integer-Data-Types.html#index-uint64"><code>uint64</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Integer-Data-Types.html">Integer Data Types</a></td></tr>
<tr><td></td><td valign="top"><a href="Integer-Data-Types.html#index-uint8"><code>uint8</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Integer-Data-Types.html">Integer Data Types</a></td></tr>
<tr><td></td><td valign="top"><a href="UI-Elements.html#index-uipanel"><code>uipanel</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="UI-Elements.html">UI Elements</a></td></tr>
<tr><td></td><td valign="top"><a href="UI-Elements.html#index-uipanel-1"><code>uipanel</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="UI-Elements.html">UI Elements</a></td></tr>
<tr><td></td><td valign="top"><a href="UI-Elements.html#index-uipanel-2"><code>uipanel</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="UI-Elements.html">UI Elements</a></td></tr>
<tr><td></td><td valign="top"><a href="UI-Elements.html#index-uipushtool"><code>uipushtool</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="UI-Elements.html">UI Elements</a></td></tr>
<tr><td></td><td valign="top"><a href="UI-Elements.html#index-uipushtool-1"><code>uipushtool</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="UI-Elements.html">UI Elements</a></td></tr>
<tr><td></td><td valign="top"><a href="UI-Elements.html#index-uipushtool-2"><code>uipushtool</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="UI-Elements.html">UI Elements</a></td></tr>
<tr><td></td><td valign="top"><a href="I_002fO-Dialogs.html#index-uiputfile"><code>uiputfile</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="I_002fO-Dialogs.html">I/O Dialogs</a></td></tr>
<tr><td></td><td valign="top"><a href="I_002fO-Dialogs.html#index-uiputfile-1"><code>uiputfile</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="I_002fO-Dialogs.html">I/O Dialogs</a></td></tr>
<tr><td></td><td valign="top"><a href="I_002fO-Dialogs.html#index-uiputfile-2"><code>uiputfile</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="I_002fO-Dialogs.html">I/O Dialogs</a></td></tr>
<tr><td></td><td valign="top"><a href="I_002fO-Dialogs.html#index-uiputfile-3"><code>uiputfile</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="I_002fO-Dialogs.html">I/O Dialogs</a></td></tr>
<tr><td></td><td valign="top"><a href="GUI-Utility-Functions.html#index-uiresume"><code>uiresume</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="GUI-Utility-Functions.html">GUI Utility Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="I_002fO-Dialogs.html#index-uisetfont"><code>uisetfont</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="I_002fO-Dialogs.html">I/O Dialogs</a></td></tr>
<tr><td></td><td valign="top"><a href="I_002fO-Dialogs.html#index-uisetfont-1"><code>uisetfont</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="I_002fO-Dialogs.html">I/O Dialogs</a></td></tr>
<tr><td></td><td valign="top"><a href="I_002fO-Dialogs.html#index-uisetfont-2"><code>uisetfont</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="I_002fO-Dialogs.html">I/O Dialogs</a></td></tr>
<tr><td></td><td valign="top"><a href="I_002fO-Dialogs.html#index-uisetfont-3"><code>uisetfont</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="I_002fO-Dialogs.html">I/O Dialogs</a></td></tr>
<tr><td></td><td valign="top"><a href="I_002fO-Dialogs.html#index-uisetfont-4"><code>uisetfont</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="I_002fO-Dialogs.html">I/O Dialogs</a></td></tr>
<tr><td></td><td valign="top"><a href="UI-Elements.html#index-uitable"><code>uitable</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="UI-Elements.html">UI Elements</a></td></tr>
<tr><td></td><td valign="top"><a href="UI-Elements.html#index-uitable-1"><code>uitable</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="UI-Elements.html">UI Elements</a></td></tr>
<tr><td></td><td valign="top"><a href="UI-Elements.html#index-uitoggletool"><code>uitoggletool</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="UI-Elements.html">UI Elements</a></td></tr>
<tr><td></td><td valign="top"><a href="UI-Elements.html#index-uitoggletool-1"><code>uitoggletool</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="UI-Elements.html">UI Elements</a></td></tr>
<tr><td></td><td valign="top"><a href="UI-Elements.html#index-uitoggletool-2"><code>uitoggletool</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="UI-Elements.html">UI Elements</a></td></tr>
<tr><td></td><td valign="top"><a href="UI-Elements.html#index-uitoolbar"><code>uitoolbar</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="UI-Elements.html">UI Elements</a></td></tr>
<tr><td></td><td valign="top"><a href="UI-Elements.html#index-uitoolbar-1"><code>uitoolbar</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="UI-Elements.html">UI Elements</a></td></tr>
<tr><td></td><td valign="top"><a href="UI-Elements.html#index-uitoolbar-2"><code>uitoolbar</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="UI-Elements.html">UI Elements</a></td></tr>
<tr><td></td><td valign="top"><a href="GUI-Utility-Functions.html#index-uiwait"><code>uiwait</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="GUI-Utility-Functions.html">GUI Utility Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="GUI-Utility-Functions.html#index-uiwait-1"><code>uiwait</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="GUI-Utility-Functions.html">GUI Utility Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="GUI-Utility-Functions.html#index-uiwait-2"><code>uiwait</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="GUI-Utility-Functions.html">GUI Utility Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Filesystem-Utilities.html#index-umask"><code>umask</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Filesystem-Utilities.html">Filesystem Utilities</a></td></tr>
<tr><td></td><td valign="top"><a href="Arithmetic-Ops.html#index-uminus"><code>uminus</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Arithmetic-Ops.html">Arithmetic Ops</a></td></tr>
<tr><td></td><td valign="top"><a href="System-Information.html#index-uname"><code>uname</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="System-Information.html">System Information</a></td></tr>
<tr><td></td><td valign="top"><a href="Common-String-Operations.html#index-undo_005fstring_005fescapes"><code>undo_string_escapes</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Common-String-Operations.html">Common String Operations</a></td></tr>
<tr><td></td><td valign="top"><a href="String-encoding.html#index-unicode2native"><code>unicode2native</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="String-encoding.html">String encoding</a></td></tr>
<tr><td></td><td valign="top"><a href="String-encoding.html#index-unicode2native-1"><code>unicode2native</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="String-encoding.html">String encoding</a></td></tr>
<tr><td></td><td valign="top"><a href="Searching-in-Strings.html#index-unicode_005fidx"><code>unicode_idx</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Searching-in-Strings.html">Searching in Strings</a></td></tr>
<tr><td></td><td valign="top"><a href="Set-Operations.html#index-union"><code>union</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Set-Operations.html">Set Operations</a></td></tr>
<tr><td></td><td valign="top"><a href="Set-Operations.html#index-union-1"><code>union</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Set-Operations.html">Set Operations</a></td></tr>
<tr><td></td><td valign="top"><a href="Set-Operations.html#index-union-2"><code>union</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Set-Operations.html">Set Operations</a></td></tr>
<tr><td></td><td valign="top"><a href="Set-Operations.html#index-union-3"><code>union</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Set-Operations.html">Set Operations</a></td></tr>
<tr><td></td><td valign="top"><a href="Set-Operations.html#index-union-4"><code>union</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Set-Operations.html">Set Operations</a></td></tr>
<tr><td></td><td valign="top"><a href="Set-Operations.html#index-union-5"><code>union</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Set-Operations.html">Set Operations</a></td></tr>
<tr><td></td><td valign="top"><a href="Sets.html#index-unique"><code>unique</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Sets.html">Sets</a></td></tr>
<tr><td></td><td valign="top"><a href="Sets.html#index-unique-1"><code>unique</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Sets.html">Sets</a></td></tr>
<tr><td></td><td valign="top"><a href="Sets.html#index-unique-2"><code>unique</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Sets.html">Sets</a></td></tr>
<tr><td></td><td valign="top"><a href="Sets.html#index-unique-3"><code>unique</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Sets.html">Sets</a></td></tr>
<tr><td></td><td valign="top"><a href="Sets.html#index-unique-4"><code>unique</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Sets.html">Sets</a></td></tr>
<tr><td></td><td valign="top"><a href="Sets.html#index-unique-5"><code>unique</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Sets.html">Sets</a></td></tr>
<tr><td></td><td valign="top"><a href="Sets.html#index-unique-6"><code>unique</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Sets.html">Sets</a></td></tr>
<tr><td></td><td valign="top"><a href="Sets.html#index-unique-7"><code>unique</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Sets.html">Sets</a></td></tr>
<tr><td></td><td valign="top"><a href="Sets.html#index-uniquetol"><code>uniquetol</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Sets.html">Sets</a></td></tr>
<tr><td></td><td valign="top"><a href="Sets.html#index-uniquetol-1"><code>uniquetol</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Sets.html">Sets</a></td></tr>
<tr><td></td><td valign="top"><a href="Sets.html#index-uniquetol-2"><code>uniquetol</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Sets.html">Sets</a></td></tr>
<tr><td></td><td valign="top"><a href="Sets.html#index-uniquetol-3"><code>uniquetol</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Sets.html">Sets</a></td></tr>
<tr><td></td><td valign="top"><a href="Controlling-Subprocesses.html#index-unix"><code>unix</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Controlling-Subprocesses.html">Controlling Subprocesses</a></td></tr>
<tr><td></td><td valign="top"><a href="Controlling-Subprocesses.html#index-unix-1"><code>unix</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Controlling-Subprocesses.html">Controlling Subprocesses</a></td></tr>
<tr><td></td><td valign="top"><a href="Controlling-Subprocesses.html#index-unix-2"><code>unix</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Controlling-Subprocesses.html">Controlling Subprocesses</a></td></tr>
<tr><td></td><td valign="top"><a href="Controlling-Subprocesses.html#index-unix-3"><code>unix</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Controlling-Subprocesses.html">Controlling Subprocesses</a></td></tr>
<tr><td></td><td valign="top"><a href="Filesystem-Utilities.html#index-unlink"><code>unlink</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Filesystem-Utilities.html">Filesystem Utilities</a></td></tr>
<tr><td></td><td valign="top"><a href="Filesystem-Utilities.html#index-unlink-1"><code>unlink</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Filesystem-Utilities.html">Filesystem Utilities</a></td></tr>
<tr><td></td><td valign="top"><a href="Polynomial-Interpolation.html#index-unmkpp"><code>unmkpp</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Polynomial-Interpolation.html">Polynomial Interpolation</a></td></tr>
<tr><td></td><td valign="top"><a href="File-Archiving-Utilities.html#index-unpack"><code>unpack</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="File-Archiving-Utilities.html">File Archiving Utilities</a></td></tr>
<tr><td></td><td valign="top"><a href="File-Archiving-Utilities.html#index-unpack-1"><code>unpack</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="File-Archiving-Utilities.html">File Archiving Utilities</a></td></tr>
<tr><td></td><td valign="top"><a href="File-Archiving-Utilities.html#index-unpack-2"><code>unpack</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="File-Archiving-Utilities.html">File Archiving Utilities</a></td></tr>
<tr><td></td><td valign="top"><a href="Environment-Variables.html#index-unsetenv"><code>unsetenv</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Environment-Variables.html">Environment Variables</a></td></tr>
<tr><td></td><td valign="top"><a href="Common-String-Operations.html#index-untabify"><code>untabify</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Common-String-Operations.html">Common String Operations</a></td></tr>
<tr><td></td><td valign="top"><a href="Common-String-Operations.html#index-untabify-1"><code>untabify</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Common-String-Operations.html">Common String Operations</a></td></tr>
<tr><td></td><td valign="top"><a href="Common-String-Operations.html#index-untabify-2"><code>untabify</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Common-String-Operations.html">Common String Operations</a></td></tr>
<tr><td></td><td valign="top"><a href="File-Archiving-Utilities.html#index-untar"><code>untar</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="File-Archiving-Utilities.html">File Archiving Utilities</a></td></tr>
<tr><td></td><td valign="top"><a href="File-Archiving-Utilities.html#index-untar-1"><code>untar</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="File-Archiving-Utilities.html">File Archiving Utilities</a></td></tr>
<tr><td></td><td valign="top"><a href="File-Archiving-Utilities.html#index-untar-2"><code>untar</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="File-Archiving-Utilities.html">File Archiving Utilities</a></td></tr>
<tr><td></td><td valign="top"><a href="Signal-Processing.html#index-unwrap"><code>unwrap</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Signal-Processing.html">Signal Processing</a></td></tr>
<tr><td></td><td valign="top"><a href="Signal-Processing.html#index-unwrap-1"><code>unwrap</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Signal-Processing.html">Signal Processing</a></td></tr>
<tr><td></td><td valign="top"><a href="Signal-Processing.html#index-unwrap-2"><code>unwrap</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Signal-Processing.html">Signal Processing</a></td></tr>
<tr><td></td><td valign="top"><a href="File-Archiving-Utilities.html#index-unzip"><code>unzip</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="File-Archiving-Utilities.html">File Archiving Utilities</a></td></tr>
<tr><td></td><td valign="top"><a href="File-Archiving-Utilities.html#index-unzip-1"><code>unzip</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="File-Archiving-Utilities.html">File Archiving Utilities</a></td></tr>
<tr><td></td><td valign="top"><a href="File-Archiving-Utilities.html#index-unzip-2"><code>unzip</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="File-Archiving-Utilities.html">File Archiving Utilities</a></td></tr>
<tr><td></td><td valign="top"><a href="Arithmetic-Ops.html#index-uplus"><code>uplus</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Arithmetic-Ops.html">Arithmetic Ops</a></td></tr>
<tr><td></td><td valign="top"><a href="Common-String-Operations.html#index-upper"><code>upper</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Common-String-Operations.html">Common String Operations</a></td></tr>
<tr><td></td><td valign="top"><a href="WWW-Access.html#index-urlread"><code>urlread</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="WWW-Access.html">WWW Access</a></td></tr>
<tr><td></td><td valign="top"><a href="WWW-Access.html#index-urlread-1"><code>urlread</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="WWW-Access.html">WWW Access</a></td></tr>
<tr><td></td><td valign="top"><a href="WWW-Access.html#index-urlread-2"><code>urlread</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="WWW-Access.html">WWW Access</a></td></tr>
<tr><td></td><td valign="top"><a href="WWW-Access.html#index-urlread-3"><code>urlread</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="WWW-Access.html">WWW Access</a></td></tr>
<tr><td></td><td valign="top"><a href="WWW-Access.html#index-urlwrite"><code>urlwrite</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="WWW-Access.html">WWW Access</a></td></tr>
<tr><td></td><td valign="top"><a href="WWW-Access.html#index-urlwrite-1"><code>urlwrite</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="WWW-Access.html">WWW Access</a></td></tr>
<tr><td></td><td valign="top"><a href="WWW-Access.html#index-urlwrite-2"><code>urlwrite</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="WWW-Access.html">WWW Access</a></td></tr>
<tr><td></td><td valign="top"><a href="WWW-Access.html#index-urlwrite-3"><code>urlwrite</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="WWW-Access.html">WWW Access</a></td></tr>
<tr><td></td><td valign="top"><a href="Java-Interface-Functions.html#index-usejava"><code>usejava</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Java-Interface-Functions.html">Java Interface Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="System-Information.html#index-user_005fconfig_005fdir"><code>user_config_dir</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="System-Information.html">System Information</a></td></tr>
<tr><td></td><td valign="top"><a href="System-Information.html#index-user_005fdata_005fdir"><code>user_data_dir</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="System-Information.html">System Information</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th id="Function-Index_fn_letter-V">V</th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="Validating-the-type-of-Arguments.html#index-validateattributes"><code>validateattributes</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Validating-the-type-of-Arguments.html">Validating the type of Arguments</a></td></tr>
<tr><td></td><td valign="top"><a href="Validating-the-type-of-Arguments.html#index-validateattributes-1"><code>validateattributes</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Validating-the-type-of-Arguments.html">Validating the type of Arguments</a></td></tr>
<tr><td></td><td valign="top"><a href="Validating-the-type-of-Arguments.html#index-validateattributes-2"><code>validateattributes</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Validating-the-type-of-Arguments.html">Validating the type of Arguments</a></td></tr>
<tr><td></td><td valign="top"><a href="Validating-the-type-of-Arguments.html#index-validateattributes-3"><code>validateattributes</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Validating-the-type-of-Arguments.html">Validating the type of Arguments</a></td></tr>
<tr><td></td><td valign="top"><a href="Validating-the-type-of-Arguments.html#index-validateattributes-4"><code>validateattributes</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Validating-the-type-of-Arguments.html">Validating the type of Arguments</a></td></tr>
<tr><td></td><td valign="top"><a href="Validating-the-type-of-Arguments.html#index-validatestring"><code>validatestring</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Validating-the-type-of-Arguments.html">Validating the type of Arguments</a></td></tr>
<tr><td></td><td valign="top"><a href="Validating-the-type-of-Arguments.html#index-validatestring-1"><code>validatestring</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Validating-the-type-of-Arguments.html">Validating the type of Arguments</a></td></tr>
<tr><td></td><td valign="top"><a href="Validating-the-type-of-Arguments.html#index-validatestring-2"><code>validatestring</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Validating-the-type-of-Arguments.html">Validating the type of Arguments</a></td></tr>
<tr><td></td><td valign="top"><a href="Validating-the-type-of-Arguments.html#index-validatestring-3"><code>validatestring</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Validating-the-type-of-Arguments.html">Validating the type of Arguments</a></td></tr>
<tr><td></td><td valign="top"><a href="Famous-Matrices.html#index-vander"><code>vander</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Famous-Matrices.html">Famous Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Famous-Matrices.html#index-vander-1"><code>vander</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Famous-Matrices.html">Famous Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Descriptive-Statistics.html#index-var"><code>var</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Descriptive-Statistics.html">Descriptive Statistics</a></td></tr>
<tr><td></td><td valign="top"><a href="Descriptive-Statistics.html#index-var-1"><code>var</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Descriptive-Statistics.html">Descriptive Statistics</a></td></tr>
<tr><td></td><td valign="top"><a href="Descriptive-Statistics.html#index-var-2"><code>var</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Descriptive-Statistics.html">Descriptive Statistics</a></td></tr>
<tr><td></td><td valign="top"><a href="Descriptive-Statistics.html#index-var-3"><code>var</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Descriptive-Statistics.html">Descriptive Statistics</a></td></tr>
<tr><td></td><td valign="top"><a href="Rearranging-Matrices.html#index-vec"><code>vec</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Rearranging-Matrices.html">Rearranging Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Rearranging-Matrices.html#index-vec-1"><code>vec</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Rearranging-Matrices.html">Rearranging Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Rearranging-Matrices.html#index-vech"><code>vech</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Rearranging-Matrices.html">Rearranging Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Basic-Matrix-Functions.html#index-vecnorm"><code>vecnorm</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Basic-Matrix-Functions.html">Basic Matrix Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Basic-Matrix-Functions.html#index-vecnorm-1"><code>vecnorm</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Basic-Matrix-Functions.html">Basic Matrix Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Basic-Matrix-Functions.html#index-vecnorm-2"><code>vecnorm</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Basic-Matrix-Functions.html">Basic Matrix Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="System-Information.html#index-ver"><code>ver</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="System-Information.html">System Information</a></td></tr>
<tr><td></td><td valign="top"><a href="System-Information.html#index-ver-1"><code>ver</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="System-Information.html">System Information</a></td></tr>
<tr><td></td><td valign="top"><a href="System-Information.html#index-ver-2"><code>ver</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="System-Information.html">System Information</a></td></tr>
<tr><td></td><td valign="top"><a href="System-Information.html#index-ver-3"><code>ver</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="System-Information.html">System Information</a></td></tr>
<tr><td></td><td valign="top"><a href="System-Information.html#index-verLessThan"><code>verLessThan</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="System-Information.html">System Information</a></td></tr>
<tr><td></td><td valign="top"><a href="System-Information.html#index-version"><code>version</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="System-Information.html">System Information</a></td></tr>
<tr><td></td><td valign="top"><a href="System-Information.html#index-version-1"><code>version</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="System-Information.html">System Information</a></td></tr>
<tr><td></td><td valign="top"><a href="System-Information.html#index-version-2"><code>version</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="System-Information.html">System Information</a></td></tr>
<tr><td></td><td valign="top"><a href="Rearranging-Matrices.html#index-vertcat"><code>vertcat</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Rearranging-Matrices.html">Rearranging Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-view"><code>view</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-view-1"><code>view</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-view-2"><code>view</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-view-3"><code>view</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-view-4"><code>view</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-view-5"><code>view</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-view-6"><code>view</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Representing-Images.html#index-viridis"><code>viridis</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Representing-Images.html">Representing Images</a></td></tr>
<tr><td></td><td valign="top"><a href="Representing-Images.html#index-viridis-1"><code>viridis</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Representing-Images.html">Representing Images</a></td></tr>
<tr><td></td><td valign="top"><a href="Voronoi-Diagrams.html#index-voronoi"><code>voronoi</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Voronoi-Diagrams.html">Voronoi Diagrams</a></td></tr>
<tr><td></td><td valign="top"><a href="Voronoi-Diagrams.html#index-voronoi-1"><code>voronoi</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Voronoi-Diagrams.html">Voronoi Diagrams</a></td></tr>
<tr><td></td><td valign="top"><a href="Voronoi-Diagrams.html#index-voronoi-2"><code>voronoi</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Voronoi-Diagrams.html">Voronoi Diagrams</a></td></tr>
<tr><td></td><td valign="top"><a href="Voronoi-Diagrams.html#index-voronoi-3"><code>voronoi</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Voronoi-Diagrams.html">Voronoi Diagrams</a></td></tr>
<tr><td></td><td valign="top"><a href="Voronoi-Diagrams.html#index-voronoi-4"><code>voronoi</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Voronoi-Diagrams.html">Voronoi Diagrams</a></td></tr>
<tr><td></td><td valign="top"><a href="Voronoi-Diagrams.html#index-voronoi-5"><code>voronoi</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Voronoi-Diagrams.html">Voronoi Diagrams</a></td></tr>
<tr><td></td><td valign="top"><a href="Voronoi-Diagrams.html#index-voronoin"><code>voronoin</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Voronoi-Diagrams.html">Voronoi Diagrams</a></td></tr>
<tr><td></td><td valign="top"><a href="Voronoi-Diagrams.html#index-voronoin-1"><code>voronoin</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Voronoi-Diagrams.html">Voronoi Diagrams</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th id="Function-Index_fn_letter-W">W</th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="Progress-Bar.html#index-waitbar"><code>waitbar</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Progress-Bar.html">Progress Bar</a></td></tr>
<tr><td></td><td valign="top"><a href="Progress-Bar.html#index-waitbar-1"><code>waitbar</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Progress-Bar.html">Progress Bar</a></td></tr>
<tr><td></td><td valign="top"><a href="Progress-Bar.html#index-waitbar-2"><code>waitbar</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Progress-Bar.html">Progress Bar</a></td></tr>
<tr><td></td><td valign="top"><a href="Progress-Bar.html#index-waitbar-3"><code>waitbar</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Progress-Bar.html">Progress Bar</a></td></tr>
<tr><td></td><td valign="top"><a href="Progress-Bar.html#index-waitbar-4"><code>waitbar</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Progress-Bar.html">Progress Bar</a></td></tr>
<tr><td></td><td valign="top"><a href="Progress-Bar.html#index-waitbar-5"><code>waitbar</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Progress-Bar.html">Progress Bar</a></td></tr>
<tr><td></td><td valign="top"><a href="Progress-Bar.html#index-waitbar-6"><code>waitbar</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Progress-Bar.html">Progress Bar</a></td></tr>
<tr><td></td><td valign="top"><a href="GUI-Utility-Functions.html#index-waitfor"><code>waitfor</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="GUI-Utility-Functions.html">GUI Utility Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="GUI-Utility-Functions.html#index-waitfor-1"><code>waitfor</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="GUI-Utility-Functions.html">GUI Utility Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="GUI-Utility-Functions.html#index-waitfor-2"><code>waitfor</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="GUI-Utility-Functions.html">GUI Utility Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="GUI-Utility-Functions.html#index-waitfor-3"><code>waitfor</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="GUI-Utility-Functions.html">GUI Utility Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Interacting-with-Plots.html#index-waitforbuttonpress"><code>waitforbuttonpress</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Interacting-with-Plots.html">Interacting with Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Interacting-with-Plots.html#index-waitforbuttonpress-1"><code>waitforbuttonpress</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Interacting-with-Plots.html">Interacting with Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Controlling-Subprocesses.html#index-waitpid"><code>waitpid</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Controlling-Subprocesses.html">Controlling Subprocesses</a></td></tr>
<tr><td></td><td valign="top"><a href="I_002fO-Dialogs.html#index-warndlg"><code>warndlg</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="I_002fO-Dialogs.html">I/O Dialogs</a></td></tr>
<tr><td></td><td valign="top"><a href="I_002fO-Dialogs.html#index-warndlg-1"><code>warndlg</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="I_002fO-Dialogs.html">I/O Dialogs</a></td></tr>
<tr><td></td><td valign="top"><a href="I_002fO-Dialogs.html#index-warndlg-2"><code>warndlg</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="I_002fO-Dialogs.html">I/O Dialogs</a></td></tr>
<tr><td></td><td valign="top"><a href="I_002fO-Dialogs.html#index-warndlg-3"><code>warndlg</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="I_002fO-Dialogs.html">I/O Dialogs</a></td></tr>
<tr><td></td><td valign="top"><a href="I_002fO-Dialogs.html#index-warndlg-4"><code>warndlg</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="I_002fO-Dialogs.html">I/O Dialogs</a></td></tr>
<tr><td></td><td valign="top"><a href="Issuing-Warnings.html#index-warning"><code>warning</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Issuing-Warnings.html">Issuing Warnings</a></td></tr>
<tr><td></td><td valign="top"><a href="Issuing-Warnings.html#index-warning-1"><code>warning</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Issuing-Warnings.html">Issuing Warnings</a></td></tr>
<tr><td></td><td valign="top"><a href="Issuing-Warnings.html#index-warning-2"><code>warning</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Issuing-Warnings.html">Issuing Warnings</a></td></tr>
<tr><td></td><td valign="top"><a href="Issuing-Warnings.html#index-warning-3"><code>warning</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Issuing-Warnings.html">Issuing Warnings</a></td></tr>
<tr><td></td><td valign="top"><a href="Issuing-Warnings.html#index-warning-4"><code>warning</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Issuing-Warnings.html">Issuing Warnings</a></td></tr>
<tr><td></td><td valign="top"><a href="Issuing-Warnings.html#index-warning-5"><code>warning</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Issuing-Warnings.html">Issuing Warnings</a></td></tr>
<tr><td></td><td valign="top"><a href="Issuing-Warnings.html#index-warning-6"><code>warning</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Issuing-Warnings.html">Issuing Warnings</a></td></tr>
<tr><td></td><td valign="top"><a href="Issuing-Warnings.html#index-warning-7"><code>warning</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Issuing-Warnings.html">Issuing Warnings</a></td></tr>
<tr><td></td><td valign="top"><a href="Issuing-Warnings.html#index-warning-8"><code>warning</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Issuing-Warnings.html">Issuing Warnings</a></td></tr>
<tr><td></td><td valign="top"><a href="Issuing-Warnings.html#index-warning-9"><code>warning</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Issuing-Warnings.html">Issuing Warnings</a></td></tr>
<tr><td></td><td valign="top"><a href="Getting-Help.html#index-warranty-1"><code>warranty</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Getting-Help.html">Getting Help</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-waterfall"><code>waterfall</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-waterfall-1"><code>waterfall</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-waterfall-2"><code>waterfall</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-waterfall-3"><code>waterfall</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-waterfall-4"><code>waterfall</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-waterfall-5"><code>waterfall</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Controlling-Subprocesses.html#index-WCONTINUE"><code>WCONTINUE</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Controlling-Subprocesses.html">Controlling Subprocesses</a></td></tr>
<tr><td></td><td valign="top"><a href="Controlling-Subprocesses.html#index-WCOREDUMP"><code>WCOREDUMP</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Controlling-Subprocesses.html">Controlling Subprocesses</a></td></tr>
<tr><td></td><td valign="top"><a href="WWW-Access.html#index-web"><code>web</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="WWW-Access.html">WWW Access</a></td></tr>
<tr><td></td><td valign="top"><a href="WWW-Access.html#index-web-1"><code>web</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="WWW-Access.html">WWW Access</a></td></tr>
<tr><td></td><td valign="top"><a href="WWW-Access.html#index-web-2"><code>web</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="WWW-Access.html">WWW Access</a></td></tr>
<tr><td></td><td valign="top"><a href="WWW-Access.html#index-web-3"><code>web</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="WWW-Access.html">WWW Access</a></td></tr>
<tr><td></td><td valign="top"><a href="WWW-Access.html#index-web-4"><code>web</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="WWW-Access.html">WWW Access</a></td></tr>
<tr><td></td><td valign="top"><a href="WWW-Access.html#index-weboptions"><code>weboptions</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="WWW-Access.html">WWW Access</a></td></tr>
<tr><td></td><td valign="top"><a href="WWW-Access.html#index-weboptions-1"><code>weboptions</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="WWW-Access.html">WWW Access</a></td></tr>
<tr><td></td><td valign="top"><a href="WWW-Access.html#index-webread"><code>webread</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="WWW-Access.html">WWW Access</a></td></tr>
<tr><td></td><td valign="top"><a href="WWW-Access.html#index-webread-1"><code>webread</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="WWW-Access.html">WWW Access</a></td></tr>
<tr><td></td><td valign="top"><a href="WWW-Access.html#index-webread-2"><code>webread</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="WWW-Access.html">WWW Access</a></td></tr>
<tr><td></td><td valign="top"><a href="WWW-Access.html#index-webwrite"><code>webwrite</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="WWW-Access.html">WWW Access</a></td></tr>
<tr><td></td><td valign="top"><a href="WWW-Access.html#index-webwrite-1"><code>webwrite</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="WWW-Access.html">WWW Access</a></td></tr>
<tr><td></td><td valign="top"><a href="WWW-Access.html#index-webwrite-2"><code>webwrite</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="WWW-Access.html">WWW Access</a></td></tr>
<tr><td></td><td valign="top"><a href="Timing-Utilities.html#index-weekday"><code>weekday</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Timing-Utilities.html">Timing Utilities</a></td></tr>
<tr><td></td><td valign="top"><a href="Timing-Utilities.html#index-weekday-1"><code>weekday</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Timing-Utilities.html">Timing Utilities</a></td></tr>
<tr><td></td><td valign="top"><a href="Controlling-Subprocesses.html#index-WEXITSTATUS"><code>WEXITSTATUS</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Controlling-Subprocesses.html">Controlling Subprocesses</a></td></tr>
<tr><td></td><td valign="top"><a href="Status-of-Variables.html#index-what"><code>what</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Status-of-Variables.html">Status of Variables</a></td></tr>
<tr><td></td><td valign="top"><a href="Status-of-Variables.html#index-what-1"><code>what</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Status-of-Variables.html">Status of Variables</a></td></tr>
<tr><td></td><td valign="top"><a href="Status-of-Variables.html#index-what-2"><code>what</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Status-of-Variables.html">Status of Variables</a></td></tr>
<tr><td></td><td valign="top"><a href="Status-of-Variables.html#index-which"><code>which</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Status-of-Variables.html">Status of Variables</a></td></tr>
<tr><td></td><td valign="top"><a href="Representing-Images.html#index-white"><code>white</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Representing-Images.html">Representing Images</a></td></tr>
<tr><td></td><td valign="top"><a href="Representing-Images.html#index-white-1"><code>white</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Representing-Images.html">Representing Images</a></td></tr>
<tr><td></td><td valign="top"><a href="Representing-Images.html#index-whitebg"><code>whitebg</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Representing-Images.html">Representing Images</a></td></tr>
<tr><td></td><td valign="top"><a href="Representing-Images.html#index-whitebg-1"><code>whitebg</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Representing-Images.html">Representing Images</a></td></tr>
<tr><td></td><td valign="top"><a href="Representing-Images.html#index-whitebg-2"><code>whitebg</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Representing-Images.html">Representing Images</a></td></tr>
<tr><td></td><td valign="top"><a href="Representing-Images.html#index-whitebg-3"><code>whitebg</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Representing-Images.html">Representing Images</a></td></tr>
<tr><td></td><td valign="top"><a href="Representing-Images.html#index-whitebg-4"><code>whitebg</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Representing-Images.html">Representing Images</a></td></tr>
<tr><td></td><td valign="top"><a href="Representing-Images.html#index-whitebg-5"><code>whitebg</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Representing-Images.html">Representing Images</a></td></tr>
<tr><td></td><td valign="top"><a href="Status-of-Variables.html#index-who"><code>who</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Status-of-Variables.html">Status of Variables</a></td></tr>
<tr><td></td><td valign="top"><a href="Status-of-Variables.html#index-who-1"><code>who</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Status-of-Variables.html">Status of Variables</a></td></tr>
<tr><td></td><td valign="top"><a href="Status-of-Variables.html#index-who-2"><code>who</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Status-of-Variables.html">Status of Variables</a></td></tr>
<tr><td></td><td valign="top"><a href="Status-of-Variables.html#index-who-3"><code>who</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Status-of-Variables.html">Status of Variables</a></td></tr>
<tr><td></td><td valign="top"><a href="Status-of-Variables.html#index-whos"><code>whos</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Status-of-Variables.html">Status of Variables</a></td></tr>
<tr><td></td><td valign="top"><a href="Status-of-Variables.html#index-whos-1"><code>whos</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Status-of-Variables.html">Status of Variables</a></td></tr>
<tr><td></td><td valign="top"><a href="Status-of-Variables.html#index-whos-2"><code>whos</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Status-of-Variables.html">Status of Variables</a></td></tr>
<tr><td></td><td valign="top"><a href="Status-of-Variables.html#index-whos-3"><code>whos</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Status-of-Variables.html">Status of Variables</a></td></tr>
<tr><td></td><td valign="top"><a href="Status-of-Variables.html#index-whos_005fline_005fformat"><code>whos_line_format</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Status-of-Variables.html">Status of Variables</a></td></tr>
<tr><td></td><td valign="top"><a href="Status-of-Variables.html#index-whos_005fline_005fformat-1"><code>whos_line_format</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Status-of-Variables.html">Status of Variables</a></td></tr>
<tr><td></td><td valign="top"><a href="Status-of-Variables.html#index-whos_005fline_005fformat-2"><code>whos_line_format</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Status-of-Variables.html">Status of Variables</a></td></tr>
<tr><td></td><td valign="top"><a href="Controlling-Subprocesses.html#index-WIFCONTINUED"><code>WIFCONTINUED</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Controlling-Subprocesses.html">Controlling Subprocesses</a></td></tr>
<tr><td></td><td valign="top"><a href="Controlling-Subprocesses.html#index-WIFEXITED"><code>WIFEXITED</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Controlling-Subprocesses.html">Controlling Subprocesses</a></td></tr>
<tr><td></td><td valign="top"><a href="Controlling-Subprocesses.html#index-WIFSIGNALED"><code>WIFSIGNALED</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Controlling-Subprocesses.html">Controlling Subprocesses</a></td></tr>
<tr><td></td><td valign="top"><a href="Controlling-Subprocesses.html#index-WIFSTOPPED"><code>WIFSTOPPED</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Controlling-Subprocesses.html">Controlling Subprocesses</a></td></tr>
<tr><td></td><td valign="top"><a href="Famous-Matrices.html#index-wilkinson"><code>wilkinson</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Famous-Matrices.html">Famous Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="System-Information.html#index-winqueryreg"><code>winqueryreg</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="System-Information.html">System Information</a></td></tr>
<tr><td></td><td valign="top"><a href="System-Information.html#index-winqueryreg-1"><code>winqueryreg</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="System-Information.html">System Information</a></td></tr>
<tr><td></td><td valign="top"><a href="System-Information.html#index-winqueryreg-2"><code>winqueryreg</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="System-Information.html">System Information</a></td></tr>
<tr><td></td><td valign="top"><a href="Representing-Images.html#index-winter"><code>winter</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Representing-Images.html">Representing Images</a></td></tr>
<tr><td></td><td valign="top"><a href="Representing-Images.html#index-winter-1"><code>winter</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Representing-Images.html">Representing Images</a></td></tr>
<tr><td></td><td valign="top"><a href="Controlling-Subprocesses.html#index-WNOHANG"><code>WNOHANG</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Controlling-Subprocesses.html">Controlling Subprocesses</a></td></tr>
<tr><td></td><td valign="top"><a href="Octave-Workspace-Windows.html#index-workspace"><code>workspace</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Octave-Workspace-Windows.html">Octave Workspace Windows</a></td></tr>
<tr><td></td><td valign="top"><a href="Controlling-Subprocesses.html#index-WSTOPSIG"><code>WSTOPSIG</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Controlling-Subprocesses.html">Controlling Subprocesses</a></td></tr>
<tr><td></td><td valign="top"><a href="Controlling-Subprocesses.html#index-WTERMSIG"><code>WTERMSIG</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Controlling-Subprocesses.html">Controlling Subprocesses</a></td></tr>
<tr><td></td><td valign="top"><a href="Controlling-Subprocesses.html#index-WUNTRACED"><code>WUNTRACED</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Controlling-Subprocesses.html">Controlling Subprocesses</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th id="Function-Index_fn_letter-X">X</th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="Plot-Annotations.html#index-xlabel"><code>xlabel</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Plot-Annotations.html">Plot Annotations</a></td></tr>
<tr><td></td><td valign="top"><a href="Plot-Annotations.html#index-xlabel-1"><code>xlabel</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Plot-Annotations.html">Plot Annotations</a></td></tr>
<tr><td></td><td valign="top"><a href="Plot-Annotations.html#index-xlabel-2"><code>xlabel</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Plot-Annotations.html">Plot Annotations</a></td></tr>
<tr><td></td><td valign="top"><a href="Plot-Annotations.html#index-xlabel-3"><code>xlabel</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Plot-Annotations.html">Plot Annotations</a></td></tr>
<tr><td></td><td valign="top"><a href="Axis-Configuration.html#index-xlim"><code>xlim</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Axis-Configuration.html">Axis Configuration</a></td></tr>
<tr><td></td><td valign="top"><a href="Axis-Configuration.html#index-xlim-1"><code>xlim</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Axis-Configuration.html">Axis Configuration</a></td></tr>
<tr><td></td><td valign="top"><a href="Axis-Configuration.html#index-xlim-2"><code>xlim</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Axis-Configuration.html">Axis Configuration</a></td></tr>
<tr><td></td><td valign="top"><a href="Axis-Configuration.html#index-xlim-3"><code>xlim</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Axis-Configuration.html">Axis Configuration</a></td></tr>
<tr><td></td><td valign="top"><a href="Axis-Configuration.html#index-xlim-4"><code>xlim</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Axis-Configuration.html">Axis Configuration</a></td></tr>
<tr><td></td><td valign="top"><a href="Axis-Configuration.html#index-xlim-5"><code>xlim</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Axis-Configuration.html">Axis Configuration</a></td></tr>
<tr><td></td><td valign="top"><a href="Finding-Elements-and-Checking-Conditions.html#index-xor"><code>xor</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Finding-Elements-and-Checking-Conditions.html">Finding Elements and Checking Conditions</a></td></tr>
<tr><td></td><td valign="top"><a href="Finding-Elements-and-Checking-Conditions.html#index-xor-1"><code>xor</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Finding-Elements-and-Checking-Conditions.html">Finding Elements and Checking Conditions</a></td></tr>
<tr><td></td><td valign="top"><a href="Axis-Configuration.html#index-xtickangle"><code>xtickangle</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Axis-Configuration.html">Axis Configuration</a></td></tr>
<tr><td></td><td valign="top"><a href="Axis-Configuration.html#index-xtickangle-1"><code>xtickangle</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Axis-Configuration.html">Axis Configuration</a></td></tr>
<tr><td></td><td valign="top"><a href="Axis-Configuration.html#index-xtickangle-2"><code>xtickangle</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Axis-Configuration.html">Axis Configuration</a></td></tr>
<tr><td></td><td valign="top"><a href="Axis-Configuration.html#index-xtickangle-3"><code>xtickangle</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Axis-Configuration.html">Axis Configuration</a></td></tr>
<tr><td></td><td valign="top"><a href="Axis-Configuration.html#index-xticklabels"><code>xticklabels</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Axis-Configuration.html">Axis Configuration</a></td></tr>
<tr><td></td><td valign="top"><a href="Axis-Configuration.html#index-xticklabels-1"><code>xticklabels</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Axis-Configuration.html">Axis Configuration</a></td></tr>
<tr><td></td><td valign="top"><a href="Axis-Configuration.html#index-xticklabels-2"><code>xticklabels</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Axis-Configuration.html">Axis Configuration</a></td></tr>
<tr><td></td><td valign="top"><a href="Axis-Configuration.html#index-xticklabels-3"><code>xticklabels</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Axis-Configuration.html">Axis Configuration</a></td></tr>
<tr><td></td><td valign="top"><a href="Axis-Configuration.html#index-xticklabels-4"><code>xticklabels</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Axis-Configuration.html">Axis Configuration</a></td></tr>
<tr><td></td><td valign="top"><a href="Axis-Configuration.html#index-xticklabels-5"><code>xticklabels</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Axis-Configuration.html">Axis Configuration</a></td></tr>
<tr><td></td><td valign="top"><a href="Axis-Configuration.html#index-xticks"><code>xticks</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Axis-Configuration.html">Axis Configuration</a></td></tr>
<tr><td></td><td valign="top"><a href="Axis-Configuration.html#index-xticks-1"><code>xticks</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Axis-Configuration.html">Axis Configuration</a></td></tr>
<tr><td></td><td valign="top"><a href="Axis-Configuration.html#index-xticks-2"><code>xticks</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Axis-Configuration.html">Axis Configuration</a></td></tr>
<tr><td></td><td valign="top"><a href="Axis-Configuration.html#index-xticks-3"><code>xticks</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Axis-Configuration.html">Axis Configuration</a></td></tr>
<tr><td></td><td valign="top"><a href="Axis-Configuration.html#index-xticks-4"><code>xticks</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Axis-Configuration.html">Axis Configuration</a></td></tr>
<tr><td></td><td valign="top"><a href="Axis-Configuration.html#index-xticks-5"><code>xticks</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Axis-Configuration.html">Axis Configuration</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th id="Function-Index_fn_letter-Y">Y</th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="Terminal-Input.html#index-yes_005for_005fno"><code>yes_or_no</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Terminal-Input.html">Terminal Input</a></td></tr>
<tr><td></td><td valign="top"><a href="Plot-Annotations.html#index-ylabel"><code>ylabel</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Plot-Annotations.html">Plot Annotations</a></td></tr>
<tr><td></td><td valign="top"><a href="Axis-Configuration.html#index-ylim"><code>ylim</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Axis-Configuration.html">Axis Configuration</a></td></tr>
<tr><td></td><td valign="top"><a href="Axis-Configuration.html#index-ytickangle"><code>ytickangle</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Axis-Configuration.html">Axis Configuration</a></td></tr>
<tr><td></td><td valign="top"><a href="Axis-Configuration.html#index-yticklabels"><code>yticklabels</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Axis-Configuration.html">Axis Configuration</a></td></tr>
<tr><td></td><td valign="top"><a href="Axis-Configuration.html#index-yticks"><code>yticks</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Axis-Configuration.html">Axis Configuration</a></td></tr>
<tr><td></td><td valign="top"><a href="Signal-Processing.html#index-yulewalker"><code>yulewalker</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Signal-Processing.html">Signal Processing</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th id="Function-Index_fn_letter-Z">Z</th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="Special-Utility-Matrices.html#index-zeros"><code>zeros</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Special-Utility-Matrices.html">Special Utility Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Special-Utility-Matrices.html#index-zeros-1"><code>zeros</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Special-Utility-Matrices.html">Special Utility Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Special-Utility-Matrices.html#index-zeros-2"><code>zeros</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Special-Utility-Matrices.html">Special Utility Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Special-Utility-Matrices.html#index-zeros-3"><code>zeros</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Special-Utility-Matrices.html">Special Utility Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Special-Utility-Matrices.html#index-zeros-4"><code>zeros</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Special-Utility-Matrices.html">Special Utility Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Special-Utility-Matrices.html#index-zeros-5"><code>zeros</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Special-Utility-Matrices.html">Special Utility Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="File-Archiving-Utilities.html#index-zip"><code>zip</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="File-Archiving-Utilities.html">File Archiving Utilities</a></td></tr>
<tr><td></td><td valign="top"><a href="File-Archiving-Utilities.html#index-zip-1"><code>zip</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="File-Archiving-Utilities.html">File Archiving Utilities</a></td></tr>
<tr><td></td><td valign="top"><a href="Plot-Annotations.html#index-zlabel"><code>zlabel</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Plot-Annotations.html">Plot Annotations</a></td></tr>
<tr><td></td><td valign="top"><a href="Axis-Configuration.html#index-zlim"><code>zlim</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Axis-Configuration.html">Axis Configuration</a></td></tr>
<tr><td></td><td valign="top"><a href="Manipulation-of-Plot-Objects.html#index-zoom"><code>zoom</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Manipulation-of-Plot-Objects.html">Manipulation of Plot Objects</a></td></tr>
<tr><td></td><td valign="top"><a href="Manipulation-of-Plot-Objects.html#index-zoom-1"><code>zoom</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Manipulation-of-Plot-Objects.html">Manipulation of Plot Objects</a></td></tr>
<tr><td></td><td valign="top"><a href="Manipulation-of-Plot-Objects.html#index-zoom-2"><code>zoom</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Manipulation-of-Plot-Objects.html">Manipulation of Plot Objects</a></td></tr>
<tr><td></td><td valign="top"><a href="Manipulation-of-Plot-Objects.html#index-zoom-3"><code>zoom</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Manipulation-of-Plot-Objects.html">Manipulation of Plot Objects</a></td></tr>
<tr><td></td><td valign="top"><a href="Manipulation-of-Plot-Objects.html#index-zoom-4"><code>zoom</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Manipulation-of-Plot-Objects.html">Manipulation of Plot Objects</a></td></tr>
<tr><td></td><td valign="top"><a href="Manipulation-of-Plot-Objects.html#index-zoom-5"><code>zoom</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Manipulation-of-Plot-Objects.html">Manipulation of Plot Objects</a></td></tr>
<tr><td></td><td valign="top"><a href="Manipulation-of-Plot-Objects.html#index-zoom-6"><code>zoom</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Manipulation-of-Plot-Objects.html">Manipulation of Plot Objects</a></td></tr>
<tr><td></td><td valign="top"><a href="Manipulation-of-Plot-Objects.html#index-zoom-7"><code>zoom</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Manipulation-of-Plot-Objects.html">Manipulation of Plot Objects</a></td></tr>
<tr><td></td><td valign="top"><a href="Manipulation-of-Plot-Objects.html#index-zoom-8"><code>zoom</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Manipulation-of-Plot-Objects.html">Manipulation of Plot Objects</a></td></tr>
<tr><td></td><td valign="top"><a href="Basic-Statistical-Functions.html#index-zscore"><code>zscore</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Basic-Statistical-Functions.html">Basic Statistical Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Basic-Statistical-Functions.html#index-zscore-1"><code>zscore</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Basic-Statistical-Functions.html">Basic Statistical Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Basic-Statistical-Functions.html#index-zscore-2"><code>zscore</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Basic-Statistical-Functions.html">Basic Statistical Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Basic-Statistical-Functions.html#index-zscore-3"><code>zscore</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Basic-Statistical-Functions.html">Basic Statistical Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Axis-Configuration.html#index-ztickangle"><code>ztickangle</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Axis-Configuration.html">Axis Configuration</a></td></tr>
<tr><td></td><td valign="top"><a href="Axis-Configuration.html#index-zticklabels"><code>zticklabels</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Axis-Configuration.html">Axis Configuration</a></td></tr>
<tr><td></td><td valign="top"><a href="Axis-Configuration.html#index-zticks"><code>zticks</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Axis-Configuration.html">Axis Configuration</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
</table>
<table><tr><th valign="top">Jump to: &nbsp; </th><td><a class="summary-letter" href="#Function-Index_fn_letter-A"><b>A</b></a>
 &nbsp; 
<a class="summary-letter" href="#Function-Index_fn_letter-B"><b>B</b></a>
 &nbsp; 
<a class="summary-letter" href="#Function-Index_fn_letter-C"><b>C</b></a>
 &nbsp; 
<a class="summary-letter" href="#Function-Index_fn_letter-D"><b>D</b></a>
 &nbsp; 
<a class="summary-letter" href="#Function-Index_fn_letter-E"><b>E</b></a>
 &nbsp; 
<a class="summary-letter" href="#Function-Index_fn_letter-F"><b>F</b></a>
 &nbsp; 
<a class="summary-letter" href="#Function-Index_fn_letter-G"><b>G</b></a>
 &nbsp; 
<a class="summary-letter" href="#Function-Index_fn_letter-H"><b>H</b></a>
 &nbsp; 
<a class="summary-letter" href="#Function-Index_fn_letter-I"><b>I</b></a>
 &nbsp; 
<a class="summary-letter" href="#Function-Index_fn_letter-J"><b>J</b></a>
 &nbsp; 
<a class="summary-letter" href="#Function-Index_fn_letter-K"><b>K</b></a>
 &nbsp; 
<a class="summary-letter" href="#Function-Index_fn_letter-L"><b>L</b></a>
 &nbsp; 
<a class="summary-letter" href="#Function-Index_fn_letter-M"><b>M</b></a>
 &nbsp; 
<a class="summary-letter" href="#Function-Index_fn_letter-N"><b>N</b></a>
 &nbsp; 
<a class="summary-letter" href="#Function-Index_fn_letter-O"><b>O</b></a>
 &nbsp; 
<a class="summary-letter" href="#Function-Index_fn_letter-P"><b>P</b></a>
 &nbsp; 
<a class="summary-letter" href="#Function-Index_fn_letter-Q"><b>Q</b></a>
 &nbsp; 
<a class="summary-letter" href="#Function-Index_fn_letter-R"><b>R</b></a>
 &nbsp; 
<a class="summary-letter" href="#Function-Index_fn_letter-S"><b>S</b></a>
 &nbsp; 
<a class="summary-letter" href="#Function-Index_fn_letter-T"><b>T</b></a>
 &nbsp; 
<a class="summary-letter" href="#Function-Index_fn_letter-U"><b>U</b></a>
 &nbsp; 
<a class="summary-letter" href="#Function-Index_fn_letter-V"><b>V</b></a>
 &nbsp; 
<a class="summary-letter" href="#Function-Index_fn_letter-W"><b>W</b></a>
 &nbsp; 
<a class="summary-letter" href="#Function-Index_fn_letter-X"><b>X</b></a>
 &nbsp; 
<a class="summary-letter" href="#Function-Index_fn_letter-Y"><b>Y</b></a>
 &nbsp; 
<a class="summary-letter" href="#Function-Index_fn_letter-Z"><b>Z</b></a>
 &nbsp; 
</td></tr></table>


</div>
<hr>
<div class="header">
<p>
Next: <a href="Operator-Index.html">Operator Index</a>, Previous: <a href="Concept-Index.html">Concept Index</a> &nbsp; [<a href="index.html#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="Concept-Index.html" title="Index" rel="index">Index</a>]</p>
</div>



</body>
</html>