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
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<!-- Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016 The GSL Team.
Permission is granted to copy, distribute and/or modify this document
under the terms of the GNU Free Documentation License, Version 1.3 or
any later version published by the Free Software Foundation; with the
Invariant Sections being "GNU General Public License" and "Free Software
Needs Free Documentation", the Front-Cover text being "A GNU Manual",
and with the Back-Cover Text being (a) (see below). A copy of the
license is included in the section entitled "GNU Free Documentation
License".
(a) The Back-Cover Text is: "You have the freedom to copy and modify this
GNU Manual." -->
<!-- Created by GNU Texinfo 5.1, http://www.gnu.org/software/texinfo/ -->
<head>
<title>GNU Scientific Library – Reference Manual: Concept Index</title>
<meta name="description" content="GNU Scientific Library – Reference Manual: Concept Index">
<meta name="keywords" content="GNU Scientific Library – Reference Manual: Concept Index">
<meta name="resource-type" content="document">
<meta name="distribution" content="global">
<meta name="Generator" content="makeinfo">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<link href="index.html#Top" rel="start" title="Top">
<link href="Function-Index.html#Function-Index" rel="index" title="Function Index">
<link href="index.html#Top" rel="up" title="Top">
<link href="Type-Index.html#Type-Index" rel="previous" title="Type Index">
<style type="text/css">
<!--
a.summary-letter {text-decoration: none}
blockquote.smallquotation {font-size: smaller}
div.display {margin-left: 3.2em}
div.example {margin-left: 3.2em}
div.indentedblock {margin-left: 3.2em}
div.lisp {margin-left: 3.2em}
div.smalldisplay {margin-left: 3.2em}
div.smallexample {margin-left: 3.2em}
div.smallindentedblock {margin-left: 3.2em; font-size: smaller}
div.smalllisp {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}
pre.smalldisplay {font-family: inherit; font-size: smaller}
pre.smallexample {font-size: smaller}
pre.smallformat {font-family: inherit; font-size: smaller}
pre.smalllisp {font-size: smaller}
span.nocodebreak {white-space:nowrap}
span.nolinebreak {white-space:nowrap}
span.roman {font-family:serif; font-weight:normal}
span.sansserif {font-family:sans-serif; font-weight:normal}
ul.no-bullet {list-style: none}
-->
</style>
</head>
<body lang="en" bgcolor="#FFFFFF" text="#000000" link="#0000FF" vlink="#800080" alink="#FF0000">
<a name="Concept-Index"></a>
<div class="header">
<p>
Previous: <a href="Type-Index.html#Type-Index" accesskey="p" rel="previous">Type Index</a>, Up: <a href="index.html#Top" accesskey="u" rel="up">Top</a> [<a href="Function-Index.html#Function-Index" title="Index" rel="index">Index</a>]</p>
</div>
<hr>
<a name="Concept-Index-1"></a>
<h2 class="unnumbered">Concept Index</h2>
<table><tr><th valign="top">Jump to: </th><td><a class="summary-letter" href="#Concept-Index_cp_symbol-1"><b>$</b></a>
<a class="summary-letter" href="#Concept-Index_cp_symbol-2"><b>2</b></a>
<a class="summary-letter" href="#Concept-Index_cp_symbol-3"><b>3</b></a>
<a class="summary-letter" href="#Concept-Index_cp_symbol-4"><b>6</b></a>
<a class="summary-letter" href="#Concept-Index_cp_symbol-5"><b>9</b></a>
<br>
<a class="summary-letter" href="#Concept-Index_cp_letter-A"><b>A</b></a>
<a class="summary-letter" href="#Concept-Index_cp_letter-B"><b>B</b></a>
<a class="summary-letter" href="#Concept-Index_cp_letter-C"><b>C</b></a>
<a class="summary-letter" href="#Concept-Index_cp_letter-D"><b>D</b></a>
<a class="summary-letter" href="#Concept-Index_cp_letter-E"><b>E</b></a>
<a class="summary-letter" href="#Concept-Index_cp_letter-F"><b>F</b></a>
<a class="summary-letter" href="#Concept-Index_cp_letter-G"><b>G</b></a>
<a class="summary-letter" href="#Concept-Index_cp_letter-H"><b>H</b></a>
<a class="summary-letter" href="#Concept-Index_cp_letter-I"><b>I</b></a>
<a class="summary-letter" href="#Concept-Index_cp_letter-J"><b>J</b></a>
<a class="summary-letter" href="#Concept-Index_cp_letter-K"><b>K</b></a>
<a class="summary-letter" href="#Concept-Index_cp_letter-L"><b>L</b></a>
<a class="summary-letter" href="#Concept-Index_cp_letter-M"><b>M</b></a>
<a class="summary-letter" href="#Concept-Index_cp_letter-N"><b>N</b></a>
<a class="summary-letter" href="#Concept-Index_cp_letter-O"><b>O</b></a>
<a class="summary-letter" href="#Concept-Index_cp_letter-P"><b>P</b></a>
<a class="summary-letter" href="#Concept-Index_cp_letter-Q"><b>Q</b></a>
<a class="summary-letter" href="#Concept-Index_cp_letter-R"><b>R</b></a>
<a class="summary-letter" href="#Concept-Index_cp_letter-S"><b>S</b></a>
<a class="summary-letter" href="#Concept-Index_cp_letter-T"><b>T</b></a>
<a class="summary-letter" href="#Concept-Index_cp_letter-U"><b>U</b></a>
<a class="summary-letter" href="#Concept-Index_cp_letter-V"><b>V</b></a>
<a class="summary-letter" href="#Concept-Index_cp_letter-W"><b>W</b></a>
<a class="summary-letter" href="#Concept-Index_cp_letter-Y"><b>Y</b></a>
<a class="summary-letter" href="#Concept-Index_cp_letter-Z"><b>Z</b></a>
</td></tr></table>
<table class="index-cp" border="0">
<tr><td></td><th align="left">Index Entry</th><td> </td><th align="left"> Section</th></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th><a name="Concept-Index_cp_symbol-1">$</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="Conventions-used-in-this-manual.html#index-_0024_002c-shell-prompt"><code>$</code>, shell prompt</a>:</td><td> </td><td valign="top"><a href="Conventions-used-in-this-manual.html#Conventions-used-in-this-manual">Conventions used in this manual</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th><a name="Concept-Index_cp_symbol-2">2</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="Two-dimensional-histograms.html#index-2D-histograms">2D histograms</a>:</td><td> </td><td valign="top"><a href="Two-dimensional-histograms.html#Two-dimensional-histograms">Two dimensional histograms</a></td></tr>
<tr><td></td><td valign="top"><a href="Spherical-Vector-Distributions.html#index-2D-random-direction-vector">2D random direction vector</a>:</td><td> </td><td valign="top"><a href="Spherical-Vector-Distributions.html#Spherical-Vector-Distributions">Spherical Vector Distributions</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th><a name="Concept-Index_cp_symbol-3">3</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="Coupling-Coefficients.html#index-3_002dj-symbols">3-j symbols</a>:</td><td> </td><td valign="top"><a href="Coupling-Coefficients.html#Coupling-Coefficients">Coupling Coefficients</a></td></tr>
<tr><td></td><td valign="top"><a href="Spherical-Vector-Distributions.html#index-3D-random-direction-vector">3D random direction vector</a>:</td><td> </td><td valign="top"><a href="Spherical-Vector-Distributions.html#Spherical-Vector-Distributions">Spherical Vector Distributions</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th><a name="Concept-Index_cp_symbol-4">6</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="Coupling-Coefficients.html#index-6_002dj-symbols">6-j symbols</a>:</td><td> </td><td valign="top"><a href="Coupling-Coefficients.html#Coupling-Coefficients">Coupling Coefficients</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th><a name="Concept-Index_cp_symbol-5">9</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="Coupling-Coefficients.html#index-9_002dj-symbols">9-j symbols</a>:</td><td> </td><td valign="top"><a href="Coupling-Coefficients.html#Coupling-Coefficients">Coupling Coefficients</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th><a name="Concept-Index_cp_letter-A">A</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="Series-Acceleration.html#index-acceleration-of-series">acceleration of series</a>:</td><td> </td><td valign="top"><a href="Series-Acceleration.html#Series-Acceleration">Series Acceleration</a></td></tr>
<tr><td></td><td valign="top"><a href="Elementary-Functions.html#index-acosh">acosh</a>:</td><td> </td><td valign="top"><a href="Elementary-Functions.html#Elementary-Functions">Elementary Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Stepping-Functions.html#index-Adams-method">Adams method</a>:</td><td> </td><td valign="top"><a href="Stepping-Functions.html#Stepping-Functions">Stepping Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Adaptive-Step_002dsize-Control.html#index-Adaptive-step_002dsize-control_002c-differential-equations">Adaptive step-size control, differential equations</a>:</td><td> </td><td valign="top"><a href="Adaptive-Step_002dsize-Control.html#Adaptive-Step_002dsize-Control">Adaptive Step-size Control</a></td></tr>
<tr><td></td><td valign="top"><a href="Airy-Functions-and-Derivatives.html#index-Ai_0028x_0029">Ai(x)</a>:</td><td> </td><td valign="top"><a href="Airy-Functions-and-Derivatives.html#Airy-Functions-and-Derivatives">Airy Functions and Derivatives</a></td></tr>
<tr><td></td><td valign="top"><a href="Airy-Functions-and-Derivatives.html#index-Airy-functions">Airy functions</a>:</td><td> </td><td valign="top"><a href="Airy-Functions-and-Derivatives.html#Airy-Functions-and-Derivatives">Airy Functions and Derivatives</a></td></tr>
<tr><td></td><td valign="top"><a href="1D-Interpolation-Types.html#index-Akima-splines">Akima splines</a>:</td><td> </td><td valign="top"><a href="1D-Interpolation-Types.html#g_t1D-Interpolation-Types">1D Interpolation Types</a></td></tr>
<tr><td></td><td valign="top"><a href="Aliasing-of-arrays.html#index-aliasing-of-arrays">aliasing of arrays</a>:</td><td> </td><td valign="top"><a href="Aliasing-of-arrays.html#Aliasing-of-arrays">Aliasing of arrays</a></td></tr>
<tr><td></td><td valign="top"><a href="Alternative-optimized-functions.html#index-alternative-optimized-functions">alternative optimized functions</a>:</td><td> </td><td valign="top"><a href="Alternative-optimized-functions.html#Alternative-optimized-functions">Alternative optimized functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Level-1-GSL-BLAS-Interface.html#index-AMAX_002c-Level_002d1-BLAS">AMAX, Level-1 BLAS</a>:</td><td> </td><td valign="top"><a href="Level-1-GSL-BLAS-Interface.html#Level-1-GSL-BLAS-Interface">Level 1 GSL BLAS Interface</a></td></tr>
<tr><td></td><td valign="top"><a href="Angular-Mathieu-Functions.html#index-Angular-Mathieu-Functions">Angular Mathieu Functions</a>:</td><td> </td><td valign="top"><a href="Angular-Mathieu-Functions.html#Angular-Mathieu-Functions">Angular Mathieu Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Restriction-Functions.html#index-angular-reduction">angular reduction</a>:</td><td> </td><td valign="top"><a href="Restriction-Functions.html#Restriction-Functions">Restriction Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Using-the-library.html#index-ANSI-C_002c-use-of">ANSI C, use of</a>:</td><td> </td><td valign="top"><a href="Using-the-library.html#Using-the-library">Using the library</a></td></tr>
<tr><td></td><td valign="top"><a href="Pochhammer-Symbol.html#index-Apell-symbol_002c-see-Pochhammer-symbol">Apell symbol, see Pochhammer symbol</a>:</td><td> </td><td valign="top"><a href="Pochhammer-Symbol.html#Pochhammer-Symbol">Pochhammer Symbol</a></td></tr>
<tr><td></td><td valign="top"><a href="Approximate-Comparison-of-Floating-Point-Numbers.html#index-approximate-comparison-of-floating-point-numbers">approximate comparison of floating point numbers</a>:</td><td> </td><td valign="top"><a href="Approximate-Comparison-of-Floating-Point-Numbers.html#Approximate-Comparison-of-Floating-Point-Numbers">Approximate Comparison of Floating Point Numbers</a></td></tr>
<tr><td></td><td valign="top"><a href="Arctangent-Integral.html#index-arctangent-integral">arctangent integral</a>:</td><td> </td><td valign="top"><a href="Arctangent-Integral.html#Arctangent-Integral">Arctangent Integral</a></td></tr>
<tr><td></td><td valign="top"><a href="Properties-of-complex-numbers.html#index-argument-of-complex-number">argument of complex number</a>:</td><td> </td><td valign="top"><a href="Properties-of-complex-numbers.html#Properties-of-complex-numbers">Properties of complex numbers</a></td></tr>
<tr><td></td><td valign="top"><a href="Setting-up-your-IEEE-environment.html#index-arithmetic-exceptions">arithmetic exceptions</a>:</td><td> </td><td valign="top"><a href="Setting-up-your-IEEE-environment.html#Setting-up-your-IEEE-environment">Setting up your IEEE environment</a></td></tr>
<tr><td></td><td valign="top"><a href="Elementary-Functions.html#index-asinh">asinh</a>:</td><td> </td><td valign="top"><a href="Elementary-Functions.html#Elementary-Functions">Elementary Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Astronomy-and-Astrophysics.html#index-astronomical-constants">astronomical constants</a>:</td><td> </td><td valign="top"><a href="Astronomy-and-Astrophysics.html#Astronomy-and-Astrophysics">Astronomy and Astrophysics</a></td></tr>
<tr><td></td><td valign="top"><a href="Level-1-GSL-BLAS-Interface.html#index-ASUM_002c-Level_002d1-BLAS">ASUM, Level-1 BLAS</a>:</td><td> </td><td valign="top"><a href="Level-1-GSL-BLAS-Interface.html#Level-1-GSL-BLAS-Interface">Level 1 GSL BLAS Interface</a></td></tr>
<tr><td></td><td valign="top"><a href="Elementary-Functions.html#index-atanh">atanh</a>:</td><td> </td><td valign="top"><a href="Elementary-Functions.html#Elementary-Functions">Elementary Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Atomic-and-Nuclear-Physics.html#index-atomic-physics_002c-constants">atomic physics, constants</a>:</td><td> </td><td valign="top"><a href="Atomic-and-Nuclear-Physics.html#Atomic-and-Nuclear-Physics">Atomic and Nuclear Physics</a></td></tr>
<tr><td></td><td valign="top"><a href="Autoconf-Macros.html#index-autoconf_002c-using-with-GSL">autoconf, using with GSL</a>:</td><td> </td><td valign="top"><a href="Autoconf-Macros.html#Autoconf-Macros">Autoconf Macros</a></td></tr>
<tr><td></td><td valign="top"><a href="Level-1-GSL-BLAS-Interface.html#index-AXPY_002c-Level_002d1-BLAS">AXPY, Level-1 BLAS</a>:</td><td> </td><td valign="top"><a href="Level-1-GSL-BLAS-Interface.html#Level-1-GSL-BLAS-Interface">Level 1 GSL BLAS Interface</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th><a name="Concept-Index_cp_letter-B">B</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="DWT-Initialization.html#index-B_002dspline-wavelets">B-spline wavelets</a>:</td><td> </td><td valign="top"><a href="DWT-Initialization.html#DWT-Initialization">DWT Initialization</a></td></tr>
<tr><td></td><td valign="top"><a href="Stepping-Functions.html#index-Bader-and-Deuflhard_002c-Bulirsch_002dStoer-method_002e">Bader and Deuflhard, Bulirsch-Stoer method.</a>:</td><td> </td><td valign="top"><a href="Stepping-Functions.html#Stepping-Functions">Stepping Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Balancing.html#index-balancing-matrices">balancing matrices</a>:</td><td> </td><td valign="top"><a href="Balancing.html#Balancing">Balancing</a></td></tr>
<tr><td></td><td valign="top"><a href="BLAS-Support.html#index-Basic-Linear-Algebra-Subroutines-_0028BLAS_0029">Basic Linear Algebra Subroutines (BLAS)</a>:</td><td> </td><td valign="top"><a href="BLAS-Support.html#BLAS-Support">BLAS Support</a></td></tr>
<tr><td></td><td valign="top"><a href="GSL-CBLAS-Library.html#index-Basic-Linear-Algebra-Subroutines-_0028BLAS_0029-1">Basic Linear Algebra Subroutines (BLAS)</a>:</td><td> </td><td valign="top"><a href="GSL-CBLAS-Library.html#GSL-CBLAS-Library">GSL CBLAS Library</a></td></tr>
<tr><td></td><td valign="top"><a href="Basis-Splines.html#index-basis-splines_002c-B_002dsplines">basis splines, B-splines</a>:</td><td> </td><td valign="top"><a href="Basis-Splines.html#Basis-Splines">Basis Splines</a></td></tr>
<tr><td></td><td valign="top"><a href="Evaluation-of-B_002dspline-basis-function-derivatives.html#index-basis-splines_002c-derivatives">basis splines, derivatives</a>:</td><td> </td><td valign="top"><a href="Evaluation-of-B_002dspline-basis-function-derivatives.html#Evaluation-of-B_002dspline-basis-function-derivatives">Evaluation of B-spline basis function derivatives</a></td></tr>
<tr><td></td><td valign="top"><a href="Evaluation-of-B_002dspline-basis-functions.html#index-basis-splines_002c-evaluation">basis splines, evaluation</a>:</td><td> </td><td valign="top"><a href="Evaluation-of-B_002dspline-basis-functions.html#Evaluation-of-B_002dspline-basis-functions">Evaluation of B-spline basis functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Example-programs-for-B_002dsplines.html#index-basis-splines_002c-examples">basis splines, examples</a>:</td><td> </td><td valign="top"><a href="Example-programs-for-B_002dsplines.html#Example-programs-for-B_002dsplines">Example programs for B-splines</a></td></tr>
<tr><td></td><td valign="top"><a href="Working-with-the-Greville-abscissae.html#index-basis-splines_002c-Greville-abscissae">basis splines, Greville abscissae</a>:</td><td> </td><td valign="top"><a href="Working-with-the-Greville-abscissae.html#Working-with-the-Greville-abscissae">Working with the Greville abscissae</a></td></tr>
<tr><td></td><td valign="top"><a href="Initializing-the-B_002dsplines-solver.html#index-basis-splines_002c-initializing">basis splines, initializing</a>:</td><td> </td><td valign="top"><a href="Initializing-the-B_002dsplines-solver.html#Initializing-the-B_002dsplines-solver">Initializing the B-splines solver</a></td></tr>
<tr><td></td><td valign="top"><a href="Working-with-the-Greville-abscissae.html#index-basis-splines_002c-Marsden_002dSchoenberg-points">basis splines, Marsden-Schoenberg points</a>:</td><td> </td><td valign="top"><a href="Working-with-the-Greville-abscissae.html#Working-with-the-Greville-abscissae">Working with the Greville abscissae</a></td></tr>
<tr><td></td><td valign="top"><a href="Overview-of-B_002dsplines.html#index-basis-splines_002c-overview">basis splines, overview</a>:</td><td> </td><td valign="top"><a href="Overview-of-B_002dsplines.html#Overview-of-B_002dsplines">Overview of B-splines</a></td></tr>
<tr><td></td><td valign="top"><a href="Stepping-Functions.html#index-BDF-method">BDF method</a>:</td><td> </td><td valign="top"><a href="Stepping-Functions.html#Stepping-Functions">Stepping Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="The-Bernoulli-Distribution.html#index-Bernoulli-trial_002c-random-variates">Bernoulli trial, random variates</a>:</td><td> </td><td valign="top"><a href="The-Bernoulli-Distribution.html#The-Bernoulli-Distribution">The Bernoulli Distribution</a></td></tr>
<tr><td></td><td valign="top"><a href="Bessel-Functions.html#index-Bessel-functions">Bessel functions</a>:</td><td> </td><td valign="top"><a href="Bessel-Functions.html#Bessel-Functions">Bessel Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Regular-Bessel-Function-_002d-Fractional-Order.html#index-Bessel-Functions_002c-Fractional-Order">Bessel Functions, Fractional Order</a>:</td><td> </td><td valign="top"><a href="Regular-Bessel-Function-_002d-Fractional-Order.html#Regular-Bessel-Function-_002d-Fractional-Order">Regular Bessel Function - Fractional Order</a></td></tr>
<tr><td></td><td valign="top"><a href="Nonlinear-Least_002dSquares-Covariance-Matrix.html#index-best_002dfit-parameters_002c-covariance">best-fit parameters, covariance</a>:</td><td> </td><td valign="top"><a href="Nonlinear-Least_002dSquares-Covariance-Matrix.html#Nonlinear-Least_002dSquares-Covariance-Matrix">Nonlinear Least-Squares Covariance Matrix</a></td></tr>
<tr><td></td><td valign="top"><a href="The-Beta-Distribution.html#index-Beta-distribution">Beta distribution</a>:</td><td> </td><td valign="top"><a href="The-Beta-Distribution.html#The-Beta-Distribution">The Beta Distribution</a></td></tr>
<tr><td></td><td valign="top"><a href="Beta-Functions.html#index-Beta-function">Beta function</a>:</td><td> </td><td valign="top"><a href="Beta-Functions.html#Beta-Functions">Beta Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Incomplete-Beta-Function.html#index-Beta-function_002c-incomplete-normalized">Beta function, incomplete normalized</a>:</td><td> </td><td valign="top"><a href="Incomplete-Beta-Function.html#Incomplete-Beta-Function">Incomplete Beta Function</a></td></tr>
<tr><td></td><td valign="top"><a href="Multimin-Algorithms-with-Derivatives.html#index-BFGS-algorithm_002c-minimization">BFGS algorithm, minimization</a>:</td><td> </td><td valign="top"><a href="Multimin-Algorithms-with-Derivatives.html#Multimin-Algorithms-with-Derivatives">Multimin Algorithms with Derivatives</a></td></tr>
<tr><td></td><td valign="top"><a href="Airy-Functions-and-Derivatives.html#index-Bi_0028x_0029">Bi(x)</a>:</td><td> </td><td valign="top"><a href="Airy-Functions-and-Derivatives.html#Airy-Functions-and-Derivatives">Airy Functions and Derivatives</a></td></tr>
<tr><td></td><td valign="top"><a href="Representation-of-floating-point-numbers.html#index-bias_002c-IEEE-format">bias, IEEE format</a>:</td><td> </td><td valign="top"><a href="Representation-of-floating-point-numbers.html#Representation-of-floating-point-numbers">Representation of floating point numbers</a></td></tr>
<tr><td></td><td valign="top"><a href="2D-Interpolation-Types.html#index-bicubic-interpolation">bicubic interpolation</a>:</td><td> </td><td valign="top"><a href="2D-Interpolation-Types.html#g_t2D-Interpolation-Types">2D Interpolation Types</a></td></tr>
<tr><td></td><td valign="top"><a href="Bidiagonalization.html#index-bidiagonalization-of-real-matrices">bidiagonalization of real matrices</a>:</td><td> </td><td valign="top"><a href="Bidiagonalization.html#Bidiagonalization">Bidiagonalization</a></td></tr>
<tr><td></td><td valign="top"><a href="2D-Interpolation-Types.html#index-bilinear-interpolation">bilinear interpolation</a>:</td><td> </td><td valign="top"><a href="2D-Interpolation-Types.html#g_t2D-Interpolation-Types">2D Interpolation Types</a></td></tr>
<tr><td></td><td valign="top"><a href="Histograms.html#index-binning-data">binning data</a>:</td><td> </td><td valign="top"><a href="Histograms.html#Histograms">Histograms</a></td></tr>
<tr><td></td><td valign="top"><a href="The-Binomial-Distribution.html#index-Binomial-random-variates">Binomial random variates</a>:</td><td> </td><td valign="top"><a href="The-Binomial-Distribution.html#The-Binomial-Distribution">The Binomial Distribution</a></td></tr>
<tr><td></td><td valign="top"><a href="DWT-Initialization.html#index-biorthogonal-wavelets">biorthogonal wavelets</a>:</td><td> </td><td valign="top"><a href="DWT-Initialization.html#DWT-Initialization">DWT Initialization</a></td></tr>
<tr><td></td><td valign="top"><a href="Root-Bracketing-Algorithms.html#index-bisection-algorithm-for-finding-roots">bisection algorithm for finding roots</a>:</td><td> </td><td valign="top"><a href="Root-Bracketing-Algorithms.html#Root-Bracketing-Algorithms">Root Bracketing Algorithms</a></td></tr>
<tr><td></td><td valign="top"><a href="The-Bivariate-Gaussian-Distribution.html#index-Bivariate-Gaussian-distribution">Bivariate Gaussian distribution</a>:</td><td> </td><td valign="top"><a href="The-Bivariate-Gaussian-Distribution.html#The-Bivariate-Gaussian-Distribution">The Bivariate Gaussian Distribution</a></td></tr>
<tr><td></td><td valign="top"><a href="The-Multivariate-Gaussian-Distribution.html#index-Bivariate-Gaussian-distribution-1">Bivariate Gaussian distribution</a>:</td><td> </td><td valign="top"><a href="The-Multivariate-Gaussian-Distribution.html#The-Multivariate-Gaussian-Distribution">The Multivariate Gaussian Distribution</a></td></tr>
<tr><td></td><td valign="top"><a href="BLAS-Support.html#index-BLAS">BLAS</a>:</td><td> </td><td valign="top"><a href="BLAS-Support.html#BLAS-Support">BLAS Support</a></td></tr>
<tr><td></td><td valign="top"><a href="GSL-CBLAS-Library.html#index-BLAS_002c-Low_002dlevel-C-interface">BLAS, Low-level C interface</a>:</td><td> </td><td valign="top"><a href="GSL-CBLAS-Library.html#GSL-CBLAS-Library">GSL CBLAS Library</a></td></tr>
<tr><td></td><td valign="top"><a href="Sparse-BLAS-Support.html#index-BLAS_002c-sparse">BLAS, sparse</a>:</td><td> </td><td valign="top"><a href="Sparse-BLAS-Support.html#Sparse-BLAS-Support">Sparse BLAS Support</a></td></tr>
<tr><td></td><td valign="top"><a href="Vectors-and-Matrices.html#index-blocks">blocks</a>:</td><td> </td><td valign="top"><a href="Vectors-and-Matrices.html#Vectors-and-Matrices">Vectors and Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Accessing-vector-elements.html#index-bounds-checking_002c-extension-to-GCC">bounds checking, extension to GCC</a>:</td><td> </td><td valign="top"><a href="Accessing-vector-elements.html#Accessing-vector-elements">Accessing vector elements</a></td></tr>
<tr><td></td><td valign="top"><a href="Using-gdb.html#index-breakpoints">breakpoints</a>:</td><td> </td><td valign="top"><a href="Using-gdb.html#Using-gdb">Using gdb</a></td></tr>
<tr><td></td><td valign="top"><a href="Minimization-Algorithms.html#index-Brent_0027s-method-for-finding-minima">Brent’s method for finding minima</a>:</td><td> </td><td valign="top"><a href="Minimization-Algorithms.html#Minimization-Algorithms">Minimization Algorithms</a></td></tr>
<tr><td></td><td valign="top"><a href="Root-Bracketing-Algorithms.html#index-Brent_0027s-method-for-finding-roots">Brent’s method for finding roots</a>:</td><td> </td><td valign="top"><a href="Root-Bracketing-Algorithms.html#Root-Bracketing-Algorithms">Root Bracketing Algorithms</a></td></tr>
<tr><td></td><td valign="top"><a href="Algorithms-without-Derivatives.html#index-Broyden-algorithm-for-multidimensional-roots">Broyden algorithm for multidimensional roots</a>:</td><td> </td><td valign="top"><a href="Algorithms-without-Derivatives.html#Algorithms-without-Derivatives">Algorithms without Derivatives</a></td></tr>
<tr><td></td><td valign="top"><a href="Unix-random-number-generators.html#index-BSD-random-number-generator">BSD random number generator</a>:</td><td> </td><td valign="top"><a href="Unix-random-number-generators.html#Unix-random-number-generators">Unix random number generators</a></td></tr>
<tr><td></td><td valign="top"><a href="Reporting-Bugs.html#index-bug_002dgsl-mailing-list">bug-gsl mailing list</a>:</td><td> </td><td valign="top"><a href="Reporting-Bugs.html#Reporting-Bugs">Reporting Bugs</a></td></tr>
<tr><td></td><td valign="top"><a href="Reporting-Bugs.html#index-bugs_002c-how-to-report">bugs, how to report</a>:</td><td> </td><td valign="top"><a href="Reporting-Bugs.html#Reporting-Bugs">Reporting Bugs</a></td></tr>
<tr><td></td><td valign="top"><a href="Stepping-Functions.html#index-Bulirsch_002dStoer-method">Bulirsch-Stoer method</a>:</td><td> </td><td valign="top"><a href="Stepping-Functions.html#Stepping-Functions">Stepping Functions</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th><a name="Concept-Index_cp_letter-C">C</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="Using-the-library.html#index-C-extensions_002c-compatible-use-of">C extensions, compatible use of</a>:</td><td> </td><td valign="top"><a href="Using-the-library.html#Using-the-library">Using the library</a></td></tr>
<tr><td></td><td valign="top"><a href="Compatibility-with-C_002b_002b.html#index-C_002b_002b_002c-compatibility">C++, compatibility</a>:</td><td> </td><td valign="top"><a href="Compatibility-with-C_002b_002b.html#Compatibility-with-C_002b_002b">Compatibility with C++</a></td></tr>
<tr><td></td><td valign="top"><a href="Inline-functions.html#index-C99_002c-inline-keyword">C99, inline keyword</a>:</td><td> </td><td valign="top"><a href="Inline-functions.html#Inline-functions">Inline functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Definition-of-Carlson-Forms.html#index-Carlson-forms-of-Elliptic-integrals">Carlson forms of Elliptic integrals</a>:</td><td> </td><td valign="top"><a href="Definition-of-Carlson-Forms.html#Definition-of-Carlson-Forms">Definition of Carlson Forms</a></td></tr>
<tr><td></td><td valign="top"><a href="Stepping-Functions.html#index-Cash_002dKarp_002c-Runge_002dKutta-method">Cash-Karp, Runge-Kutta method</a>:</td><td> </td><td valign="top"><a href="Stepping-Functions.html#Stepping-Functions">Stepping Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="The-Cauchy-Distribution.html#index-Cauchy-distribution">Cauchy distribution</a>:</td><td> </td><td valign="top"><a href="The-Cauchy-Distribution.html#The-Cauchy-Distribution">The Cauchy Distribution</a></td></tr>
<tr><td></td><td valign="top"><a href="QAWC-adaptive-integration-for-Cauchy-principal-values.html#index-Cauchy-principal-value_002c-by-numerical-quadrature">Cauchy principal value, by numerical quadrature</a>:</td><td> </td><td valign="top"><a href="QAWC-adaptive-integration-for-Cauchy-principal-values.html#QAWC-adaptive-integration-for-Cauchy-principal-values">QAWC adaptive integration for Cauchy principal values</a></td></tr>
<tr><td></td><td valign="top"><a href="BLAS-Support.html#index-CBLAS">CBLAS</a>:</td><td> </td><td valign="top"><a href="BLAS-Support.html#BLAS-Support">BLAS Support</a></td></tr>
<tr><td></td><td valign="top"><a href="GSL-CBLAS-Library.html#index-CBLAS_002c-Low_002dlevel-interface">CBLAS, Low-level interface</a>:</td><td> </td><td valign="top"><a href="GSL-CBLAS-Library.html#GSL-CBLAS-Library">GSL CBLAS Library</a></td></tr>
<tr><td></td><td valign="top"><a href="Random-Number-Distributions.html#index-CDFs_002c-cumulative-distribution-functions">CDFs, cumulative distribution functions</a>:</td><td> </td><td valign="top"><a href="Random-Number-Distributions.html#Random-Number-Distributions">Random Number Distributions</a></td></tr>
<tr><td></td><td valign="top"><a href="Angular-Mathieu-Functions.html#index-ce_0028q_002cx_0029_002c-Mathieu-function"><em>ce(q,x)</em>, Mathieu function</a>:</td><td> </td><td valign="top"><a href="Angular-Mathieu-Functions.html#Angular-Mathieu-Functions">Angular Mathieu Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Chebyshev-Approximations.html#index-Chebyshev-series">Chebyshev series</a>:</td><td> </td><td valign="top"><a href="Chebyshev-Approximations.html#Chebyshev-Approximations">Chebyshev Approximations</a></td></tr>
<tr><td></td><td valign="top"><a href="Combination-properties.html#index-checking-combination-for-validity">checking combination for validity</a>:</td><td> </td><td valign="top"><a href="Combination-properties.html#Combination-properties">Combination properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Multiset-properties.html#index-checking-multiset-for-validity">checking multiset for validity</a>:</td><td> </td><td valign="top"><a href="Multiset-properties.html#Multiset-properties">Multiset properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Permutation-properties.html#index-checking-permutation-for-validity">checking permutation for validity</a>:</td><td> </td><td valign="top"><a href="Permutation-properties.html#Permutation-properties">Permutation properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Hyperbolic-Integrals.html#index-Chi_0028x_0029">Chi(x)</a>:</td><td> </td><td valign="top"><a href="Hyperbolic-Integrals.html#Hyperbolic-Integrals">Hyperbolic Integrals</a></td></tr>
<tr><td></td><td valign="top"><a href="The-Chi_002dsquared-Distribution.html#index-Chi_002dsquared-distribution">Chi-squared distribution</a>:</td><td> </td><td valign="top"><a href="The-Chi_002dsquared-Distribution.html#The-Chi_002dsquared-Distribution">The Chi-squared Distribution</a></td></tr>
<tr><td></td><td valign="top"><a href="Cholesky-Decomposition.html#index-Cholesky-decomposition">Cholesky decomposition</a>:</td><td> </td><td valign="top"><a href="Cholesky-Decomposition.html#Cholesky-Decomposition">Cholesky Decomposition</a></td></tr>
<tr><td></td><td valign="top"><a href="Modified-Cholesky-Decomposition.html#index-Cholesky-decomposition_002c-modified">Cholesky decomposition, modified</a>:</td><td> </td><td valign="top"><a href="Modified-Cholesky-Decomposition.html#Modified-Cholesky-Decomposition">Modified Cholesky Decomposition</a></td></tr>
<tr><td></td><td valign="top"><a href="Pivoted-Cholesky-Decomposition.html#index-Cholesky-decomposition_002c-pivoted">Cholesky decomposition, pivoted</a>:</td><td> </td><td valign="top"><a href="Pivoted-Cholesky-Decomposition.html#Pivoted-Cholesky-Decomposition">Pivoted Cholesky Decomposition</a></td></tr>
<tr><td></td><td valign="top"><a href="Trigonometric-Integrals.html#index-Ci_0028x_0029">Ci(x)</a>:</td><td> </td><td valign="top"><a href="Trigonometric-Integrals.html#Trigonometric-Integrals">Trigonometric Integrals</a></td></tr>
<tr><td></td><td valign="top"><a href="Clausen-Functions.html#index-Clausen-functions">Clausen functions</a>:</td><td> </td><td valign="top"><a href="Clausen-Functions.html#Clausen-Functions">Clausen Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Integrands-with-weight-functions.html#index-Clenshaw_002dCurtis-quadrature">Clenshaw-Curtis quadrature</a>:</td><td> </td><td valign="top"><a href="Integrands-with-weight-functions.html#Integrands-with-weight-functions">Integrands with weight functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Random-number-generator-algorithms.html#index-CMRG_002c-combined-multiple-recursive-random-number-generator">CMRG, combined multiple recursive random number generator</a>:</td><td> </td><td valign="top"><a href="Random-number-generator-algorithms.html#Random-number-generator-algorithms">Random number generator algorithms</a></td></tr>
<tr><td></td><td valign="top"><a href="Code-Reuse.html#index-code-reuse-in-applications">code reuse in applications</a>:</td><td> </td><td valign="top"><a href="Code-Reuse.html#Code-Reuse">Code Reuse</a></td></tr>
<tr><td></td><td valign="top"><a href="Combinations.html#index-combinations">combinations</a>:</td><td> </td><td valign="top"><a href="Combinations.html#Combinations">Combinations</a></td></tr>
<tr><td></td><td valign="top"><a href="Factorials.html#index-combinatorial-factor-C_0028m_002cn_0029">combinatorial factor C(m,n)</a>:</td><td> </td><td valign="top"><a href="Factorials.html#Factorials">Factorials</a></td></tr>
<tr><td></td><td valign="top"><a href="Simulated-Annealing.html#index-combinatorial-optimization">combinatorial optimization</a>:</td><td> </td><td valign="top"><a href="Simulated-Annealing.html#Simulated-Annealing">Simulated Annealing</a></td></tr>
<tr><td></td><td valign="top"><a href="Sorting-objects.html#index-comparison-functions_002c-definition">comparison functions, definition</a>:</td><td> </td><td valign="top"><a href="Sorting-objects.html#Sorting-objects">Sorting objects</a></td></tr>
<tr><td></td><td valign="top"><a href="Using-the-library.html#index-compatibility">compatibility</a>:</td><td> </td><td valign="top"><a href="Using-the-library.html#Using-the-library">Using the library</a></td></tr>
<tr><td></td><td valign="top"><a href="Compiling-and-Linking.html#index-compiling-programs_002c-include-paths">compiling programs, include paths</a>:</td><td> </td><td valign="top"><a href="Compiling-and-Linking.html#Compiling-and-Linking">Compiling and Linking</a></td></tr>
<tr><td></td><td valign="top"><a href="Linking-programs-with-the-library.html#index-compiling-programs_002c-library-paths">compiling programs, library paths</a>:</td><td> </td><td valign="top"><a href="Linking-programs-with-the-library.html#Linking-programs-with-the-library">Linking programs with the library</a></td></tr>
<tr><td></td><td valign="top"><a href="Incomplete-Gamma-Functions.html#index-complementary-incomplete-Gamma-function">complementary incomplete Gamma function</a>:</td><td> </td><td valign="top"><a href="Incomplete-Gamma-Functions.html#Incomplete-Gamma-Functions">Incomplete Gamma Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Complete-Fermi_002dDirac-Integrals.html#index-complete-Fermi_002dDirac-integrals">complete Fermi-Dirac integrals</a>:</td><td> </td><td valign="top"><a href="Complete-Fermi_002dDirac-Integrals.html#Complete-Fermi_002dDirac-Integrals">Complete Fermi-Dirac Integrals</a></td></tr>
<tr><td></td><td valign="top"><a href="Complex-arithmetic-operators.html#index-complex-arithmetic">complex arithmetic</a>:</td><td> </td><td valign="top"><a href="Complex-arithmetic-operators.html#Complex-arithmetic-operators">Complex arithmetic operators</a></td></tr>
<tr><td></td><td valign="top"><a href="Trigonometric-Functions-for-Complex-Arguments.html#index-complex-cosine-function_002c-special-functions">complex cosine function, special functions</a>:</td><td> </td><td valign="top"><a href="Trigonometric-Functions-for-Complex-Arguments.html#Trigonometric-Functions-for-Complex-Arguments">Trigonometric Functions for Complex Arguments</a></td></tr>
<tr><td></td><td valign="top"><a href="Gamma-Functions.html#index-Complex-Gamma-function">Complex Gamma function</a>:</td><td> </td><td valign="top"><a href="Gamma-Functions.html#Gamma-Functions">Gamma Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Complex-Hermitian-Matrices.html#index-complex-hermitian-matrix_002c-eigensystem">complex hermitian matrix, eigensystem</a>:</td><td> </td><td valign="top"><a href="Complex-Hermitian-Matrices.html#Complex-Hermitian-Matrices">Complex Hermitian Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Trigonometric-Functions-for-Complex-Arguments.html#index-complex-log-sine-function_002c-special-functions">complex log sine function, special functions</a>:</td><td> </td><td valign="top"><a href="Trigonometric-Functions-for-Complex-Arguments.html#Trigonometric-Functions-for-Complex-Arguments">Trigonometric Functions for Complex Arguments</a></td></tr>
<tr><td></td><td valign="top"><a href="Complex-Numbers.html#index-complex-numbers">complex numbers</a>:</td><td> </td><td valign="top"><a href="Complex-Numbers.html#Complex-Numbers">Complex Numbers</a></td></tr>
<tr><td></td><td valign="top"><a href="Circular-Trigonometric-Functions.html#index-complex-sinc-function_002c-special-functions">complex sinc function, special functions</a>:</td><td> </td><td valign="top"><a href="Circular-Trigonometric-Functions.html#Circular-Trigonometric-Functions">Circular Trigonometric Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Trigonometric-Functions-for-Complex-Arguments.html#index-complex-sine-function_002c-special-functions">complex sine function, special functions</a>:</td><td> </td><td valign="top"><a href="Trigonometric-Functions-for-Complex-Arguments.html#Trigonometric-Functions-for-Complex-Arguments">Trigonometric Functions for Complex Arguments</a></td></tr>
<tr><td></td><td valign="top"><a href="Laguerre-Functions.html#index-confluent-hypergeometric-function">confluent hypergeometric function</a>:</td><td> </td><td valign="top"><a href="Laguerre-Functions.html#Laguerre-Functions">Laguerre Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Hypergeometric-Functions.html#index-confluent-hypergeometric-functions">confluent hypergeometric functions</a>:</td><td> </td><td valign="top"><a href="Hypergeometric-Functions.html#Hypergeometric-Functions">Hypergeometric Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Legendre-Functions-and-Spherical-Harmonics.html#index-conical-functions">conical functions</a>:</td><td> </td><td valign="top"><a href="Legendre-Functions-and-Spherical-Harmonics.html#Legendre-Functions-and-Spherical-Harmonics">Legendre Functions and Spherical Harmonics</a></td></tr>
<tr><td></td><td valign="top"><a href="Multimin-Algorithms-with-Derivatives.html#index-Conjugate-gradient-algorithm_002c-minimization">Conjugate gradient algorithm, minimization</a>:</td><td> </td><td valign="top"><a href="Multimin-Algorithms-with-Derivatives.html#Multimin-Algorithms-with-Derivatives">Multimin Algorithms with Derivatives</a></td></tr>
<tr><td></td><td valign="top"><a href="Complex-arithmetic-operators.html#index-conjugate-of-complex-number">conjugate of complex number</a>:</td><td> </td><td valign="top"><a href="Complex-arithmetic-operators.html#Complex-arithmetic-operators">Complex arithmetic operators</a></td></tr>
<tr><td></td><td valign="top"><a href="Initializing-matrix-elements.html#index-constant-matrix">constant matrix</a>:</td><td> </td><td valign="top"><a href="Initializing-matrix-elements.html#Initializing-matrix-elements">Initializing matrix elements</a></td></tr>
<tr><td></td><td valign="top"><a href="Fundamental-Constants.html#index-constants_002c-fundamental">constants, fundamental</a>:</td><td> </td><td valign="top"><a href="Fundamental-Constants.html#Fundamental-Constants">Fundamental Constants</a></td></tr>
<tr><td></td><td valign="top"><a href="Mathematical-Constants.html#index-constants_002c-mathematical_002d_002d_002ddefined-as-macros">constants, mathematical—defined as macros</a>:</td><td> </td><td valign="top"><a href="Mathematical-Constants.html#Mathematical-Constants">Mathematical Constants</a></td></tr>
<tr><td></td><td valign="top"><a href="Physical-Constants.html#index-constants_002c-physical">constants, physical</a>:</td><td> </td><td valign="top"><a href="Physical-Constants.html#Physical-Constants">Physical Constants</a></td></tr>
<tr><td></td><td valign="top"><a href="Prefixes.html#index-constants_002c-prefixes">constants, prefixes</a>:</td><td> </td><td valign="top"><a href="Prefixes.html#Prefixes">Prefixes</a></td></tr>
<tr><td></td><td valign="top"><a href="Further-Information.html#index-contacting-the-GSL-developers">contacting the GSL developers</a>:</td><td> </td><td valign="top"><a href="Further-Information.html#Further-Information">Further Information</a></td></tr>
<tr><td></td><td valign="top"><a href="Conventions-used-in-this-manual.html#index-conventions_002c-used-in-manual">conventions, used in manual</a>:</td><td> </td><td valign="top"><a href="Conventions-used-in-this-manual.html#Conventions-used-in-this-manual">Conventions used in this manual</a></td></tr>
<tr><td></td><td valign="top"><a href="Series-Acceleration.html#index-convergence_002c-accelerating-a-series">convergence, accelerating a series</a>:</td><td> </td><td valign="top"><a href="Series-Acceleration.html#Series-Acceleration">Series Acceleration</a></td></tr>
<tr><td></td><td valign="top"><a href="Physical-Constants.html#index-conversion-of-units">conversion of units</a>:</td><td> </td><td valign="top"><a href="Physical-Constants.html#Physical-Constants">Physical Constants</a></td></tr>
<tr><td></td><td valign="top"><a href="Simulated-Annealing-algorithm.html#index-cooling-schedule">cooling schedule</a>:</td><td> </td><td valign="top"><a href="Simulated-Annealing-algorithm.html#Simulated-Annealing-algorithm">Simulated Annealing algorithm</a></td></tr>
<tr><td></td><td valign="top"><a href="Level-1-GSL-BLAS-Interface.html#index-COPY_002c-Level_002d1-BLAS">COPY, Level-1 BLAS</a>:</td><td> </td><td valign="top"><a href="Level-1-GSL-BLAS-Interface.html#Level-1-GSL-BLAS-Interface">Level 1 GSL BLAS Interface</a></td></tr>
<tr><td></td><td valign="top"><a href="Correlation.html#index-correlation_002c-of-two-datasets">correlation, of two datasets</a>:</td><td> </td><td valign="top"><a href="Correlation.html#Correlation">Correlation</a></td></tr>
<tr><td></td><td valign="top"><a href="Circular-Trigonometric-Functions.html#index-cosine-function_002c-special-functions">cosine function, special functions</a>:</td><td> </td><td valign="top"><a href="Circular-Trigonometric-Functions.html#Circular-Trigonometric-Functions">Circular Trigonometric Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Complex-Trigonometric-Functions.html#index-cosine-of-complex-number">cosine of complex number</a>:</td><td> </td><td valign="top"><a href="Complex-Trigonometric-Functions.html#Complex-Trigonometric-Functions">Complex Trigonometric Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Simulated-Annealing.html#index-cost-function">cost function</a>:</td><td> </td><td valign="top"><a href="Simulated-Annealing.html#Simulated-Annealing">Simulated Annealing</a></td></tr>
<tr><td></td><td valign="top"><a href="Coulomb-Functions.html#index-Coulomb-wave-functions">Coulomb wave functions</a>:</td><td> </td><td valign="top"><a href="Coulomb-Functions.html#Coulomb-Functions">Coulomb Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Coupling-Coefficients.html#index-coupling-coefficients">coupling coefficients</a>:</td><td> </td><td valign="top"><a href="Coupling-Coefficients.html#Coupling-Coefficients">Coupling Coefficients</a></td></tr>
<tr><td></td><td valign="top"><a href="Linear-regression-with-a-constant-term.html#index-covariance-matrix_002c-from-linear-regression">covariance matrix, from linear regression</a>:</td><td> </td><td valign="top"><a href="Linear-regression-with-a-constant-term.html#Linear-regression-with-a-constant-term">Linear regression with a constant term</a></td></tr>
<tr><td></td><td valign="top"><a href="Fitting-Overview.html#index-covariance-matrix_002c-linear-fits">covariance matrix, linear fits</a>:</td><td> </td><td valign="top"><a href="Fitting-Overview.html#Fitting-Overview">Fitting Overview</a></td></tr>
<tr><td></td><td valign="top"><a href="Nonlinear-Least_002dSquares-Covariance-Matrix.html#index-covariance-matrix_002c-nonlinear-fits">covariance matrix, nonlinear fits</a>:</td><td> </td><td valign="top"><a href="Nonlinear-Least_002dSquares-Covariance-Matrix.html#Nonlinear-Least_002dSquares-Covariance-Matrix">Nonlinear Least-Squares Covariance Matrix</a></td></tr>
<tr><td></td><td valign="top"><a href="Covariance.html#index-covariance_002c-of-two-datasets">covariance, of two datasets</a>:</td><td> </td><td valign="top"><a href="Covariance.html#Covariance">Covariance</a></td></tr>
<tr><td></td><td valign="top"><a href="CQUAD-doubly_002dadaptive-integration.html#index-cquad_002c-doubly_002dadaptive-integration">cquad, doubly-adaptive integration</a>:</td><td> </td><td valign="top"><a href="CQUAD-doubly_002dadaptive-integration.html#CQUAD-doubly_002dadaptive-integration">CQUAD doubly-adaptive integration</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-random-number-generators.html#index-CRAY-random-number-generator_002c-RANF">CRAY random number generator, RANF</a>:</td><td> </td><td valign="top"><a href="Other-random-number-generators.html#Other-random-number-generators">Other random number generators</a></td></tr>
<tr><td></td><td valign="top"><a href="Cubic-Equations.html#index-cubic-equation_002c-solving">cubic equation, solving</a>:</td><td> </td><td valign="top"><a href="Cubic-Equations.html#Cubic-Equations">Cubic Equations</a></td></tr>
<tr><td></td><td valign="top"><a href="1D-Interpolation-Types.html#index-cubic-splines">cubic splines</a>:</td><td> </td><td valign="top"><a href="1D-Interpolation-Types.html#g_t1D-Interpolation-Types">1D Interpolation Types</a></td></tr>
<tr><td></td><td valign="top"><a href="Random-Number-Distributions.html#index-cumulative-distribution-functions-_0028CDFs_0029">cumulative distribution functions (CDFs)</a>:</td><td> </td><td valign="top"><a href="Random-Number-Distributions.html#Random-Number-Distributions">Random Number Distributions</a></td></tr>
<tr><td></td><td valign="top"><a href="Regular-Cylindrical-Bessel-Functions.html#index-Cylindrical-Bessel-Functions">Cylindrical Bessel Functions</a>:</td><td> </td><td valign="top"><a href="Regular-Cylindrical-Bessel-Functions.html#Regular-Cylindrical-Bessel-Functions">Regular Cylindrical Bessel Functions</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th><a name="Concept-Index_cp_letter-D">D</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="DWT-Initialization.html#index-Daubechies-wavelets">Daubechies wavelets</a>:</td><td> </td><td valign="top"><a href="DWT-Initialization.html#DWT-Initialization">DWT Initialization</a></td></tr>
<tr><td></td><td valign="top"><a href="Dawson-Function.html#index-Dawson-function">Dawson function</a>:</td><td> </td><td valign="top"><a href="Dawson-Function.html#Dawson-Function">Dawson Function</a></td></tr>
<tr><td></td><td valign="top"><a href="Level-1-GSL-BLAS-Interface.html#index-DAXPY_002c-Level_002d1-BLAS">DAXPY, Level-1 BLAS</a>:</td><td> </td><td valign="top"><a href="Level-1-GSL-BLAS-Interface.html#Level-1-GSL-BLAS-Interface">Level 1 GSL BLAS Interface</a></td></tr>
<tr><td></td><td valign="top"><a href="Using-gdb.html#index-debugging-numerical-programs">debugging numerical programs</a>:</td><td> </td><td valign="top"><a href="Using-gdb.html#Using-gdb">Using gdb</a></td></tr>
<tr><td></td><td valign="top"><a href="Debye-Functions.html#index-Debye-functions">Debye functions</a>:</td><td> </td><td valign="top"><a href="Debye-Functions.html#Debye-Functions">Debye Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Representation-of-floating-point-numbers.html#index-denormalized-form_002c-IEEE-format">denormalized form, IEEE format</a>:</td><td> </td><td valign="top"><a href="Representation-of-floating-point-numbers.html#Representation-of-floating-point-numbers">Representation of floating point numbers</a></td></tr>
<tr><td></td><td valign="top"><a href="Deprecated-Functions.html#index-deprecated-functions">deprecated functions</a>:</td><td> </td><td valign="top"><a href="Deprecated-Functions.html#Deprecated-Functions">Deprecated Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Numerical-Differentiation.html#index-derivatives_002c-calculating-numerically">derivatives, calculating numerically</a>:</td><td> </td><td valign="top"><a href="Numerical-Differentiation.html#Numerical-Differentiation">Numerical Differentiation</a></td></tr>
<tr><td></td><td valign="top"><a href="LU-Decomposition.html#index-determinant-of-a-matrix_002c-by-LU-decomposition">determinant of a matrix, by LU decomposition</a>:</td><td> </td><td valign="top"><a href="LU-Decomposition.html#LU-Decomposition">LU Decomposition</a></td></tr>
<tr><td></td><td valign="top"><a href="Stepping-Functions.html#index-Deuflhard-and-Bader_002c-Bulirsch_002dStoer-method_002e">Deuflhard and Bader, Bulirsch-Stoer method.</a>:</td><td> </td><td valign="top"><a href="Stepping-Functions.html#Stepping-Functions">Stepping Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Fast-Fourier-Transforms.html#index-DFTs_002c-see-FFT">DFTs, see FFT</a>:</td><td> </td><td valign="top"><a href="Fast-Fourier-Transforms.html#Fast-Fourier-Transforms">Fast Fourier Transforms</a></td></tr>
<tr><td></td><td valign="top"><a href="Creating-row-and-column-views.html#index-diagonal_002c-of-a-matrix">diagonal, of a matrix</a>:</td><td> </td><td valign="top"><a href="Creating-row-and-column-views.html#Creating-row-and-column-views">Creating row and column views</a></td></tr>
<tr><td></td><td valign="top"><a href="Ordinary-Differential-Equations.html#index-differential-equations_002c-initial-value-problems">differential equations, initial value problems</a>:</td><td> </td><td valign="top"><a href="Ordinary-Differential-Equations.html#Ordinary-Differential-Equations">Ordinary Differential Equations</a></td></tr>
<tr><td></td><td valign="top"><a href="Numerical-Differentiation.html#index-differentiation-of-functions_002c-numeric">differentiation of functions, numeric</a>:</td><td> </td><td valign="top"><a href="Numerical-Differentiation.html#Numerical-Differentiation">Numerical Differentiation</a></td></tr>
<tr><td></td><td valign="top"><a href="Psi-_0028Digamma_0029-Function.html#index-digamma-function">digamma function</a>:</td><td> </td><td valign="top"><a href="Psi-_0028Digamma_0029-Function.html#Psi-_0028Digamma_0029-Function">Psi (Digamma) Function</a></td></tr>
<tr><td></td><td valign="top"><a href="Dilogarithm.html#index-dilogarithm">dilogarithm</a>:</td><td> </td><td valign="top"><a href="Dilogarithm.html#Dilogarithm">Dilogarithm</a></td></tr>
<tr><td></td><td valign="top"><a href="Spherical-Vector-Distributions.html#index-direction-vector_002c-random-2D">direction vector, random 2D</a>:</td><td> </td><td valign="top"><a href="Spherical-Vector-Distributions.html#Spherical-Vector-Distributions">Spherical Vector Distributions</a></td></tr>
<tr><td></td><td valign="top"><a href="Spherical-Vector-Distributions.html#index-direction-vector_002c-random-3D">direction vector, random 3D</a>:</td><td> </td><td valign="top"><a href="Spherical-Vector-Distributions.html#Spherical-Vector-Distributions">Spherical Vector Distributions</a></td></tr>
<tr><td></td><td valign="top"><a href="Spherical-Vector-Distributions.html#index-direction-vector_002c-random-N_002ddimensional">direction vector, random N-dimensional</a>:</td><td> </td><td valign="top"><a href="Spherical-Vector-Distributions.html#Spherical-Vector-Distributions">Spherical Vector Distributions</a></td></tr>
<tr><td></td><td valign="top"><a href="The-Dirichlet-Distribution.html#index-Dirichlet-distribution">Dirichlet distribution</a>:</td><td> </td><td valign="top"><a href="The-Dirichlet-Distribution.html#The-Dirichlet-Distribution">The Dirichlet Distribution</a></td></tr>
<tr><td></td><td valign="top"><a href="Evolution.html#index-discontinuities_002c-in-ODE-systems">discontinuities, in ODE systems</a>:</td><td> </td><td valign="top"><a href="Evolution.html#Evolution">Evolution</a></td></tr>
<tr><td></td><td valign="top"><a href="Fast-Fourier-Transforms.html#index-Discrete-Fourier-Transforms_002c-see-FFT">Discrete Fourier Transforms, see FFT</a>:</td><td> </td><td valign="top"><a href="Fast-Fourier-Transforms.html#Fast-Fourier-Transforms">Fast Fourier Transforms</a></td></tr>
<tr><td></td><td valign="top"><a href="Discrete-Hankel-Transforms.html#index-discrete-Hankel-transforms">discrete Hankel transforms</a>:</td><td> </td><td valign="top"><a href="Discrete-Hankel-Transforms.html#Discrete-Hankel-Transforms">Discrete Hankel Transforms</a></td></tr>
<tr><td></td><td valign="top"><a href="Algorithms-without-Derivatives.html#index-Discrete-Newton-algorithm-for-multidimensional-roots">Discrete Newton algorithm for multidimensional roots</a>:</td><td> </td><td valign="top"><a href="Algorithms-without-Derivatives.html#Algorithms-without-Derivatives">Algorithms without Derivatives</a></td></tr>
<tr><td></td><td valign="top"><a href="General-Discrete-Distributions.html#index-Discrete-random-numbers">Discrete random numbers</a>:</td><td> </td><td valign="top"><a href="General-Discrete-Distributions.html#General-Discrete-Distributions">General Discrete Distributions</a></td></tr>
<tr><td></td><td valign="top"><a href="General-Discrete-Distributions.html#index-Discrete-random-numbers-1">Discrete random numbers</a>:</td><td> </td><td valign="top"><a href="General-Discrete-Distributions.html#General-Discrete-Distributions">General Discrete Distributions</a></td></tr>
<tr><td></td><td valign="top"><a href="General-Discrete-Distributions.html#index-Discrete-random-numbers-2">Discrete random numbers</a>:</td><td> </td><td valign="top"><a href="General-Discrete-Distributions.html#General-Discrete-Distributions">General Discrete Distributions</a></td></tr>
<tr><td></td><td valign="top"><a href="General-Discrete-Distributions.html#index-Discrete-random-numbers-3">Discrete random numbers</a>:</td><td> </td><td valign="top"><a href="General-Discrete-Distributions.html#General-Discrete-Distributions">General Discrete Distributions</a></td></tr>
<tr><td></td><td valign="top"><a href="General-Discrete-Distributions.html#index-Discrete-random-numbers_002c-preprocessing">Discrete random numbers, preprocessing</a>:</td><td> </td><td valign="top"><a href="General-Discrete-Distributions.html#General-Discrete-Distributions">General Discrete Distributions</a></td></tr>
<tr><td></td><td valign="top"><a href="Divided-Difference-Representation-of-Polynomials.html#index-divided-differences_002c-polynomials">divided differences, polynomials</a>:</td><td> </td><td valign="top"><a href="Divided-Difference-Representation-of-Polynomials.html#Divided-Difference-Representation-of-Polynomials">Divided Difference Representation of Polynomials</a></td></tr>
<tr><td></td><td valign="top"><a href="Setting-up-your-IEEE-environment.html#index-division-by-zero_002c-IEEE-exceptions">division by zero, IEEE exceptions</a>:</td><td> </td><td valign="top"><a href="Setting-up-your-IEEE-environment.html#Setting-up-your-IEEE-environment">Setting up your IEEE environment</a></td></tr>
<tr><td></td><td valign="top"><a href="Nonlinear-Least_002dSquares-TRS-Dogleg.html#index-Dogleg-algorithm">Dogleg algorithm</a>:</td><td> </td><td valign="top"><a href="Nonlinear-Least_002dSquares-TRS-Dogleg.html#Nonlinear-Least_002dSquares-TRS-Dogleg">Nonlinear Least-Squares TRS Dogleg</a></td></tr>
<tr><td></td><td valign="top"><a href="Nonlinear-Least_002dSquares-TRS-Double-Dogleg.html#index-Dogleg-algorithm_002c-double">Dogleg algorithm, double</a>:</td><td> </td><td valign="top"><a href="Nonlinear-Least_002dSquares-TRS-Double-Dogleg.html#Nonlinear-Least_002dSquares-TRS-Double-Dogleg">Nonlinear Least-Squares TRS Double Dogleg</a></td></tr>
<tr><td></td><td valign="top"><a href="Conventions-used-in-this-manual.html#index-dollar-sign-_0024_002c-shell-prompt">dollar sign <code>$</code>, shell prompt</a>:</td><td> </td><td valign="top"><a href="Conventions-used-in-this-manual.html#Conventions-used-in-this-manual">Conventions used in this manual</a></td></tr>
<tr><td></td><td valign="top"><a href="Level-1-GSL-BLAS-Interface.html#index-DOT_002c-Level_002d1-BLAS">DOT, Level-1 BLAS</a>:</td><td> </td><td valign="top"><a href="Level-1-GSL-BLAS-Interface.html#Level-1-GSL-BLAS-Interface">Level 1 GSL BLAS Interface</a></td></tr>
<tr><td></td><td valign="top"><a href="Nonlinear-Least_002dSquares-TRS-Double-Dogleg.html#index-double-Dogleg-algorithm">double Dogleg algorithm</a>:</td><td> </td><td valign="top"><a href="Nonlinear-Least_002dSquares-TRS-Double-Dogleg.html#Nonlinear-Least_002dSquares-TRS-Double-Dogleg">Nonlinear Least-Squares TRS Double Dogleg</a></td></tr>
<tr><td></td><td valign="top"><a href="Factorials.html#index-double-factorial">double factorial</a>:</td><td> </td><td valign="top"><a href="Factorials.html#Factorials">Factorials</a></td></tr>
<tr><td></td><td valign="top"><a href="Representation-of-floating-point-numbers.html#index-double-precision_002c-IEEE-format">double precision, IEEE format</a>:</td><td> </td><td valign="top"><a href="Representation-of-floating-point-numbers.html#Representation-of-floating-point-numbers">Representation of floating point numbers</a></td></tr>
<tr><td></td><td valign="top"><a href="Obtaining-GSL.html#index-downloading-GSL">downloading GSL</a>:</td><td> </td><td valign="top"><a href="Obtaining-GSL.html#Obtaining-GSL">Obtaining GSL</a></td></tr>
<tr><td></td><td valign="top"><a href="DWT-Initialization.html#index-DWT-initialization">DWT initialization</a>:</td><td> </td><td valign="top"><a href="DWT-Initialization.html#DWT-Initialization">DWT Initialization</a></td></tr>
<tr><td></td><td valign="top"><a href="DWT-Definitions.html#index-DWT_002c-mathematical-definition">DWT, mathematical definition</a>:</td><td> </td><td valign="top"><a href="DWT-Definitions.html#DWT-Definitions">DWT Definitions</a></td></tr>
<tr><td></td><td valign="top"><a href="DWT-in-one-dimension.html#index-DWT_002c-one-dimensional">DWT, one dimensional</a>:</td><td> </td><td valign="top"><a href="DWT-in-one-dimension.html#DWT-in-one-dimension">DWT in one dimension</a></td></tr>
<tr><td></td><td valign="top"><a href="Wavelet-Transforms.html#index-DWT_002c-see-wavelet-transforms">DWT, see wavelet transforms</a>:</td><td> </td><td valign="top"><a href="Wavelet-Transforms.html#Wavelet-Transforms">Wavelet Transforms</a></td></tr>
<tr><td></td><td valign="top"><a href="DWT-in-two-dimension.html#index-DWT_002c-two-dimensional">DWT, two dimensional</a>:</td><td> </td><td valign="top"><a href="DWT-in-two-dimension.html#DWT-in-two-dimension">DWT in two dimension</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th><a name="Concept-Index_cp_letter-E">E</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="Mathematical-Constants.html#index-e_002c-defined-as-a-macro">e, defined as a macro</a>:</td><td> </td><td valign="top"><a href="Mathematical-Constants.html#Mathematical-Constants">Mathematical Constants</a></td></tr>
<tr><td></td><td valign="top"><a href="Exponential-Integral.html#index-E1_0028x_0029_002c-E2_0028x_0029_002c-Ei_0028x_0029">E1(x), E2(x), Ei(x)</a>:</td><td> </td><td valign="top"><a href="Exponential-Integral.html#Exponential-Integral">Exponential Integral</a></td></tr>
<tr><td></td><td valign="top"><a href="Eigensystems.html#index-eigenvalues-and-eigenvectors">eigenvalues and eigenvectors</a>:</td><td> </td><td valign="top"><a href="Eigensystems.html#Eigensystems">Eigensystems</a></td></tr>
<tr><td></td><td valign="top"><a href="Mathematical-Functions.html#index-elementary-functions">elementary functions</a>:</td><td> </td><td valign="top"><a href="Mathematical-Functions.html#Mathematical-Functions">Mathematical Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Elementary-Operations.html#index-elementary-operations">elementary operations</a>:</td><td> </td><td valign="top"><a href="Elementary-Operations.html#Elementary-Operations">Elementary Operations</a></td></tr>
<tr><td></td><td valign="top"><a href="Elliptic-Functions-_0028Jacobi_0029.html#index-elliptic-functions-_0028Jacobi_0029">elliptic functions (Jacobi)</a>:</td><td> </td><td valign="top"><a href="Elliptic-Functions-_0028Jacobi_0029.html#Elliptic-Functions-_0028Jacobi_0029">Elliptic Functions (Jacobi)</a></td></tr>
<tr><td></td><td valign="top"><a href="Elliptic-Integrals.html#index-elliptic-integrals">elliptic integrals</a>:</td><td> </td><td valign="top"><a href="Elliptic-Integrals.html#Elliptic-Integrals">Elliptic Integrals</a></td></tr>
<tr><td></td><td valign="top"><a href="Simulated-Annealing.html#index-energy-function">energy function</a>:</td><td> </td><td valign="top"><a href="Simulated-Annealing.html#Simulated-Annealing">Simulated Annealing</a></td></tr>
<tr><td></td><td valign="top"><a href="Thermal-Energy-and-Power.html#index-energy_002c-units-of">energy, units of</a>:</td><td> </td><td valign="top"><a href="Thermal-Energy-and-Power.html#Thermal-Energy-and-Power">Thermal Energy and Power</a></td></tr>
<tr><td></td><td valign="top"><a href="Error-Functions.html#index-erf_0028x_0029">erf(x)</a>:</td><td> </td><td valign="top"><a href="Error-Functions.html#Error-Functions">Error Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Error-Functions.html#index-erfc_0028x_0029">erfc(x)</a>:</td><td> </td><td valign="top"><a href="Error-Functions.html#Error-Functions">Error Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="The-Gamma-Distribution.html#index-Erlang-distribution">Erlang distribution</a>:</td><td> </td><td valign="top"><a href="The-Gamma-Distribution.html#The-Gamma-Distribution">The Gamma Distribution</a></td></tr>
<tr><td></td><td valign="top"><a href="Error-Codes.html#index-error-codes">error codes</a>:</td><td> </td><td valign="top"><a href="Error-Codes.html#Error-Codes">Error Codes</a></td></tr>
<tr><td></td><td valign="top"><a href="Error-Codes.html#index-error-codes_002c-reserved">error codes, reserved</a>:</td><td> </td><td valign="top"><a href="Error-Codes.html#Error-Codes">Error Codes</a></td></tr>
<tr><td></td><td valign="top"><a href="Error-Functions.html#index-error-function">error function</a>:</td><td> </td><td valign="top"><a href="Error-Functions.html#Error-Functions">Error Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Error-Handlers.html#index-Error-handlers">Error handlers</a>:</td><td> </td><td valign="top"><a href="Error-Handlers.html#Error-Handlers">Error Handlers</a></td></tr>
<tr><td></td><td valign="top"><a href="Error-Handling.html#index-error-handling">error handling</a>:</td><td> </td><td valign="top"><a href="Error-Handling.html#Error-Handling">Error Handling</a></td></tr>
<tr><td></td><td valign="top"><a href="Using-GSL-error-reporting-in-your-own-functions.html#index-error-handling-macros">error handling macros</a>:</td><td> </td><td valign="top"><a href="Using-GSL-error-reporting-in-your-own-functions.html#Using-GSL-error-reporting-in-your-own-functions">Using GSL error reporting in your own functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Error-Handling.html#index-Errors">Errors</a>:</td><td> </td><td valign="top"><a href="Error-Handling.html#Error-Handling">Error Handling</a></td></tr>
<tr><td></td><td valign="top"><a href="Statistics.html#index-estimated-standard-deviation">estimated standard deviation</a>:</td><td> </td><td valign="top"><a href="Statistics.html#Statistics">Statistics</a></td></tr>
<tr><td></td><td valign="top"><a href="Statistics.html#index-estimated-variance">estimated variance</a>:</td><td> </td><td valign="top"><a href="Statistics.html#Statistics">Statistics</a></td></tr>
<tr><td></td><td valign="top"><a href="Eta-Function.html#index-Eta-Function">Eta Function</a>:</td><td> </td><td valign="top"><a href="Eta-Function.html#Eta-Function">Eta Function</a></td></tr>
<tr><td></td><td valign="top"><a href="Elementary-Functions.html#index-euclidean-distance-function_002c-hypot">euclidean distance function, hypot</a>:</td><td> </td><td valign="top"><a href="Elementary-Functions.html#Elementary-Functions">Elementary Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Elementary-Functions.html#index-euclidean-distance-function_002c-hypot-1">euclidean distance function, hypot</a>:</td><td> </td><td valign="top"><a href="Elementary-Functions.html#Elementary-Functions">Elementary Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Mathematical-Constants.html#index-Euler_0027s-constant_002c-defined-as-a-macro">Euler’s constant, defined as a macro</a>:</td><td> </td><td valign="top"><a href="Mathematical-Constants.html#Mathematical-Constants">Mathematical Constants</a></td></tr>
<tr><td></td><td valign="top"><a href="Polynomial-Evaluation.html#index-evaluation-of-polynomials">evaluation of polynomials</a>:</td><td> </td><td valign="top"><a href="Polynomial-Evaluation.html#Polynomial-Evaluation">Polynomial Evaluation</a></td></tr>
<tr><td></td><td valign="top"><a href="Divided-Difference-Representation-of-Polynomials.html#index-evaluation-of-polynomials_002c-in-divided-difference-form">evaluation of polynomials, in divided difference form</a>:</td><td> </td><td valign="top"><a href="Divided-Difference-Representation-of-Polynomials.html#Divided-Difference-Representation-of-Polynomials">Divided Difference Representation of Polynomials</a></td></tr>
<tr><td></td><td valign="top"><a href="Conventions-used-in-this-manual.html#index-examples_002c-conventions-used-in">examples, conventions used in</a>:</td><td> </td><td valign="top"><a href="Conventions-used-in-this-manual.html#Conventions-used-in-this-manual">Conventions used in this manual</a></td></tr>
<tr><td></td><td valign="top"><a href="Compatibility-with-C_002b_002b.html#index-exceptions_002c-C_002b_002b">exceptions, C++</a>:</td><td> </td><td valign="top"><a href="Compatibility-with-C_002b_002b.html#Compatibility-with-C_002b_002b">Compatibility with C++</a></td></tr>
<tr><td></td><td valign="top"><a href="Handling-floating-point-exceptions.html#index-exceptions_002c-floating-point">exceptions, floating point</a>:</td><td> </td><td valign="top"><a href="Handling-floating-point-exceptions.html#Handling-floating-point-exceptions">Handling floating point exceptions</a></td></tr>
<tr><td></td><td valign="top"><a href="Setting-up-your-IEEE-environment.html#index-exceptions_002c-IEEE-arithmetic">exceptions, IEEE arithmetic</a>:</td><td> </td><td valign="top"><a href="Setting-up-your-IEEE-environment.html#Setting-up-your-IEEE-environment">Setting up your IEEE environment</a></td></tr>
<tr><td></td><td valign="top"><a href="Accessing-permutation-elements.html#index-exchanging-permutation-elements">exchanging permutation elements</a>:</td><td> </td><td valign="top"><a href="Accessing-permutation-elements.html#Accessing-permutation-elements">Accessing permutation elements</a></td></tr>
<tr><td></td><td valign="top"><a href="Exponential-Functions.html#index-exp">exp</a>:</td><td> </td><td valign="top"><a href="Exponential-Functions.html#Exponential-Functions">Exponential Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Elementary-Functions.html#index-expm1">expm1</a>:</td><td> </td><td valign="top"><a href="Elementary-Functions.html#Elementary-Functions">Elementary Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Representation-of-floating-point-numbers.html#index-exponent_002c-IEEE-format">exponent, IEEE format</a>:</td><td> </td><td valign="top"><a href="Representation-of-floating-point-numbers.html#Representation-of-floating-point-numbers">Representation of floating point numbers</a></td></tr>
<tr><td></td><td valign="top"><a href="The-Exponential-Distribution.html#index-Exponential-distribution">Exponential distribution</a>:</td><td> </td><td valign="top"><a href="The-Exponential-Distribution.html#The-Exponential-Distribution">The Exponential Distribution</a></td></tr>
<tr><td></td><td valign="top"><a href="Exponential-Functions.html#index-exponential-function">exponential function</a>:</td><td> </td><td valign="top"><a href="Exponential-Functions.html#Exponential-Functions">Exponential Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Exponential-Integrals.html#index-exponential-integrals">exponential integrals</a>:</td><td> </td><td valign="top"><a href="Exponential-Integrals.html#Exponential-Integrals">Exponential Integrals</a></td></tr>
<tr><td></td><td valign="top"><a href="The-Exponential-Power-Distribution.html#index-Exponential-power-distribution">Exponential power distribution</a>:</td><td> </td><td valign="top"><a href="The-Exponential-Power-Distribution.html#The-Exponential-Power-Distribution">The Exponential Power Distribution</a></td></tr>
<tr><td></td><td valign="top"><a href="Elementary-Functions.html#index-exponential_002c-difference-from-1-computed-accurately">exponential, difference from 1 computed accurately</a>:</td><td> </td><td valign="top"><a href="Elementary-Functions.html#Elementary-Functions">Elementary Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Elementary-Complex-Functions.html#index-exponentiation-of-complex-number">exponentiation of complex number</a>:</td><td> </td><td valign="top"><a href="Elementary-Complex-Functions.html#Elementary-Complex-Functions">Elementary Complex Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Inline-functions.html#index-extern-inline"><code>extern inline</code></a>:</td><td> </td><td valign="top"><a href="Inline-functions.html#Inline-functions">Inline functions</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th><a name="Concept-Index_cp_letter-F">F</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="The-F_002ddistribution.html#index-F_002ddistribution">F-distribution</a>:</td><td> </td><td valign="top"><a href="The-F_002ddistribution.html#The-F_002ddistribution">The F-distribution</a></td></tr>
<tr><td></td><td valign="top"><a href="Factorials.html#index-factorial">factorial</a>:</td><td> </td><td valign="top"><a href="Factorials.html#Factorials">Factorials</a></td></tr>
<tr><td></td><td valign="top"><a href="Factorials.html#index-factorial-1">factorial</a>:</td><td> </td><td valign="top"><a href="Factorials.html#Factorials">Factorials</a></td></tr>
<tr><td></td><td valign="top"><a href="Linear-Algebra.html#index-factorization-of-matrices">factorization of matrices</a>:</td><td> </td><td valign="top"><a href="Linear-Algebra.html#Linear-Algebra">Linear Algebra</a></td></tr>
<tr><td></td><td valign="top"><a href="Root-Bracketing-Algorithms.html#index-false-position-algorithm-for-finding-roots">false position algorithm for finding roots</a>:</td><td> </td><td valign="top"><a href="Root-Bracketing-Algorithms.html#Root-Bracketing-Algorithms">Root Bracketing Algorithms</a></td></tr>
<tr><td></td><td valign="top"><a href="Fast-Fourier-Transforms.html#index-Fast-Fourier-Transforms_002c-see-FFT">Fast Fourier Transforms, see FFT</a>:</td><td> </td><td valign="top"><a href="Fast-Fourier-Transforms.html#Fast-Fourier-Transforms">Fast Fourier Transforms</a></td></tr>
<tr><td></td><td valign="top"><a href="Stepping-Functions.html#index-Fehlberg-method_002c-differential-equations">Fehlberg method, differential equations</a>:</td><td> </td><td valign="top"><a href="Stepping-Functions.html#Stepping-Functions">Stepping Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Fermi_002dDirac-Function.html#index-Fermi_002dDirac-function">Fermi-Dirac function</a>:</td><td> </td><td valign="top"><a href="Fermi_002dDirac-Function.html#Fermi_002dDirac-Function">Fermi-Dirac Function</a></td></tr>
<tr><td></td><td valign="top"><a href="Fast-Fourier-Transforms.html#index-FFT">FFT</a>:</td><td> </td><td valign="top"><a href="Fast-Fourier-Transforms.html#Fast-Fourier-Transforms">Fast Fourier Transforms</a></td></tr>
<tr><td></td><td valign="top"><a href="Mathematical-Definitions.html#index-FFT-mathematical-definition">FFT mathematical definition</a>:</td><td> </td><td valign="top"><a href="Mathematical-Definitions.html#Mathematical-Definitions">Mathematical Definitions</a></td></tr>
<tr><td></td><td valign="top"><a href="Mixed_002dradix-FFT-routines-for-complex-data.html#index-FFT-of-complex-data_002c-mixed_002dradix-algorithm">FFT of complex data, mixed-radix algorithm</a>:</td><td> </td><td valign="top"><a href="Mixed_002dradix-FFT-routines-for-complex-data.html#Mixed_002dradix-FFT-routines-for-complex-data">Mixed-radix FFT routines for complex data</a></td></tr>
<tr><td></td><td valign="top"><a href="Radix_002d2-FFT-routines-for-complex-data.html#index-FFT-of-complex-data_002c-radix_002d2-algorithm">FFT of complex data, radix-2 algorithm</a>:</td><td> </td><td valign="top"><a href="Radix_002d2-FFT-routines-for-complex-data.html#Radix_002d2-FFT-routines-for-complex-data">Radix-2 FFT routines for complex data</a></td></tr>
<tr><td></td><td valign="top"><a href="Overview-of-real-data-FFTs.html#index-FFT-of-real-data">FFT of real data</a>:</td><td> </td><td valign="top"><a href="Overview-of-real-data-FFTs.html#Overview-of-real-data-FFTs">Overview of real data FFTs</a></td></tr>
<tr><td></td><td valign="top"><a href="Mixed_002dradix-FFT-routines-for-real-data.html#index-FFT-of-real-data_002c-mixed_002dradix-algorithm">FFT of real data, mixed-radix algorithm</a>:</td><td> </td><td valign="top"><a href="Mixed_002dradix-FFT-routines-for-real-data.html#Mixed_002dradix-FFT-routines-for-real-data">Mixed-radix FFT routines for real data</a></td></tr>
<tr><td></td><td valign="top"><a href="Radix_002d2-FFT-routines-for-real-data.html#index-FFT-of-real-data_002c-radix_002d2-algorithm">FFT of real data, radix-2 algorithm</a>:</td><td> </td><td valign="top"><a href="Radix_002d2-FFT-routines-for-real-data.html#Radix_002d2-FFT-routines-for-real-data">Radix-2 FFT routines for real data</a></td></tr>
<tr><td></td><td valign="top"><a href="Overview-of-complex-data-FFTs.html#index-FFT_002c-complex-data">FFT, complex data</a>:</td><td> </td><td valign="top"><a href="Overview-of-complex-data-FFTs.html#Overview-of-complex-data-FFTs">Overview of complex data FFTs</a></td></tr>
<tr><td></td><td valign="top"><a href="One-dimensional-Minimization.html#index-finding-minima">finding minima</a>:</td><td> </td><td valign="top"><a href="One-dimensional-Minimization.html#One-dimensional-Minimization">One dimensional Minimization</a></td></tr>
<tr><td></td><td valign="top"><a href="One-dimensional-Root_002dFinding.html#index-finding-roots">finding roots</a>:</td><td> </td><td valign="top"><a href="One-dimensional-Root_002dFinding.html#One-dimensional-Root_002dFinding">One dimensional Root-Finding</a></td></tr>
<tr><td></td><td valign="top"><a href="One-dimensional-Root_002dFinding.html#index-finding-zeros">finding zeros</a>:</td><td> </td><td valign="top"><a href="One-dimensional-Root_002dFinding.html#One-dimensional-Root_002dFinding">One dimensional Root-Finding</a></td></tr>
<tr><td></td><td valign="top"><a href="Multi_002dparameter-regression.html#index-fits_002c-multi_002dparameter-linear">fits, multi-parameter linear</a>:</td><td> </td><td valign="top"><a href="Multi_002dparameter-regression.html#Multi_002dparameter-regression">Multi-parameter regression</a></td></tr>
<tr><td></td><td valign="top"><a href="Least_002dSquares-Fitting.html#index-fitting">fitting</a>:</td><td> </td><td valign="top"><a href="Least_002dSquares-Fitting.html#Least_002dSquares-Fitting">Least-Squares Fitting</a></td></tr>
<tr><td></td><td valign="top"><a href="Chebyshev-Approximations.html#index-fitting_002c-using-Chebyshev-polynomials">fitting, using Chebyshev polynomials</a>:</td><td> </td><td valign="top"><a href="Chebyshev-Approximations.html#Chebyshev-Approximations">Chebyshev Approximations</a></td></tr>
<tr><td></td><td valign="top"><a href="Complete-Fermi_002dDirac-Integrals.html#index-Fj_0028x_0029_002c-Fermi_002dDirac-integral">Fj(x), Fermi-Dirac integral</a>:</td><td> </td><td valign="top"><a href="Complete-Fermi_002dDirac-Integrals.html#Complete-Fermi_002dDirac-Integrals">Complete Fermi-Dirac Integrals</a></td></tr>
<tr><td></td><td valign="top"><a href="Incomplete-Fermi_002dDirac-Integrals.html#index-Fj_0028x_002cb_0029_002c-incomplete-Fermi_002dDirac-integral">Fj(x,b), incomplete Fermi-Dirac integral</a>:</td><td> </td><td valign="top"><a href="Incomplete-Fermi_002dDirac-Integrals.html#Incomplete-Fermi_002dDirac-Integrals">Incomplete Fermi-Dirac Integrals</a></td></tr>
<tr><td></td><td valign="top"><a href="The-Flat-_0028Uniform_0029-Distribution.html#index-flat-distribution">flat distribution</a>:</td><td> </td><td valign="top"><a href="The-Flat-_0028Uniform_0029-Distribution.html#The-Flat-_0028Uniform_0029-Distribution">The Flat (Uniform) Distribution</a></td></tr>
<tr><td></td><td valign="top"><a href="Multimin-Algorithms-with-Derivatives.html#index-Fletcher_002dReeves-conjugate-gradient-algorithm_002c-minimization">Fletcher-Reeves conjugate gradient algorithm, minimization</a>:</td><td> </td><td valign="top"><a href="Multimin-Algorithms-with-Derivatives.html#Multimin-Algorithms-with-Derivatives">Multimin Algorithms with Derivatives</a></td></tr>
<tr><td></td><td valign="top"><a href="Handling-floating-point-exceptions.html#index-floating-point-exceptions">floating point exceptions</a>:</td><td> </td><td valign="top"><a href="Handling-floating-point-exceptions.html#Handling-floating-point-exceptions">Handling floating point exceptions</a></td></tr>
<tr><td></td><td valign="top"><a href="Approximate-Comparison-of-Floating-Point-Numbers.html#index-floating-point-numbers_002c-approximate-comparison">floating point numbers, approximate comparison</a>:</td><td> </td><td valign="top"><a href="Approximate-Comparison-of-Floating-Point-Numbers.html#Approximate-Comparison-of-Floating-Point-Numbers">Approximate Comparison of Floating Point Numbers</a></td></tr>
<tr><td></td><td valign="top"><a href="Examining-floating-point-registers.html#index-floating-point-registers">floating point registers</a>:</td><td> </td><td valign="top"><a href="Examining-floating-point-registers.html#Examining-floating-point-registers">Examining floating point registers</a></td></tr>
<tr><td></td><td valign="top"><a href="Force-and-Energy.html#index-force-and-energy_002c-units-of">force and energy, units of</a>:</td><td> </td><td valign="top"><a href="Force-and-Energy.html#Force-and-Energy">Force and Energy</a></td></tr>
<tr><td></td><td valign="top"><a href="Accessing-vector-elements.html#index-Fortran-range-checking_002c-equivalent-in-gcc">Fortran range checking, equivalent in gcc</a>:</td><td> </td><td valign="top"><a href="Accessing-vector-elements.html#Accessing-vector-elements">Accessing vector elements</a></td></tr>
<tr><td></td><td valign="top"><a href="Random-number-generator-algorithms.html#index-Four_002dtap-Generalized-Feedback-Shift-Register">Four-tap Generalized Feedback Shift Register</a>:</td><td> </td><td valign="top"><a href="Random-number-generator-algorithms.html#Random-number-generator-algorithms">Random number generator algorithms</a></td></tr>
<tr><td></td><td valign="top"><a href="QAWF-adaptive-integration-for-Fourier-integrals.html#index-Fourier-integrals_002c-numerical">Fourier integrals, numerical</a>:</td><td> </td><td valign="top"><a href="QAWF-adaptive-integration-for-Fourier-integrals.html#QAWF-adaptive-integration-for-Fourier-integrals">QAWF adaptive integration for Fourier integrals</a></td></tr>
<tr><td></td><td valign="top"><a href="Fast-Fourier-Transforms.html#index-Fourier-Transforms_002c-see-FFT">Fourier Transforms, see FFT</a>:</td><td> </td><td valign="top"><a href="Fast-Fourier-Transforms.html#Fast-Fourier-Transforms">Fast Fourier Transforms</a></td></tr>
<tr><td></td><td valign="top"><a href="Regular-Bessel-Function-_002d-Fractional-Order.html#index-Fractional-Order-Bessel-Functions">Fractional Order Bessel Functions</a>:</td><td> </td><td valign="top"><a href="Regular-Bessel-Function-_002d-Fractional-Order.html#Regular-Bessel-Function-_002d-Fractional-Order">Regular Bessel Function - Fractional Order</a></td></tr>
<tr><td></td><td valign="top"><a href="GSL-is-Free-Software.html#index-free-software_002c-explanation-of">free software, explanation of</a>:</td><td> </td><td valign="top"><a href="GSL-is-Free-Software.html#GSL-is-Free-Software">GSL is Free Software</a></td></tr>
<tr><td></td><td valign="top"><a href="Elementary-Functions.html#index-frexp">frexp</a>:</td><td> </td><td valign="top"><a href="Elementary-Functions.html#Elementary-Functions">Elementary Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Numerical-Differentiation.html#index-functions_002c-numerical-differentiation">functions, numerical differentiation</a>:</td><td> </td><td valign="top"><a href="Numerical-Differentiation.html#Numerical-Differentiation">Numerical Differentiation</a></td></tr>
<tr><td></td><td valign="top"><a href="Fundamental-Constants.html#index-fundamental-constants">fundamental constants</a>:</td><td> </td><td valign="top"><a href="Fundamental-Constants.html#Fundamental-Constants">Fundamental Constants</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th><a name="Concept-Index_cp_letter-G">G</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="The-Gamma-Distribution.html#index-Gamma-distribution">Gamma distribution</a>:</td><td> </td><td valign="top"><a href="The-Gamma-Distribution.html#The-Gamma-Distribution">The Gamma Distribution</a></td></tr>
<tr><td></td><td valign="top"><a href="Gamma-Functions.html#index-gamma-functions">gamma functions</a>:</td><td> </td><td valign="top"><a href="Gamma-Functions.html#Gamma-Functions">Gamma Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Integrands-without-weight-functions.html#index-Gauss_002dKronrod-quadrature">Gauss-Kronrod quadrature</a>:</td><td> </td><td valign="top"><a href="Integrands-without-weight-functions.html#Integrands-without-weight-functions">Integrands without weight functions</a></td></tr>
<tr><td></td><td valign="top"><a href="The-Gaussian-Distribution.html#index-Gaussian-distribution">Gaussian distribution</a>:</td><td> </td><td valign="top"><a href="The-Gaussian-Distribution.html#The-Gaussian-Distribution">The Gaussian Distribution</a></td></tr>
<tr><td></td><td valign="top"><a href="The-Bivariate-Gaussian-Distribution.html#index-Gaussian-distribution_002c-bivariate">Gaussian distribution, bivariate</a>:</td><td> </td><td valign="top"><a href="The-Bivariate-Gaussian-Distribution.html#The-Bivariate-Gaussian-Distribution">The Bivariate Gaussian Distribution</a></td></tr>
<tr><td></td><td valign="top"><a href="The-Multivariate-Gaussian-Distribution.html#index-Gaussian-distribution_002c-bivariate-1">Gaussian distribution, bivariate</a>:</td><td> </td><td valign="top"><a href="The-Multivariate-Gaussian-Distribution.html#The-Multivariate-Gaussian-Distribution">The Multivariate Gaussian Distribution</a></td></tr>
<tr><td></td><td valign="top"><a href="The-Gaussian-Tail-Distribution.html#index-Gaussian-Tail-distribution">Gaussian Tail distribution</a>:</td><td> </td><td valign="top"><a href="The-Gaussian-Tail-Distribution.html#The-Gaussian-Tail-Distribution">The Gaussian Tail Distribution</a></td></tr>
<tr><td></td><td valign="top"><a href="Accessing-vector-elements.html#index-gcc-extensions_002c-range_002dchecking">gcc extensions, range-checking</a>:</td><td> </td><td valign="top"><a href="Accessing-vector-elements.html#Accessing-vector-elements">Accessing vector elements</a></td></tr>
<tr><td></td><td valign="top"><a href="GCC-warning-options-for-numerical-programs.html#index-gcc-warning-options">gcc warning options</a>:</td><td> </td><td valign="top"><a href="GCC-warning-options-for-numerical-programs.html#GCC-warning-options-for-numerical-programs">GCC warning options for numerical programs</a></td></tr>
<tr><td></td><td valign="top"><a href="Using-gdb.html#index-gdb">gdb</a>:</td><td> </td><td valign="top"><a href="Using-gdb.html#Using-gdb">Using gdb</a></td></tr>
<tr><td></td><td valign="top"><a href="Gegenbauer-Functions.html#index-Gegenbauer-functions">Gegenbauer functions</a>:</td><td> </td><td valign="top"><a href="Gegenbauer-Functions.html#Gegenbauer-Functions">Gegenbauer Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Level-3-GSL-BLAS-Interface.html#index-GEMM_002c-Level_002d3-BLAS">GEMM, Level-3 BLAS</a>:</td><td> </td><td valign="top"><a href="Level-3-GSL-BLAS-Interface.html#Level-3-GSL-BLAS-Interface">Level 3 GSL BLAS Interface</a></td></tr>
<tr><td></td><td valign="top"><a href="Level-2-GSL-BLAS-Interface.html#index-GEMV_002c-Level_002d2-BLAS">GEMV, Level-2 BLAS</a>:</td><td> </td><td valign="top"><a href="Level-2-GSL-BLAS-Interface.html#Level-2-GSL-BLAS-Interface">Level 2 GSL BLAS Interface</a></td></tr>
<tr><td></td><td valign="top"><a href="General-Polynomial-Equations.html#index-general-polynomial-equations_002c-solving">general polynomial equations, solving</a>:</td><td> </td><td valign="top"><a href="General-Polynomial-Equations.html#General-Polynomial-Equations">General Polynomial Equations</a></td></tr>
<tr><td></td><td valign="top"><a href="Real-Generalized-Nonsymmetric-Eigensystems.html#index-generalized-eigensystems">generalized eigensystems</a>:</td><td> </td><td valign="top"><a href="Real-Generalized-Nonsymmetric-Eigensystems.html#Real-Generalized-Nonsymmetric-Eigensystems">Real Generalized Nonsymmetric Eigensystems</a></td></tr>
<tr><td></td><td valign="top"><a href="Complex-Generalized-Hermitian_002dDefinite-Eigensystems.html#index-generalized-hermitian-definite-eigensystems">generalized hermitian definite eigensystems</a>:</td><td> </td><td valign="top"><a href="Complex-Generalized-Hermitian_002dDefinite-Eigensystems.html#Complex-Generalized-Hermitian_002dDefinite-Eigensystems">Complex Generalized Hermitian-Definite Eigensystems</a></td></tr>
<tr><td></td><td valign="top"><a href="Real-Generalized-Symmetric_002dDefinite-Eigensystems.html#index-generalized-symmetric-eigensystems">generalized symmetric eigensystems</a>:</td><td> </td><td valign="top"><a href="Real-Generalized-Symmetric_002dDefinite-Eigensystems.html#Real-Generalized-Symmetric_002dDefinite-Eigensystems">Real Generalized Symmetric-Definite Eigensystems</a></td></tr>
<tr><td></td><td valign="top"><a href="The-Geometric-Distribution.html#index-Geometric-random-variates">Geometric random variates</a>:</td><td> </td><td valign="top"><a href="The-Geometric-Distribution.html#The-Geometric-Distribution">The Geometric Distribution</a></td></tr>
<tr><td></td><td valign="top"><a href="The-Hypergeometric-Distribution.html#index-Geometric-random-variates-1">Geometric random variates</a>:</td><td> </td><td valign="top"><a href="The-Hypergeometric-Distribution.html#The-Hypergeometric-Distribution">The Hypergeometric Distribution</a></td></tr>
<tr><td></td><td valign="top"><a href="Level-2-GSL-BLAS-Interface.html#index-GER_002c-Level_002d2-BLAS">GER, Level-2 BLAS</a>:</td><td> </td><td valign="top"><a href="Level-2-GSL-BLAS-Interface.html#Level-2-GSL-BLAS-Interface">Level 2 GSL BLAS Interface</a></td></tr>
<tr><td></td><td valign="top"><a href="Level-2-GSL-BLAS-Interface.html#index-GERC_002c-Level_002d2-BLAS">GERC, Level-2 BLAS</a>:</td><td> </td><td valign="top"><a href="Level-2-GSL-BLAS-Interface.html#Level-2-GSL-BLAS-Interface">Level 2 GSL BLAS Interface</a></td></tr>
<tr><td></td><td valign="top"><a href="Level-2-GSL-BLAS-Interface.html#index-GERU_002c-Level_002d2-BLAS">GERU, Level-2 BLAS</a>:</td><td> </td><td valign="top"><a href="Level-2-GSL-BLAS-Interface.html#Level-2-GSL-BLAS-Interface">Level 2 GSL BLAS Interface</a></td></tr>
<tr><td></td><td valign="top"><a href="Givens-Rotations.html#index-Givens-rotation">Givens rotation</a>:</td><td> </td><td valign="top"><a href="Givens-Rotations.html#Givens-Rotations">Givens Rotations</a></td></tr>
<tr><td></td><td valign="top"><a href="Level-1-GSL-BLAS-Interface.html#index-Givens-Rotation_002c-BLAS">Givens Rotation, BLAS</a>:</td><td> </td><td valign="top"><a href="Level-1-GSL-BLAS-Interface.html#Level-1-GSL-BLAS-Interface">Level 1 GSL BLAS Interface</a></td></tr>
<tr><td></td><td valign="top"><a href="Level-1-GSL-BLAS-Interface.html#index-Givens-Rotation_002c-Modified_002c-BLAS">Givens Rotation, Modified, BLAS</a>:</td><td> </td><td valign="top"><a href="Level-1-GSL-BLAS-Interface.html#Level-1-GSL-BLAS-Interface">Level 1 GSL BLAS Interface</a></td></tr>
<tr><td></td><td valign="top"><a href="Sparse-Iterative-Solvers-Types.html#index-gmres">gmres</a>:</td><td> </td><td valign="top"><a href="Sparse-Iterative-Solvers-Types.html#Sparse-Iterative-Solvers-Types">Sparse Iterative Solvers Types</a></td></tr>
<tr><td></td><td valign="top"><a href="Introduction.html#index-GNU-General-Public-License">GNU General Public License</a>:</td><td> </td><td valign="top"><a href="Introduction.html#Introduction">Introduction</a></td></tr>
<tr><td></td><td valign="top"><a href="Minimization-Algorithms.html#index-golden-section-algorithm-for-finding-minima">golden section algorithm for finding minima</a>:</td><td> </td><td valign="top"><a href="Minimization-Algorithms.html#Minimization-Algorithms">Minimization Algorithms</a></td></tr>
<tr><td></td><td valign="top"><a href="Inline-functions.html#index-GSL_005fC99_005fINLINE">GSL_C99_INLINE</a>:</td><td> </td><td valign="top"><a href="Inline-functions.html#Inline-functions">Inline functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Random-number-generator-initialization.html#index-GSL_005fRNG_005fSEED"><code>GSL_RNG_SEED</code></a>:</td><td> </td><td valign="top"><a href="Random-number-generator-initialization.html#Random-number-generator-initialization">Random number generator initialization</a></td></tr>
<tr><td></td><td valign="top"><a href="The-gsl_005fsf_005fresult-struct.html#index-gsl_005fsf_005fresult">gsl_sf_result</a>:</td><td> </td><td valign="top"><a href="The-gsl_005fsf_005fresult-struct.html#The-gsl_005fsf_005fresult-struct">The gsl_sf_result struct</a></td></tr>
<tr><td></td><td valign="top"><a href="The-gsl_005fsf_005fresult-struct.html#index-gsl_005fsf_005fresult_005fe10">gsl_sf_result_e10</a>:</td><td> </td><td valign="top"><a href="The-gsl_005fsf_005fresult-struct.html#The-gsl_005fsf_005fresult-struct">The gsl_sf_result struct</a></td></tr>
<tr><td></td><td valign="top"><a href="The-Type_002d1-Gumbel-Distribution.html#index-Gumbel-distribution-_0028Type-1_0029">Gumbel distribution (Type 1)</a>:</td><td> </td><td valign="top"><a href="The-Type_002d1-Gumbel-Distribution.html#The-Type_002d1-Gumbel-Distribution">The Type-1 Gumbel Distribution</a></td></tr>
<tr><td></td><td valign="top"><a href="The-Type_002d2-Gumbel-Distribution.html#index-Gumbel-distribution-_0028Type-2_0029">Gumbel distribution (Type 2)</a>:</td><td> </td><td valign="top"><a href="The-Type_002d2-Gumbel-Distribution.html#The-Type_002d2-Gumbel-Distribution">The Type-2 Gumbel Distribution</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th><a name="Concept-Index_cp_letter-H">H</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="DWT-Initialization.html#index-Haar-wavelets">Haar wavelets</a>:</td><td> </td><td valign="top"><a href="DWT-Initialization.html#DWT-Initialization">DWT Initialization</a></td></tr>
<tr><td></td><td valign="top"><a href="Discrete-Hankel-Transforms.html#index-Hankel-transforms_002c-discrete">Hankel transforms, discrete</a>:</td><td> </td><td valign="top"><a href="Discrete-Hankel-Transforms.html#Discrete-Hankel-Transforms">Discrete Hankel Transforms</a></td></tr>
<tr><td></td><td valign="top"><a href="Inline-functions.html#index-HAVE_005fINLINE">HAVE_INLINE</a>:</td><td> </td><td valign="top"><a href="Inline-functions.html#Inline-functions">Inline functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Probability-functions.html#index-hazard-function_002c-normal-distribution">hazard function, normal distribution</a>:</td><td> </td><td valign="top"><a href="Probability-functions.html#Probability-functions">Probability functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Ntuple-References-and-Further-Reading.html#index-HBOOK">HBOOK</a>:</td><td> </td><td valign="top"><a href="Ntuple-References-and-Further-Reading.html#Ntuple-References-and-Further-Reading">Ntuple References and Further Reading</a></td></tr>
<tr><td></td><td valign="top"><a href="Compiling-and-Linking.html#index-header-files_002c-including">header files, including</a>:</td><td> </td><td valign="top"><a href="Compiling-and-Linking.html#Compiling-and-Linking">Compiling and Linking</a></td></tr>
<tr><td></td><td valign="top"><a href="Sorting.html#index-heapsort">heapsort</a>:</td><td> </td><td valign="top"><a href="Sorting.html#Sorting">Sorting</a></td></tr>
<tr><td></td><td valign="top"><a href="Level-3-GSL-BLAS-Interface.html#index-HEMM_002c-Level_002d3-BLAS">HEMM, Level-3 BLAS</a>:</td><td> </td><td valign="top"><a href="Level-3-GSL-BLAS-Interface.html#Level-3-GSL-BLAS-Interface">Level 3 GSL BLAS Interface</a></td></tr>
<tr><td></td><td valign="top"><a href="Level-2-GSL-BLAS-Interface.html#index-HEMV_002c-Level_002d2-BLAS">HEMV, Level-2 BLAS</a>:</td><td> </td><td valign="top"><a href="Level-2-GSL-BLAS-Interface.html#Level-2-GSL-BLAS-Interface">Level 2 GSL BLAS Interface</a></td></tr>
<tr><td></td><td valign="top"><a href="Level-2-GSL-BLAS-Interface.html#index-HER_002c-Level_002d2-BLAS">HER, Level-2 BLAS</a>:</td><td> </td><td valign="top"><a href="Level-2-GSL-BLAS-Interface.html#Level-2-GSL-BLAS-Interface">Level 2 GSL BLAS Interface</a></td></tr>
<tr><td></td><td valign="top"><a href="Level-2-GSL-BLAS-Interface.html#index-HER2_002c-Level_002d2-BLAS">HER2, Level-2 BLAS</a>:</td><td> </td><td valign="top"><a href="Level-2-GSL-BLAS-Interface.html#Level-2-GSL-BLAS-Interface">Level 2 GSL BLAS Interface</a></td></tr>
<tr><td></td><td valign="top"><a href="Level-3-GSL-BLAS-Interface.html#index-HER2K_002c-Level_002d3-BLAS">HER2K, Level-3 BLAS</a>:</td><td> </td><td valign="top"><a href="Level-3-GSL-BLAS-Interface.html#Level-3-GSL-BLAS-Interface">Level 3 GSL BLAS Interface</a></td></tr>
<tr><td></td><td valign="top"><a href="Level-3-GSL-BLAS-Interface.html#index-HERK_002c-Level_002d3-BLAS">HERK, Level-3 BLAS</a>:</td><td> </td><td valign="top"><a href="Level-3-GSL-BLAS-Interface.html#Level-3-GSL-BLAS-Interface">Level 3 GSL BLAS Interface</a></td></tr>
<tr><td></td><td valign="top"><a href="Complex-Hermitian-Matrices.html#index-hermitian-matrix_002c-complex_002c-eigensystem">hermitian matrix, complex, eigensystem</a>:</td><td> </td><td valign="top"><a href="Complex-Hermitian-Matrices.html#Complex-Hermitian-Matrices">Complex Hermitian Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Hessenberg-Decomposition-of-Real-Matrices.html#index-Hessenberg-decomposition">Hessenberg decomposition</a>:</td><td> </td><td valign="top"><a href="Hessenberg-Decomposition-of-Real-Matrices.html#Hessenberg-Decomposition-of-Real-Matrices">Hessenberg Decomposition of Real Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Hessenberg_002dTriangular-Decomposition-of-Real-Matrices.html#index-Hessenberg-triangular-decomposition">Hessenberg triangular decomposition</a>:</td><td> </td><td valign="top"><a href="Hessenberg_002dTriangular-Decomposition-of-Real-Matrices.html#Hessenberg_002dTriangular-Decomposition-of-Real-Matrices">Hessenberg-Triangular Decomposition of Real Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Histogram-Statistics.html#index-histogram-statistics">histogram statistics</a>:</td><td> </td><td valign="top"><a href="Histogram-Statistics.html#Histogram-Statistics">Histogram Statistics</a></td></tr>
<tr><td></td><td valign="top"><a href="Histogramming-ntuple-values.html#index-histogram_002c-from-ntuple">histogram, from ntuple</a>:</td><td> </td><td valign="top"><a href="Histogramming-ntuple-values.html#Histogramming-ntuple-values">Histogramming ntuple values</a></td></tr>
<tr><td></td><td valign="top"><a href="Histograms.html#index-histograms">histograms</a>:</td><td> </td><td valign="top"><a href="Histograms.html#Histograms">Histograms</a></td></tr>
<tr><td></td><td valign="top"><a href="The-histogram-probability-distribution-struct.html#index-histograms_002c-random-sampling-from">histograms, random sampling from</a>:</td><td> </td><td valign="top"><a href="The-histogram-probability-distribution-struct.html#The-histogram-probability-distribution-struct">The histogram probability distribution struct</a></td></tr>
<tr><td></td><td valign="top"><a href="Householder-solver-for-linear-systems.html#index-Householder-linear-solver">Householder linear solver</a>:</td><td> </td><td valign="top"><a href="Householder-solver-for-linear-systems.html#Householder-solver-for-linear-systems">Householder solver for linear systems</a></td></tr>
<tr><td></td><td valign="top"><a href="Householder-Transformations.html#index-Householder-matrix">Householder matrix</a>:</td><td> </td><td valign="top"><a href="Householder-Transformations.html#Householder-Transformations">Householder Transformations</a></td></tr>
<tr><td></td><td valign="top"><a href="Householder-Transformations.html#index-Householder-transformation">Householder transformation</a>:</td><td> </td><td valign="top"><a href="Householder-Transformations.html#Householder-Transformations">Householder Transformations</a></td></tr>
<tr><td></td><td valign="top"><a href="Hurwitz-Zeta-Function.html#index-Hurwitz-Zeta-Function">Hurwitz Zeta Function</a>:</td><td> </td><td valign="top"><a href="Hurwitz-Zeta-Function.html#Hurwitz-Zeta-Function">Hurwitz Zeta Function</a></td></tr>
<tr><td></td><td valign="top"><a href="Algorithms-without-Derivatives.html#index-HYBRID-algorithm_002c-unscaled-without-derivatives">HYBRID algorithm, unscaled without derivatives</a>:</td><td> </td><td valign="top"><a href="Algorithms-without-Derivatives.html#Algorithms-without-Derivatives">Algorithms without Derivatives</a></td></tr>
<tr><td></td><td valign="top"><a href="Algorithms-using-Derivatives.html#index-HYBRID-algorithms-for-nonlinear-systems">HYBRID algorithms for nonlinear systems</a>:</td><td> </td><td valign="top"><a href="Algorithms-using-Derivatives.html#Algorithms-using-Derivatives">Algorithms using Derivatives</a></td></tr>
<tr><td></td><td valign="top"><a href="Algorithms-using-Derivatives.html#index-HYBRIDJ-algorithm">HYBRIDJ algorithm</a>:</td><td> </td><td valign="top"><a href="Algorithms-using-Derivatives.html#Algorithms-using-Derivatives">Algorithms using Derivatives</a></td></tr>
<tr><td></td><td valign="top"><a href="Algorithms-without-Derivatives.html#index-HYBRIDS-algorithm_002c-scaled-without-derivatives">HYBRIDS algorithm, scaled without derivatives</a>:</td><td> </td><td valign="top"><a href="Algorithms-without-Derivatives.html#Algorithms-without-Derivatives">Algorithms without Derivatives</a></td></tr>
<tr><td></td><td valign="top"><a href="Algorithms-using-Derivatives.html#index-HYBRIDSJ-algorithm">HYBRIDSJ algorithm</a>:</td><td> </td><td valign="top"><a href="Algorithms-using-Derivatives.html#Algorithms-using-Derivatives">Algorithms using Derivatives</a></td></tr>
<tr><td></td><td valign="top"><a href="Coulomb-Functions.html#index-hydrogen-atom">hydrogen atom</a>:</td><td> </td><td valign="top"><a href="Coulomb-Functions.html#Coulomb-Functions">Coulomb Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Elementary-Functions.html#index-hyperbolic-cosine_002c-inverse">hyperbolic cosine, inverse</a>:</td><td> </td><td valign="top"><a href="Elementary-Functions.html#Elementary-Functions">Elementary Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Complex-Hyperbolic-Functions.html#index-hyperbolic-functions_002c-complex-numbers">hyperbolic functions, complex numbers</a>:</td><td> </td><td valign="top"><a href="Complex-Hyperbolic-Functions.html#Complex-Hyperbolic-Functions">Complex Hyperbolic Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Hyperbolic-Integrals.html#index-hyperbolic-integrals">hyperbolic integrals</a>:</td><td> </td><td valign="top"><a href="Hyperbolic-Integrals.html#Hyperbolic-Integrals">Hyperbolic Integrals</a></td></tr>
<tr><td></td><td valign="top"><a href="Elementary-Functions.html#index-hyperbolic-sine_002c-inverse">hyperbolic sine, inverse</a>:</td><td> </td><td valign="top"><a href="Elementary-Functions.html#Elementary-Functions">Elementary Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Legendre-Functions-and-Spherical-Harmonics.html#index-hyperbolic-space">hyperbolic space</a>:</td><td> </td><td valign="top"><a href="Legendre-Functions-and-Spherical-Harmonics.html#Legendre-Functions-and-Spherical-Harmonics">Legendre Functions and Spherical Harmonics</a></td></tr>
<tr><td></td><td valign="top"><a href="Elementary-Functions.html#index-hyperbolic-tangent_002c-inverse">hyperbolic tangent, inverse</a>:</td><td> </td><td valign="top"><a href="Elementary-Functions.html#Elementary-Functions">Elementary Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Hypergeometric-Functions.html#index-hypergeometric-functions">hypergeometric functions</a>:</td><td> </td><td valign="top"><a href="Hypergeometric-Functions.html#Hypergeometric-Functions">Hypergeometric Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="The-Hypergeometric-Distribution.html#index-hypergeometric-random-variates">hypergeometric random variates</a>:</td><td> </td><td valign="top"><a href="The-Hypergeometric-Distribution.html#The-Hypergeometric-Distribution">The Hypergeometric Distribution</a></td></tr>
<tr><td></td><td valign="top"><a href="Elementary-Functions.html#index-hypot">hypot</a>:</td><td> </td><td valign="top"><a href="Elementary-Functions.html#Elementary-Functions">Elementary Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Circular-Trigonometric-Functions.html#index-hypot-function_002c-special-functions">hypot function, special functions</a>:</td><td> </td><td valign="top"><a href="Circular-Trigonometric-Functions.html#Circular-Trigonometric-Functions">Circular Trigonometric Functions</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th><a name="Concept-Index_cp_letter-I">I</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="Regular-Modified-Cylindrical-Bessel-Functions.html#index-I_0028x_0029_002c-Bessel-Functions">I(x), Bessel Functions</a>:</td><td> </td><td valign="top"><a href="Regular-Modified-Cylindrical-Bessel-Functions.html#Regular-Modified-Cylindrical-Bessel-Functions">Regular Modified Cylindrical Bessel Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Regular-Modified-Spherical-Bessel-Functions.html#index-i_0028x_0029_002c-Bessel-Functions">i(x), Bessel Functions</a>:</td><td> </td><td valign="top"><a href="Regular-Modified-Spherical-Bessel-Functions.html#Regular-Modified-Spherical-Bessel-Functions">Regular Modified Spherical Bessel Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Initializing-matrix-elements.html#index-identity-matrix">identity matrix</a>:</td><td> </td><td valign="top"><a href="Initializing-matrix-elements.html#Initializing-matrix-elements">Initializing matrix elements</a></td></tr>
<tr><td></td><td valign="top"><a href="Permutation-allocation.html#index-identity-permutation">identity permutation</a>:</td><td> </td><td valign="top"><a href="Permutation-allocation.html#Permutation-allocation">Permutation allocation</a></td></tr>
<tr><td></td><td valign="top"><a href="Setting-up-your-IEEE-environment.html#index-IEEE-exceptions">IEEE exceptions</a>:</td><td> </td><td valign="top"><a href="Setting-up-your-IEEE-environment.html#Setting-up-your-IEEE-environment">Setting up your IEEE environment</a></td></tr>
<tr><td></td><td valign="top"><a href="IEEE-floating_002dpoint-arithmetic.html#index-IEEE-floating-point">IEEE floating point</a>:</td><td> </td><td valign="top"><a href="IEEE-floating_002dpoint-arithmetic.html#IEEE-floating_002dpoint-arithmetic">IEEE floating-point arithmetic</a></td></tr>
<tr><td></td><td valign="top"><a href="Representation-of-floating-point-numbers.html#index-IEEE-format-for-floating-point-numbers">IEEE format for floating point numbers</a>:</td><td> </td><td valign="top"><a href="Representation-of-floating-point-numbers.html#Representation-of-floating-point-numbers">Representation of floating point numbers</a></td></tr>
<tr><td></td><td valign="top"><a href="Infinities-and-Not_002da_002dnumber.html#index-IEEE-infinity_002c-defined-as-a-macro">IEEE infinity, defined as a macro</a>:</td><td> </td><td valign="top"><a href="Infinities-and-Not_002da_002dnumber.html#Infinities-and-Not_002da_002dnumber">Infinities and Not-a-number</a></td></tr>
<tr><td></td><td valign="top"><a href="Infinities-and-Not_002da_002dnumber.html#index-IEEE-NaN_002c-defined-as-a-macro">IEEE NaN, defined as a macro</a>:</td><td> </td><td valign="top"><a href="Infinities-and-Not_002da_002dnumber.html#Infinities-and-Not_002da_002dnumber">Infinities and Not-a-number</a></td></tr>
<tr><td></td><td valign="top"><a href="Light-and-Illumination.html#index-illumination_002c-units-of">illumination, units of</a>:</td><td> </td><td valign="top"><a href="Light-and-Illumination.html#Light-and-Illumination">Light and Illumination</a></td></tr>
<tr><td></td><td valign="top"><a href="Imperial-Units.html#index-imperial-units">imperial units</a>:</td><td> </td><td valign="top"><a href="Imperial-Units.html#Imperial-Units">Imperial Units</a></td></tr>
<tr><td></td><td valign="top"><a href="Stepping-Functions.html#index-Implicit-Euler-method">Implicit Euler method</a>:</td><td> </td><td valign="top"><a href="Stepping-Functions.html#Stepping-Functions">Stepping Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Stepping-Functions.html#index-Implicit-Runge_002dKutta-method">Implicit Runge-Kutta method</a>:</td><td> </td><td valign="top"><a href="Stepping-Functions.html#Stepping-Functions">Stepping Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="VEGAS.html#index-importance-sampling_002c-VEGAS">importance sampling, VEGAS</a>:</td><td> </td><td valign="top"><a href="VEGAS.html#VEGAS">VEGAS</a></td></tr>
<tr><td></td><td valign="top"><a href="Compiling-and-Linking.html#index-including-GSL-header-files">including GSL header files</a>:</td><td> </td><td valign="top"><a href="Compiling-and-Linking.html#Compiling-and-Linking">Compiling and Linking</a></td></tr>
<tr><td></td><td valign="top"><a href="Incomplete-Beta-Function.html#index-incomplete-Beta-function_002c-normalized">incomplete Beta function, normalized</a>:</td><td> </td><td valign="top"><a href="Incomplete-Beta-Function.html#Incomplete-Beta-Function">Incomplete Beta Function</a></td></tr>
<tr><td></td><td valign="top"><a href="Incomplete-Fermi_002dDirac-Integrals.html#index-incomplete-Fermi_002dDirac-integral">incomplete Fermi-Dirac integral</a>:</td><td> </td><td valign="top"><a href="Incomplete-Fermi_002dDirac-Integrals.html#Incomplete-Fermi_002dDirac-Integrals">Incomplete Fermi-Dirac Integrals</a></td></tr>
<tr><td></td><td valign="top"><a href="Incomplete-Gamma-Functions.html#index-incomplete-Gamma-function">incomplete Gamma function</a>:</td><td> </td><td valign="top"><a href="Incomplete-Gamma-Functions.html#Incomplete-Gamma-Functions">Incomplete Gamma Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Sorting-objects.html#index-indirect-sorting">indirect sorting</a>:</td><td> </td><td valign="top"><a href="Sorting-objects.html#Sorting-objects">Sorting objects</a></td></tr>
<tr><td></td><td valign="top"><a href="Sorting-vectors.html#index-indirect-sorting_002c-of-vector-elements">indirect sorting, of vector elements</a>:</td><td> </td><td valign="top"><a href="Sorting-vectors.html#Sorting-vectors">Sorting vectors</a></td></tr>
<tr><td></td><td valign="top"><a href="Infinities-and-Not_002da_002dnumber.html#index-infinity_002c-defined-as-a-macro">infinity, defined as a macro</a>:</td><td> </td><td valign="top"><a href="Infinities-and-Not_002da_002dnumber.html#Infinities-and-Not_002da_002dnumber">Infinities and Not-a-number</a></td></tr>
<tr><td></td><td valign="top"><a href="Representation-of-floating-point-numbers.html#index-infinity_002c-IEEE-format">infinity, IEEE format</a>:</td><td> </td><td valign="top"><a href="Representation-of-floating-point-numbers.html#Representation-of-floating-point-numbers">Representation of floating point numbers</a></td></tr>
<tr><td></td><td valign="top"><a href="Obtaining-GSL.html#index-info_002dgsl-mailing-list">info-gsl mailing list</a>:</td><td> </td><td valign="top"><a href="Obtaining-GSL.html#Obtaining-GSL">Obtaining GSL</a></td></tr>
<tr><td></td><td valign="top"><a href="Ordinary-Differential-Equations.html#index-initial-value-problems_002c-differential-equations">initial value problems, differential equations</a>:</td><td> </td><td valign="top"><a href="Ordinary-Differential-Equations.html#Ordinary-Differential-Equations">Ordinary Differential Equations</a></td></tr>
<tr><td></td><td valign="top"><a href="Initializing-matrix-elements.html#index-initializing-matrices">initializing matrices</a>:</td><td> </td><td valign="top"><a href="Initializing-matrix-elements.html#Initializing-matrix-elements">Initializing matrix elements</a></td></tr>
<tr><td></td><td valign="top"><a href="Initializing-vector-elements.html#index-initializing-vectors">initializing vectors</a>:</td><td> </td><td valign="top"><a href="Initializing-vector-elements.html#Initializing-vector-elements">Initializing vector elements</a></td></tr>
<tr><td></td><td valign="top"><a href="Inline-functions.html#index-inline-functions">inline functions</a>:</td><td> </td><td valign="top"><a href="Inline-functions.html#Inline-functions">Inline functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Power-Function.html#index-integer-powers">integer powers</a>:</td><td> </td><td valign="top"><a href="Power-Function.html#Power-Function">Power Function</a></td></tr>
<tr><td></td><td valign="top"><a href="Exponential-Integrals.html#index-integrals_002c-exponential">integrals, exponential</a>:</td><td> </td><td valign="top"><a href="Exponential-Integrals.html#Exponential-Integrals">Exponential Integrals</a></td></tr>
<tr><td></td><td valign="top"><a href="Numerical-Integration.html#index-integration_002c-numerical-_0028quadrature_0029">integration, numerical (quadrature)</a>:</td><td> </td><td valign="top"><a href="Numerical-Integration.html#Numerical-Integration">Numerical Integration</a></td></tr>
<tr><td></td><td valign="top"><a href="Interpolation.html#index-interpolation">interpolation</a>:</td><td> </td><td valign="top"><a href="Interpolation.html#Interpolation">Interpolation</a></td></tr>
<tr><td></td><td valign="top"><a href="Chebyshev-Approximations.html#index-interpolation_002c-using-Chebyshev-polynomials">interpolation, using Chebyshev polynomials</a>:</td><td> </td><td valign="top"><a href="Chebyshev-Approximations.html#Chebyshev-Approximations">Chebyshev Approximations</a></td></tr>
<tr><td></td><td valign="top"><a href="Inverse-Complex-Trigonometric-Functions.html#index-inverse-complex-trigonometric-functions">inverse complex trigonometric functions</a>:</td><td> </td><td valign="top"><a href="Inverse-Complex-Trigonometric-Functions.html#Inverse-Complex-Trigonometric-Functions">Inverse Complex Trigonometric Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Random-Number-Distributions.html#index-inverse-cumulative-distribution-functions">inverse cumulative distribution functions</a>:</td><td> </td><td valign="top"><a href="Random-Number-Distributions.html#Random-Number-Distributions">Random Number Distributions</a></td></tr>
<tr><td></td><td valign="top"><a href="Elementary-Functions.html#index-inverse-hyperbolic-cosine">inverse hyperbolic cosine</a>:</td><td> </td><td valign="top"><a href="Elementary-Functions.html#Elementary-Functions">Elementary Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Inverse-Complex-Hyperbolic-Functions.html#index-inverse-hyperbolic-functions_002c-complex-numbers">inverse hyperbolic functions, complex numbers</a>:</td><td> </td><td valign="top"><a href="Inverse-Complex-Hyperbolic-Functions.html#Inverse-Complex-Hyperbolic-Functions">Inverse Complex Hyperbolic Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Elementary-Functions.html#index-inverse-hyperbolic-sine">inverse hyperbolic sine</a>:</td><td> </td><td valign="top"><a href="Elementary-Functions.html#Elementary-Functions">Elementary Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Elementary-Functions.html#index-inverse-hyperbolic-tangent">inverse hyperbolic tangent</a>:</td><td> </td><td valign="top"><a href="Elementary-Functions.html#Elementary-Functions">Elementary Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="LU-Decomposition.html#index-inverse-of-a-matrix_002c-by-LU-decomposition">inverse of a matrix, by LU decomposition</a>:</td><td> </td><td valign="top"><a href="LU-Decomposition.html#LU-Decomposition">LU Decomposition</a></td></tr>
<tr><td></td><td valign="top"><a href="Permutation-functions.html#index-inverting-a-permutation">inverting a permutation</a>:</td><td> </td><td valign="top"><a href="Permutation-functions.html#Permutation-functions">Permutation functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Irregular-Cylindrical-Bessel-Functions.html#index-Irregular-Cylindrical-Bessel-Functions">Irregular Cylindrical Bessel Functions</a>:</td><td> </td><td valign="top"><a href="Irregular-Cylindrical-Bessel-Functions.html#Irregular-Cylindrical-Bessel-Functions">Irregular Cylindrical Bessel Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Irregular-Modified-Bessel-Functions-_002d-Fractional-Order.html#index-Irregular-Modified-Bessel-Functions_002c-Fractional-Order">Irregular Modified Bessel Functions, Fractional Order</a>:</td><td> </td><td valign="top"><a href="Irregular-Modified-Bessel-Functions-_002d-Fractional-Order.html#Irregular-Modified-Bessel-Functions-_002d-Fractional-Order">Irregular Modified Bessel Functions - Fractional Order</a></td></tr>
<tr><td></td><td valign="top"><a href="Irregular-Modified-Cylindrical-Bessel-Functions.html#index-Irregular-Modified-Cylindrical-Bessel-Functions">Irregular Modified Cylindrical Bessel Functions</a>:</td><td> </td><td valign="top"><a href="Irregular-Modified-Cylindrical-Bessel-Functions.html#Irregular-Modified-Cylindrical-Bessel-Functions">Irregular Modified Cylindrical Bessel Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Irregular-Modified-Spherical-Bessel-Functions.html#index-Irregular-Modified-Spherical-Bessel-Functions">Irregular Modified Spherical Bessel Functions</a>:</td><td> </td><td valign="top"><a href="Irregular-Modified-Spherical-Bessel-Functions.html#Irregular-Modified-Spherical-Bessel-Functions">Irregular Modified Spherical Bessel Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Irregular-Spherical-Bessel-Functions.html#index-Irregular-Spherical-Bessel-Functions">Irregular Spherical Bessel Functions</a>:</td><td> </td><td valign="top"><a href="Irregular-Spherical-Bessel-Functions.html#Irregular-Spherical-Bessel-Functions">Irregular Spherical Bessel Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Combination-functions.html#index-iterating-through-combinations">iterating through combinations</a>:</td><td> </td><td valign="top"><a href="Combination-functions.html#Combination-functions">Combination functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Multiset-functions.html#index-iterating-through-multisets">iterating through multisets</a>:</td><td> </td><td valign="top"><a href="Multiset-functions.html#Multiset-functions">Multiset functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Permutation-functions.html#index-iterating-through-permutations">iterating through permutations</a>:</td><td> </td><td valign="top"><a href="Permutation-functions.html#Permutation-functions">Permutation functions</a></td></tr>
<tr><td></td><td valign="top"><a href="LU-Decomposition.html#index-iterative-refinement-of-solutions-in-linear-systems">iterative refinement of solutions in linear systems</a>:</td><td> </td><td valign="top"><a href="LU-Decomposition.html#LU-Decomposition">LU Decomposition</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th><a name="Concept-Index_cp_letter-J">J</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="Regular-Cylindrical-Bessel-Functions.html#index-J_0028x_0029_002c-Bessel-Functions">J(x), Bessel Functions</a>:</td><td> </td><td valign="top"><a href="Regular-Cylindrical-Bessel-Functions.html#Regular-Cylindrical-Bessel-Functions">Regular Cylindrical Bessel Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Regular-Spherical-Bessel-Functions.html#index-j_0028x_0029_002c-Bessel-Functions">j(x), Bessel Functions</a>:</td><td> </td><td valign="top"><a href="Regular-Spherical-Bessel-Functions.html#Regular-Spherical-Bessel-Functions">Regular Spherical Bessel Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Elliptic-Functions-_0028Jacobi_0029.html#index-Jacobi-elliptic-functions">Jacobi elliptic functions</a>:</td><td> </td><td valign="top"><a href="Elliptic-Functions-_0028Jacobi_0029.html#Elliptic-Functions-_0028Jacobi_0029">Elliptic Functions (Jacobi)</a></td></tr>
<tr><td></td><td valign="top"><a href="Singular-Value-Decomposition.html#index-Jacobi-orthogonalization">Jacobi orthogonalization</a>:</td><td> </td><td valign="top"><a href="Singular-Value-Decomposition.html#Singular-Value-Decomposition">Singular Value Decomposition</a></td></tr>
<tr><td></td><td valign="top"><a href="Defining-the-ODE-System.html#index-Jacobian-matrix_002c-ODEs">Jacobian matrix, ODEs</a>:</td><td> </td><td valign="top"><a href="Defining-the-ODE-System.html#Defining-the-ODE-System">Defining the ODE System</a></td></tr>
<tr><td></td><td valign="top"><a href="Overview-of-Multidimensional-Root-Finding.html#index-Jacobian-matrix_002c-root-finding">Jacobian matrix, root finding</a>:</td><td> </td><td valign="top"><a href="Overview-of-Multidimensional-Root-Finding.html#Overview-of-Multidimensional-Root-Finding">Overview of Multidimensional Root Finding</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th><a name="Concept-Index_cp_letter-K">K</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="Irregular-Modified-Cylindrical-Bessel-Functions.html#index-K_0028x_0029_002c-Bessel-Functions">K(x), Bessel Functions</a>:</td><td> </td><td valign="top"><a href="Irregular-Modified-Cylindrical-Bessel-Functions.html#Irregular-Modified-Cylindrical-Bessel-Functions">Irregular Modified Cylindrical Bessel Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Irregular-Modified-Spherical-Bessel-Functions.html#index-k_0028x_0029_002c-Bessel-Functions">k(x), Bessel Functions</a>:</td><td> </td><td valign="top"><a href="Irregular-Modified-Spherical-Bessel-Functions.html#Irregular-Modified-Spherical-Bessel-Functions">Irregular Modified Spherical Bessel Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Constructing-the-knots-vector.html#index-knots_002c-basis-splines">knots, basis splines</a>:</td><td> </td><td valign="top"><a href="Constructing-the-knots-vector.html#Constructing-the-knots-vector">Constructing the knots vector</a></td></tr>
<tr><td></td><td valign="top"><a href="Higher-moments-_0028skewness-and-kurtosis_0029.html#index-kurtosis">kurtosis</a>:</td><td> </td><td valign="top"><a href="Higher-moments-_0028skewness-and-kurtosis_0029.html#Higher-moments-_0028skewness-and-kurtosis_0029">Higher moments (skewness and kurtosis)</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th><a name="Concept-Index_cp_letter-L">L</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="Laguerre-Functions.html#index-Laguerre-functions">Laguerre functions</a>:</td><td> </td><td valign="top"><a href="Laguerre-Functions.html#Laguerre-Functions">Laguerre Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Lambert-W-Functions.html#index-Lambert-function">Lambert function</a>:</td><td> </td><td valign="top"><a href="Lambert-W-Functions.html#Lambert-W-Functions">Lambert W Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="The-Landau-Distribution.html#index-Landau-distribution">Landau distribution</a>:</td><td> </td><td valign="top"><a href="The-Landau-Distribution.html#The-Landau-Distribution">The Landau Distribution</a></td></tr>
<tr><td></td><td valign="top"><a href="Eigenvalue-and-Eigenvector-References.html#index-LAPACK">LAPACK</a>:</td><td> </td><td valign="top"><a href="Eigenvalue-and-Eigenvector-References.html#Eigenvalue-and-Eigenvector-References">Eigenvalue and Eigenvector References</a></td></tr>
<tr><td></td><td valign="top"><a href="The-Laplace-Distribution.html#index-Laplace-distribution">Laplace distribution</a>:</td><td> </td><td valign="top"><a href="The-Laplace-Distribution.html#The-Laplace-Distribution">The Laplace Distribution</a></td></tr>
<tr><td></td><td valign="top"><a href="Large-Dense-Linear-Systems.html#index-large-dense-linear-least-squares">large dense linear least squares</a>:</td><td> </td><td valign="top"><a href="Large-Dense-Linear-Systems.html#Large-Dense-Linear-Systems">Large Dense Linear Systems</a></td></tr>
<tr><td></td><td valign="top"><a href="Large-Dense-Linear-Systems-Normal-Equations.html#index-large-linear-least-squares_002c-normal-equations">large linear least squares, normal equations</a>:</td><td> </td><td valign="top"><a href="Large-Dense-Linear-Systems-Normal-Equations.html#Large-Dense-Linear-Systems-Normal-Equations">Large Dense Linear Systems Normal Equations</a></td></tr>
<tr><td></td><td valign="top"><a href="Large-Dense-Linear-Systems-Routines.html#index-large-linear-least-squares_002c-routines">large linear least squares, routines</a>:</td><td> </td><td valign="top"><a href="Large-Dense-Linear-Systems-Routines.html#Large-Dense-Linear-Systems-Routines">Large Dense Linear Systems Routines</a></td></tr>
<tr><td></td><td valign="top"><a href="Large-Dense-Linear-Systems-Solution-Steps.html#index-large-linear-least-squares_002c-steps">large linear least squares, steps</a>:</td><td> </td><td valign="top"><a href="Large-Dense-Linear-Systems-Solution-Steps.html#Large-Dense-Linear-Systems-Solution-Steps">Large Dense Linear Systems Solution Steps</a></td></tr>
<tr><td></td><td valign="top"><a href="Large-Dense-Linear-Systems-TSQR.html#index-large-linear-least-squares_002c-TSQR">large linear least squares, TSQR</a>:</td><td> </td><td valign="top"><a href="Large-Dense-Linear-Systems-TSQR.html#Large-Dense-Linear-Systems-TSQR">Large Dense Linear Systems TSQR</a></td></tr>
<tr><td></td><td valign="top"><a href="Elementary-Functions.html#index-ldexp">ldexp</a>:</td><td> </td><td valign="top"><a href="Elementary-Functions.html#Elementary-Functions">Elementary Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Shared-Libraries.html#index-LD_005fLIBRARY_005fPATH">LD_LIBRARY_PATH</a>:</td><td> </td><td valign="top"><a href="Shared-Libraries.html#Shared-Libraries">Shared Libraries</a></td></tr>
<tr><td></td><td valign="top"><a href="Matrices.html#index-leading-dimension_002c-matrices">leading dimension, matrices</a>:</td><td> </td><td valign="top"><a href="Matrices.html#Matrices">Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Least_002dSquares-Fitting.html#index-least-squares-fit">least squares fit</a>:</td><td> </td><td valign="top"><a href="Least_002dSquares-Fitting.html#Least_002dSquares-Fitting">Least-Squares Fitting</a></td></tr>
<tr><td></td><td valign="top"><a href="Troubleshooting.html#index-least-squares-troubleshooting">least squares troubleshooting</a>:</td><td> </td><td valign="top"><a href="Troubleshooting.html#Troubleshooting">Troubleshooting</a></td></tr>
<tr><td></td><td valign="top"><a href="Nonlinear-Least_002dSquares-Covariance-Matrix.html#index-least-squares_002c-covariance-of-best_002dfit-parameters">least squares, covariance of best-fit parameters</a>:</td><td> </td><td valign="top"><a href="Nonlinear-Least_002dSquares-Covariance-Matrix.html#Nonlinear-Least_002dSquares-Covariance-Matrix">Nonlinear Least-Squares Covariance Matrix</a></td></tr>
<tr><td></td><td valign="top"><a href="Nonlinear-Least_002dSquares-Fitting.html#index-least-squares_002c-nonlinear">least squares, nonlinear</a>:</td><td> </td><td valign="top"><a href="Nonlinear-Least_002dSquares-Fitting.html#Nonlinear-Least_002dSquares-Fitting">Nonlinear Least-Squares Fitting</a></td></tr>
<tr><td></td><td valign="top"><a href="Regularized-regression.html#index-least-squares_002c-regularized">least squares, regularized</a>:</td><td> </td><td valign="top"><a href="Regularized-regression.html#Regularized-regression">Regularized regression</a></td></tr>
<tr><td></td><td valign="top"><a href="Robust-linear-regression.html#index-least-squares_002c-robust">least squares, robust</a>:</td><td> </td><td valign="top"><a href="Robust-linear-regression.html#Robust-linear-regression">Robust linear regression</a></td></tr>
<tr><td></td><td valign="top"><a href="Definition-of-Legendre-Forms.html#index-Legendre-forms-of-elliptic-integrals">Legendre forms of elliptic integrals</a>:</td><td> </td><td valign="top"><a href="Definition-of-Legendre-Forms.html#Definition-of-Legendre-Forms">Definition of Legendre Forms</a></td></tr>
<tr><td></td><td valign="top"><a href="Legendre-Functions-and-Spherical-Harmonics.html#index-Legendre-functions">Legendre functions</a>:</td><td> </td><td valign="top"><a href="Legendre-Functions-and-Spherical-Harmonics.html#Legendre-Functions-and-Spherical-Harmonics">Legendre Functions and Spherical Harmonics</a></td></tr>
<tr><td></td><td valign="top"><a href="Legendre-Functions-and-Spherical-Harmonics.html#index-Legendre-polynomials">Legendre polynomials</a>:</td><td> </td><td valign="top"><a href="Legendre-Functions-and-Spherical-Harmonics.html#Legendre-Functions-and-Spherical-Harmonics">Legendre Functions and Spherical Harmonics</a></td></tr>
<tr><td></td><td valign="top"><a href="Elementary-Functions.html#index-length_002c-computed-accurately-using-hypot">length, computed accurately using hypot</a>:</td><td> </td><td valign="top"><a href="Elementary-Functions.html#Elementary-Functions">Elementary Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Elementary-Functions.html#index-length_002c-computed-accurately-using-hypot-1">length, computed accurately using hypot</a>:</td><td> </td><td valign="top"><a href="Elementary-Functions.html#Elementary-Functions">Elementary Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Nonlinear-Least_002dSquares-TRS-Levenberg_002dMarquardt.html#index-Levenberg_002dMarquardt-algorithm">Levenberg-Marquardt algorithm</a>:</td><td> </td><td valign="top"><a href="Nonlinear-Least_002dSquares-TRS-Levenberg_002dMarquardt.html#Nonlinear-Least_002dSquares-TRS-Levenberg_002dMarquardt">Nonlinear Least-Squares TRS Levenberg-Marquardt</a></td></tr>
<tr><td></td><td valign="top"><a href="Nonlinear-Least_002dSquares-TRS-Levenberg_002dMarquardt-with-Geodesic-Acceleration.html#index-Levenberg_002dMarquardt-algorithm_002c-geodesic-acceleration">Levenberg-Marquardt algorithm, geodesic acceleration</a>:</td><td> </td><td valign="top"><a href="Nonlinear-Least_002dSquares-TRS-Levenberg_002dMarquardt-with-Geodesic-Acceleration.html#Nonlinear-Least_002dSquares-TRS-Levenberg_002dMarquardt-with-Geodesic-Acceleration">Nonlinear Least-Squares TRS Levenberg-Marquardt with Geodesic Acceleration</a></td></tr>
<tr><td></td><td valign="top"><a href="Series-Acceleration.html#index-Levin-u_002dtransform">Levin u-transform</a>:</td><td> </td><td valign="top"><a href="Series-Acceleration.html#Series-Acceleration">Series Acceleration</a></td></tr>
<tr><td></td><td valign="top"><a href="The-Levy-alpha_002dStable-Distributions.html#index-Levy-distribution">Levy distribution</a>:</td><td> </td><td valign="top"><a href="The-Levy-alpha_002dStable-Distributions.html#The-Levy-alpha_002dStable-Distributions">The Levy alpha-Stable Distributions</a></td></tr>
<tr><td></td><td valign="top"><a href="The-Levy-skew-alpha_002dStable-Distribution.html#index-Levy-distribution_002c-skew">Levy distribution, skew</a>:</td><td> </td><td valign="top"><a href="The-Levy-skew-alpha_002dStable-Distribution.html#The-Levy-skew-alpha_002dStable-Distribution">The Levy skew alpha-Stable Distribution</a></td></tr>
<tr><td></td><td valign="top"><a href="Linking-programs-with-the-library.html#index-libraries_002c-linking-with">libraries, linking with</a>:</td><td> </td><td valign="top"><a href="Linking-programs-with-the-library.html#Linking-programs-with-the-library">Linking programs with the library</a></td></tr>
<tr><td></td><td valign="top"><a href="Shared-Libraries.html#index-libraries_002c-shared">libraries, shared</a>:</td><td> </td><td valign="top"><a href="Shared-Libraries.html#Shared-Libraries">Shared Libraries</a></td></tr>
<tr><td></td><td valign="top"><a href="Introduction.html#index-license-of-GSL">license of GSL</a>:</td><td> </td><td valign="top"><a href="Introduction.html#Introduction">Introduction</a></td></tr>
<tr><td></td><td valign="top"><a href="Light-and-Illumination.html#index-light_002c-units-of">light, units of</a>:</td><td> </td><td valign="top"><a href="Light-and-Illumination.html#Light-and-Illumination">Light and Illumination</a></td></tr>
<tr><td></td><td valign="top"><a href="Linear-Algebra.html#index-linear-algebra">linear algebra</a>:</td><td> </td><td valign="top"><a href="Linear-Algebra.html#Linear-Algebra">Linear Algebra</a></td></tr>
<tr><td></td><td valign="top"><a href="BLAS-Support.html#index-linear-algebra_002c-BLAS">linear algebra, BLAS</a>:</td><td> </td><td valign="top"><a href="BLAS-Support.html#BLAS-Support">BLAS Support</a></td></tr>
<tr><td></td><td valign="top"><a href="Sparse-Linear-Algebra.html#index-linear-algebra_002c-sparse">linear algebra, sparse</a>:</td><td> </td><td valign="top"><a href="Sparse-Linear-Algebra.html#Sparse-Linear-Algebra">Sparse Linear Algebra</a></td></tr>
<tr><td></td><td valign="top"><a href="1D-Interpolation-Types.html#index-linear-interpolation">linear interpolation</a>:</td><td> </td><td valign="top"><a href="1D-Interpolation-Types.html#g_t1D-Interpolation-Types">1D Interpolation Types</a></td></tr>
<tr><td></td><td valign="top"><a href="Large-Dense-Linear-Systems.html#index-linear-least-squares_002c-large">linear least squares, large</a>:</td><td> </td><td valign="top"><a href="Large-Dense-Linear-Systems.html#Large-Dense-Linear-Systems">Large Dense Linear Systems</a></td></tr>
<tr><td></td><td valign="top"><a href="Linear-regression.html#index-linear-regression">linear regression</a>:</td><td> </td><td valign="top"><a href="Linear-regression.html#Linear-regression">Linear regression</a></td></tr>
<tr><td></td><td valign="top"><a href="LU-Decomposition.html#index-linear-systems_002c-refinement-of-solutions">linear systems, refinement of solutions</a>:</td><td> </td><td valign="top"><a href="LU-Decomposition.html#LU-Decomposition">LU Decomposition</a></td></tr>
<tr><td></td><td valign="top"><a href="LU-Decomposition.html#index-linear-systems_002c-solution-of">linear systems, solution of</a>:</td><td> </td><td valign="top"><a href="LU-Decomposition.html#LU-Decomposition">LU Decomposition</a></td></tr>
<tr><td></td><td valign="top"><a href="Linking-programs-with-the-library.html#index-linking-with-GSL-libraries">linking with GSL libraries</a>:</td><td> </td><td valign="top"><a href="Linking-programs-with-the-library.html#Linking-programs-with-the-library">Linking programs with the library</a></td></tr>
<tr><td></td><td valign="top"><a href="Elementary-Functions.html#index-log1p">log1p</a>:</td><td> </td><td valign="top"><a href="Elementary-Functions.html#Elementary-Functions">Elementary Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Logarithm-and-Related-Functions.html#index-logarithm-and-related-functions">logarithm and related functions</a>:</td><td> </td><td valign="top"><a href="Logarithm-and-Related-Functions.html#Logarithm-and-Related-Functions">Logarithm and Related Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Beta-Functions.html#index-logarithm-of-Beta-function">logarithm of Beta function</a>:</td><td> </td><td valign="top"><a href="Beta-Functions.html#Beta-Functions">Beta Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Factorials.html#index-logarithm-of-combinatorial-factor-C_0028m_002cn_0029">logarithm of combinatorial factor C(m,n)</a>:</td><td> </td><td valign="top"><a href="Factorials.html#Factorials">Factorials</a></td></tr>
<tr><td></td><td valign="top"><a href="Elementary-Complex-Functions.html#index-logarithm-of-complex-number">logarithm of complex number</a>:</td><td> </td><td valign="top"><a href="Elementary-Complex-Functions.html#Elementary-Complex-Functions">Elementary Complex Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Hyperbolic-Trigonometric-Functions.html#index-logarithm-of-cosh-function_002c-special-functions">logarithm of cosh function, special functions</a>:</td><td> </td><td valign="top"><a href="Hyperbolic-Trigonometric-Functions.html#Hyperbolic-Trigonometric-Functions">Hyperbolic Trigonometric Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Factorials.html#index-logarithm-of-double-factorial">logarithm of double factorial</a>:</td><td> </td><td valign="top"><a href="Factorials.html#Factorials">Factorials</a></td></tr>
<tr><td></td><td valign="top"><a href="Factorials.html#index-logarithm-of-factorial">logarithm of factorial</a>:</td><td> </td><td valign="top"><a href="Factorials.html#Factorials">Factorials</a></td></tr>
<tr><td></td><td valign="top"><a href="Gamma-Functions.html#index-logarithm-of-Gamma-function">logarithm of Gamma function</a>:</td><td> </td><td valign="top"><a href="Gamma-Functions.html#Gamma-Functions">Gamma Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Pochhammer-Symbol.html#index-logarithm-of-Pochhammer-symbol">logarithm of Pochhammer symbol</a>:</td><td> </td><td valign="top"><a href="Pochhammer-Symbol.html#Pochhammer-Symbol">Pochhammer Symbol</a></td></tr>
<tr><td></td><td valign="top"><a href="Hyperbolic-Trigonometric-Functions.html#index-logarithm-of-sinh-function_002c-special-functions">logarithm of sinh function, special functions</a>:</td><td> </td><td valign="top"><a href="Hyperbolic-Trigonometric-Functions.html#Hyperbolic-Trigonometric-Functions">Hyperbolic Trigonometric Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="LU-Decomposition.html#index-logarithm-of-the-determinant-of-a-matrix">logarithm of the determinant of a matrix</a>:</td><td> </td><td valign="top"><a href="LU-Decomposition.html#LU-Decomposition">LU Decomposition</a></td></tr>
<tr><td></td><td valign="top"><a href="Elementary-Functions.html#index-logarithm_002c-computed-accurately-near-1">logarithm, computed accurately near 1</a>:</td><td> </td><td valign="top"><a href="Elementary-Functions.html#Elementary-Functions">Elementary Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="The-Logarithmic-Distribution.html#index-Logarithmic-random-variates">Logarithmic random variates</a>:</td><td> </td><td valign="top"><a href="The-Logarithmic-Distribution.html#The-Logarithmic-Distribution">The Logarithmic Distribution</a></td></tr>
<tr><td></td><td valign="top"><a href="The-Logistic-Distribution.html#index-Logistic-distribution">Logistic distribution</a>:</td><td> </td><td valign="top"><a href="The-Logistic-Distribution.html#The-Logistic-Distribution">The Logistic Distribution</a></td></tr>
<tr><td></td><td valign="top"><a href="The-Lognormal-Distribution.html#index-Lognormal-distribution">Lognormal distribution</a>:</td><td> </td><td valign="top"><a href="The-Lognormal-Distribution.html#The-Lognormal-Distribution">The Lognormal Distribution</a></td></tr>
<tr><td></td><td valign="top"><a href="Long-double.html#index-long-double">long double</a>:</td><td> </td><td valign="top"><a href="Long-double.html#Long-double">Long double</a></td></tr>
<tr><td></td><td valign="top"><a href="Quasi_002dRandom-Sequences.html#index-low-discrepancy-sequences">low discrepancy sequences</a>:</td><td> </td><td valign="top"><a href="Quasi_002dRandom-Sequences.html#Quasi_002dRandom-Sequences">Quasi-Random Sequences</a></td></tr>
<tr><td></td><td valign="top"><a href="GSL-CBLAS-Library.html#index-Low_002dlevel-CBLAS">Low-level CBLAS</a>:</td><td> </td><td valign="top"><a href="GSL-CBLAS-Library.html#GSL-CBLAS-Library">GSL CBLAS Library</a></td></tr>
<tr><td></td><td valign="top"><a href="LU-Decomposition.html#index-LU-decomposition">LU decomposition</a>:</td><td> </td><td valign="top"><a href="LU-Decomposition.html#LU-Decomposition">LU Decomposition</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th><a name="Concept-Index_cp_letter-M">M</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="Mathematical-Constants.html#index-macros-for-mathematical-constants">macros for mathematical constants</a>:</td><td> </td><td valign="top"><a href="Mathematical-Constants.html#Mathematical-Constants">Mathematical Constants</a></td></tr>
<tr><td></td><td valign="top"><a href="Properties-of-complex-numbers.html#index-magnitude-of-complex-number">magnitude of complex number</a>:</td><td> </td><td valign="top"><a href="Properties-of-complex-numbers.html#Properties-of-complex-numbers">Properties of complex numbers</a></td></tr>
<tr><td></td><td valign="top"><a href="Further-Information.html#index-mailing-list-archives">mailing list archives</a>:</td><td> </td><td valign="top"><a href="Further-Information.html#Further-Information">Further Information</a></td></tr>
<tr><td></td><td valign="top"><a href="Obtaining-GSL.html#index-mailing-list-for-GSL-announcements">mailing list for GSL announcements</a>:</td><td> </td><td valign="top"><a href="Obtaining-GSL.html#Obtaining-GSL">Obtaining GSL</a></td></tr>
<tr><td></td><td valign="top"><a href="Reporting-Bugs.html#index-mailing-list_002c-bug_002dgsl">mailing list, bug-gsl</a>:</td><td> </td><td valign="top"><a href="Reporting-Bugs.html#Reporting-Bugs">Reporting Bugs</a></td></tr>
<tr><td></td><td valign="top"><a href="Representation-of-floating-point-numbers.html#index-mantissa_002c-IEEE-format">mantissa, IEEE format</a>:</td><td> </td><td valign="top"><a href="Representation-of-floating-point-numbers.html#Representation-of-floating-point-numbers">Representation of floating point numbers</a></td></tr>
<tr><td></td><td valign="top"><a href="Mass-and-Weight.html#index-mass_002c-units-of">mass, units of</a>:</td><td> </td><td valign="top"><a href="Mass-and-Weight.html#Mass-and-Weight">Mass and Weight</a></td></tr>
<tr><td></td><td valign="top"><a href="Mathematical-Constants.html#index-mathematical-constants_002c-defined-as-macros">mathematical constants, defined as macros</a>:</td><td> </td><td valign="top"><a href="Mathematical-Constants.html#Mathematical-Constants">Mathematical Constants</a></td></tr>
<tr><td></td><td valign="top"><a href="Mathematical-Functions.html#index-mathematical-functions_002c-elementary">mathematical functions, elementary</a>:</td><td> </td><td valign="top"><a href="Mathematical-Functions.html#Mathematical-Functions">Mathematical Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Mathieu-Function-Characteristic-Values.html#index-Mathieu-Function-Characteristic-Values">Mathieu Function Characteristic Values</a>:</td><td> </td><td valign="top"><a href="Mathieu-Function-Characteristic-Values.html#Mathieu-Function-Characteristic-Values">Mathieu Function Characteristic Values</a></td></tr>
<tr><td></td><td valign="top"><a href="Mathieu-Functions.html#index-Mathieu-functions">Mathieu functions</a>:</td><td> </td><td valign="top"><a href="Mathieu-Functions.html#Mathieu-Functions">Mathieu Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Vectors-and-Matrices.html#index-matrices">matrices</a>:</td><td> </td><td valign="top"><a href="Vectors-and-Matrices.html#Vectors-and-Matrices">Vectors and Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Matrices.html#index-matrices-1">matrices</a>:</td><td> </td><td valign="top"><a href="Matrices.html#Matrices">Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Initializing-matrix-elements.html#index-matrices_002c-initializing">matrices, initializing</a>:</td><td> </td><td valign="top"><a href="Initializing-matrix-elements.html#Initializing-matrix-elements">Initializing matrix elements</a></td></tr>
<tr><td></td><td valign="top"><a href="Accessing-matrix-elements.html#index-matrices_002c-range_002dchecking">matrices, range-checking</a>:</td><td> </td><td valign="top"><a href="Accessing-matrix-elements.html#Accessing-matrix-elements">Accessing matrix elements</a></td></tr>
<tr><td></td><td valign="top"><a href="Sparse-Matrices.html#index-matrices_002c-sparse">matrices, sparse</a>:</td><td> </td><td valign="top"><a href="Sparse-Matrices.html#Sparse-Matrices">Sparse Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="LU-Decomposition.html#index-matrix-determinant">matrix determinant</a>:</td><td> </td><td valign="top"><a href="LU-Decomposition.html#LU-Decomposition">LU Decomposition</a></td></tr>
<tr><td></td><td valign="top"><a href="Creating-row-and-column-views.html#index-matrix-diagonal">matrix diagonal</a>:</td><td> </td><td valign="top"><a href="Creating-row-and-column-views.html#Creating-row-and-column-views">Creating row and column views</a></td></tr>
<tr><td></td><td valign="top"><a href="Linear-Algebra.html#index-matrix-factorization">matrix factorization</a>:</td><td> </td><td valign="top"><a href="Linear-Algebra.html#Linear-Algebra">Linear Algebra</a></td></tr>
<tr><td></td><td valign="top"><a href="LU-Decomposition.html#index-matrix-inverse">matrix inverse</a>:</td><td> </td><td valign="top"><a href="LU-Decomposition.html#LU-Decomposition">LU Decomposition</a></td></tr>
<tr><td></td><td valign="top"><a href="Cholesky-Decomposition.html#index-matrix-square-root_002c-Cholesky-decomposition">matrix square root, Cholesky decomposition</a>:</td><td> </td><td valign="top"><a href="Cholesky-Decomposition.html#Cholesky-Decomposition">Cholesky Decomposition</a></td></tr>
<tr><td></td><td valign="top"><a href="Creating-row-and-column-views.html#index-matrix-subdiagonal">matrix subdiagonal</a>:</td><td> </td><td valign="top"><a href="Creating-row-and-column-views.html#Creating-row-and-column-views">Creating row and column views</a></td></tr>
<tr><td></td><td valign="top"><a href="Creating-row-and-column-views.html#index-matrix-superdiagonal">matrix superdiagonal</a>:</td><td> </td><td valign="top"><a href="Creating-row-and-column-views.html#Creating-row-and-column-views">Creating row and column views</a></td></tr>
<tr><td></td><td valign="top"><a href="Initializing-matrix-elements.html#index-matrix_002c-constant">matrix, constant</a>:</td><td> </td><td valign="top"><a href="Initializing-matrix-elements.html#Initializing-matrix-elements">Initializing matrix elements</a></td></tr>
<tr><td></td><td valign="top"><a href="Initializing-matrix-elements.html#index-matrix_002c-identity">matrix, identity</a>:</td><td> </td><td valign="top"><a href="Initializing-matrix-elements.html#Initializing-matrix-elements">Initializing matrix elements</a></td></tr>
<tr><td></td><td valign="top"><a href="BLAS-Support.html#index-matrix_002c-operations">matrix, operations</a>:</td><td> </td><td valign="top"><a href="BLAS-Support.html#BLAS-Support">BLAS Support</a></td></tr>
<tr><td></td><td valign="top"><a href="Initializing-matrix-elements.html#index-matrix_002c-zero">matrix, zero</a>:</td><td> </td><td valign="top"><a href="Initializing-matrix-elements.html#Initializing-matrix-elements">Initializing matrix elements</a></td></tr>
<tr><td></td><td valign="top"><a href="Statistics.html#index-max">max</a>:</td><td> </td><td valign="top"><a href="Statistics.html#Statistics">Statistics</a></td></tr>
<tr><td></td><td valign="top"><a href="DWT-Initialization.html#index-maximal-phase_002c-Daubechies-wavelets">maximal phase, Daubechies wavelets</a>:</td><td> </td><td valign="top"><a href="DWT-Initialization.html#DWT-Initialization">DWT Initialization</a></td></tr>
<tr><td></td><td valign="top"><a href="One-dimensional-Minimization.html#index-maximization_002c-see-minimization">maximization, see minimization</a>:</td><td> </td><td valign="top"><a href="One-dimensional-Minimization.html#One-dimensional-Minimization">One dimensional Minimization</a></td></tr>
<tr><td></td><td valign="top"><a href="Maximum-and-Minimum-functions.html#index-maximum-of-two-numbers">maximum of two numbers</a>:</td><td> </td><td valign="top"><a href="Maximum-and-Minimum-functions.html#Maximum-and-Minimum-functions">Maximum and Minimum functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Histogram-Statistics.html#index-maximum-value_002c-from-histogram">maximum value, from histogram</a>:</td><td> </td><td valign="top"><a href="Histogram-Statistics.html#Histogram-Statistics">Histogram Statistics</a></td></tr>
<tr><td></td><td valign="top"><a href="Statistics.html#index-mean">mean</a>:</td><td> </td><td valign="top"><a href="Statistics.html#Statistics">Statistics</a></td></tr>
<tr><td></td><td valign="top"><a href="Histogram-Statistics.html#index-mean-value_002c-from-histogram">mean value, from histogram</a>:</td><td> </td><td valign="top"><a href="Histogram-Statistics.html#Histogram-Statistics">Histogram Statistics</a></td></tr>
<tr><td></td><td valign="top"><a href="Probability-functions.html#index-Mills_0027-ratio_002c-inverse">Mills’ ratio, inverse</a>:</td><td> </td><td valign="top"><a href="Probability-functions.html#Probability-functions">Probability functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Statistics.html#index-min">min</a>:</td><td> </td><td valign="top"><a href="Statistics.html#Statistics">Statistics</a></td></tr>
<tr><td></td><td valign="top"><a href="Multimin-Algorithms-with-Derivatives.html#index-minimization_002c-BFGS-algorithm">minimization, BFGS algorithm</a>:</td><td> </td><td valign="top"><a href="Multimin-Algorithms-with-Derivatives.html#Multimin-Algorithms-with-Derivatives">Multimin Algorithms with Derivatives</a></td></tr>
<tr><td></td><td valign="top"><a href="Minimization-Caveats.html#index-minimization_002c-caveats">minimization, caveats</a>:</td><td> </td><td valign="top"><a href="Minimization-Caveats.html#Minimization-Caveats">Minimization Caveats</a></td></tr>
<tr><td></td><td valign="top"><a href="Multimin-Algorithms-with-Derivatives.html#index-minimization_002c-conjugate-gradient-algorithm">minimization, conjugate gradient algorithm</a>:</td><td> </td><td valign="top"><a href="Multimin-Algorithms-with-Derivatives.html#Multimin-Algorithms-with-Derivatives">Multimin Algorithms with Derivatives</a></td></tr>
<tr><td></td><td valign="top"><a href="Multidimensional-Minimization.html#index-minimization_002c-multidimensional">minimization, multidimensional</a>:</td><td> </td><td valign="top"><a href="Multidimensional-Minimization.html#Multidimensional-Minimization">Multidimensional Minimization</a></td></tr>
<tr><td></td><td valign="top"><a href="One-dimensional-Minimization.html#index-minimization_002c-one_002ddimensional">minimization, one-dimensional</a>:</td><td> </td><td valign="top"><a href="One-dimensional-Minimization.html#One-dimensional-Minimization">One dimensional Minimization</a></td></tr>
<tr><td></td><td valign="top"><a href="Minimization-Overview.html#index-minimization_002c-overview">minimization, overview</a>:</td><td> </td><td valign="top"><a href="Minimization-Overview.html#Minimization-Overview">Minimization Overview</a></td></tr>
<tr><td></td><td valign="top"><a href="Multimin-Algorithms-with-Derivatives.html#index-minimization_002c-Polak_002dRibiere-algorithm">minimization, Polak-Ribiere algorithm</a>:</td><td> </td><td valign="top"><a href="Multimin-Algorithms-with-Derivatives.html#Multimin-Algorithms-with-Derivatives">Multimin Algorithms with Derivatives</a></td></tr>
<tr><td></td><td valign="top"><a href="Providing-the-function-to-minimize.html#index-minimization_002c-providing-a-function-to-minimize">minimization, providing a function to minimize</a>:</td><td> </td><td valign="top"><a href="Providing-the-function-to-minimize.html#Providing-the-function-to-minimize">Providing the function to minimize</a></td></tr>
<tr><td></td><td valign="top"><a href="Multimin-Algorithms-without-Derivatives.html#index-minimization_002c-simplex-algorithm">minimization, simplex algorithm</a>:</td><td> </td><td valign="top"><a href="Multimin-Algorithms-without-Derivatives.html#Multimin-Algorithms-without-Derivatives">Multimin Algorithms without Derivatives</a></td></tr>
<tr><td></td><td valign="top"><a href="Multimin-Algorithms-with-Derivatives.html#index-minimization_002c-steepest-descent-algorithm">minimization, steepest descent algorithm</a>:</td><td> </td><td valign="top"><a href="Multimin-Algorithms-with-Derivatives.html#Multimin-Algorithms-with-Derivatives">Multimin Algorithms with Derivatives</a></td></tr>
<tr><td></td><td valign="top"><a href="Minimization-Stopping-Parameters.html#index-minimization_002c-stopping-parameters">minimization, stopping parameters</a>:</td><td> </td><td valign="top"><a href="Minimization-Stopping-Parameters.html#Minimization-Stopping-Parameters">Minimization Stopping Parameters</a></td></tr>
<tr><td></td><td valign="top"><a href="Minimization-Algorithms.html#index-minimum-finding_002c-Brent_0027s-method">minimum finding, Brent’s method</a>:</td><td> </td><td valign="top"><a href="Minimization-Algorithms.html#Minimization-Algorithms">Minimization Algorithms</a></td></tr>
<tr><td></td><td valign="top"><a href="Minimization-Algorithms.html#index-minimum-finding_002c-golden-section-algorithm">minimum finding, golden section algorithm</a>:</td><td> </td><td valign="top"><a href="Minimization-Algorithms.html#Minimization-Algorithms">Minimization Algorithms</a></td></tr>
<tr><td></td><td valign="top"><a href="Maximum-and-Minimum-functions.html#index-minimum-of-two-numbers">minimum of two numbers</a>:</td><td> </td><td valign="top"><a href="Maximum-and-Minimum-functions.html#Maximum-and-Minimum-functions">Maximum and Minimum functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Histogram-Statistics.html#index-minimum-value_002c-from-histogram">minimum value, from histogram</a>:</td><td> </td><td valign="top"><a href="Histogram-Statistics.html#Histogram-Statistics">Histogram Statistics</a></td></tr>
<tr><td></td><td valign="top"><a href="Algorithms-using-Derivatives.html#index-MINPACK_002c-minimization-algorithms">MINPACK, minimization algorithms</a>:</td><td> </td><td valign="top"><a href="Algorithms-using-Derivatives.html#Algorithms-using-Derivatives">Algorithms using Derivatives</a></td></tr>
<tr><td></td><td valign="top"><a href="Special-Functions-References-and-Further-Reading.html#index-MISCFUN">MISCFUN</a>:</td><td> </td><td valign="top"><a href="Special-Functions-References-and-Further-Reading.html#Special-Functions-References-and-Further-Reading">Special Functions References and Further Reading</a></td></tr>
<tr><td></td><td valign="top"><a href="MISER.html#index-MISER-monte-carlo-integration">MISER monte carlo integration</a>:</td><td> </td><td valign="top"><a href="MISER.html#MISER">MISER</a></td></tr>
<tr><td></td><td valign="top"><a href="Mixed_002dradix-FFT-routines-for-complex-data.html#index-Mixed_002dradix-FFT_002c-complex-data">Mixed-radix FFT, complex data</a>:</td><td> </td><td valign="top"><a href="Mixed_002dradix-FFT-routines-for-complex-data.html#Mixed_002dradix-FFT-routines-for-complex-data">Mixed-radix FFT routines for complex data</a></td></tr>
<tr><td></td><td valign="top"><a href="Mixed_002dradix-FFT-routines-for-real-data.html#index-Mixed_002dradix-FFT_002c-real-data">Mixed-radix FFT, real data</a>:</td><td> </td><td valign="top"><a href="Mixed_002dradix-FFT-routines-for-real-data.html#Mixed_002dradix-FFT-routines-for-real-data">Mixed-radix FFT routines for real data</a></td></tr>
<tr><td></td><td valign="top"><a href="Regular-Modified-Bessel-Functions-_002d-Fractional-Order.html#index-Modified-Bessel-Functions_002c-Fractional-Order">Modified Bessel Functions, Fractional Order</a>:</td><td> </td><td valign="top"><a href="Regular-Modified-Bessel-Functions-_002d-Fractional-Order.html#Regular-Modified-Bessel-Functions-_002d-Fractional-Order">Regular Modified Bessel Functions - Fractional Order</a></td></tr>
<tr><td></td><td valign="top"><a href="Modified-Cholesky-Decomposition.html#index-Modified-Cholesky-Decomposition">Modified Cholesky Decomposition</a>:</td><td> </td><td valign="top"><a href="Modified-Cholesky-Decomposition.html#Modified-Cholesky-Decomposition">Modified Cholesky Decomposition</a></td></tr>
<tr><td></td><td valign="top"><a href="Integrands-with-weight-functions.html#index-Modified-Clenshaw_002dCurtis-quadrature">Modified Clenshaw-Curtis quadrature</a>:</td><td> </td><td valign="top"><a href="Integrands-with-weight-functions.html#Integrands-with-weight-functions">Integrands with weight functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Regular-Modified-Cylindrical-Bessel-Functions.html#index-Modified-Cylindrical-Bessel-Functions">Modified Cylindrical Bessel Functions</a>:</td><td> </td><td valign="top"><a href="Regular-Modified-Cylindrical-Bessel-Functions.html#Regular-Modified-Cylindrical-Bessel-Functions">Regular Modified Cylindrical Bessel Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Level-1-GSL-BLAS-Interface.html#index-Modified-Givens-Rotation_002c-BLAS">Modified Givens Rotation, BLAS</a>:</td><td> </td><td valign="top"><a href="Level-1-GSL-BLAS-Interface.html#Level-1-GSL-BLAS-Interface">Level 1 GSL BLAS Interface</a></td></tr>
<tr><td></td><td valign="top"><a href="Algorithms-using-Derivatives.html#index-Modified-Newton_0027s-method-for-nonlinear-systems">Modified Newton’s method for nonlinear systems</a>:</td><td> </td><td valign="top"><a href="Algorithms-using-Derivatives.html#Algorithms-using-Derivatives">Algorithms using Derivatives</a></td></tr>
<tr><td></td><td valign="top"><a href="Regular-Modified-Spherical-Bessel-Functions.html#index-Modified-Spherical-Bessel-Functions">Modified Spherical Bessel Functions</a>:</td><td> </td><td valign="top"><a href="Regular-Modified-Spherical-Bessel-Functions.html#Regular-Modified-Spherical-Bessel-Functions">Regular Modified Spherical Bessel Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Monte-Carlo-Integration.html#index-Monte-Carlo-integration">Monte Carlo integration</a>:</td><td> </td><td valign="top"><a href="Monte-Carlo-Integration.html#Monte-Carlo-Integration">Monte Carlo Integration</a></td></tr>
<tr><td></td><td valign="top"><a href="Random-number-generator-algorithms.html#index-MRG_002c-multiple-recursive-random-number-generator">MRG, multiple recursive random number generator</a>:</td><td> </td><td valign="top"><a href="Random-number-generator-algorithms.html#Random-number-generator-algorithms">Random number generator algorithms</a></td></tr>
<tr><td></td><td valign="top"><a href="Random-number-generator-algorithms.html#index-MT19937-random-number-generator">MT19937 random number generator</a>:</td><td> </td><td valign="top"><a href="Random-number-generator-algorithms.html#Random-number-generator-algorithms">Random number generator algorithms</a></td></tr>
<tr><td></td><td valign="top"><a href="Multi_002dparameter-regression.html#index-multi_002dparameter-regression">multi-parameter regression</a>:</td><td> </td><td valign="top"><a href="Multi_002dparameter-regression.html#Multi_002dparameter-regression">Multi-parameter regression</a></td></tr>
<tr><td></td><td valign="top"><a href="Monte-Carlo-Integration.html#index-multidimensional-integration">multidimensional integration</a>:</td><td> </td><td valign="top"><a href="Monte-Carlo-Integration.html#Monte-Carlo-Integration">Monte Carlo Integration</a></td></tr>
<tr><td></td><td valign="top"><a href="Algorithms-without-Derivatives.html#index-multidimensional-root-finding_002c-Broyden-algorithm">multidimensional root finding, Broyden algorithm</a>:</td><td> </td><td valign="top"><a href="Algorithms-without-Derivatives.html#Algorithms-without-Derivatives">Algorithms without Derivatives</a></td></tr>
<tr><td></td><td valign="top"><a href="Overview-of-Multidimensional-Root-Finding.html#index-multidimensional-root-finding_002c-overview">multidimensional root finding, overview</a>:</td><td> </td><td valign="top"><a href="Overview-of-Multidimensional-Root-Finding.html#Overview-of-Multidimensional-Root-Finding">Overview of Multidimensional Root Finding</a></td></tr>
<tr><td></td><td valign="top"><a href="Providing-the-multidimensional-system-of-equations-to-solve.html#index-multidimensional-root-finding_002c-providing-a-function-to-solve">multidimensional root finding, providing a function to solve</a>:</td><td> </td><td valign="top"><a href="Providing-the-multidimensional-system-of-equations-to-solve.html#Providing-the-multidimensional-system-of-equations-to-solve">Providing the multidimensional system of equations to solve</a></td></tr>
<tr><td></td><td valign="top"><a href="Multimin-Caveats.html#index-Multimin_002c-caveats">Multimin, caveats</a>:</td><td> </td><td valign="top"><a href="Multimin-Caveats.html#Multimin-Caveats">Multimin Caveats</a></td></tr>
<tr><td></td><td valign="top"><a href="The-Multinomial-Distribution.html#index-Multinomial-distribution">Multinomial distribution</a>:</td><td> </td><td valign="top"><a href="The-Multinomial-Distribution.html#The-Multinomial-Distribution">The Multinomial Distribution</a></td></tr>
<tr><td></td><td valign="top"><a href="Elementary-Operations.html#index-multiplication">multiplication</a>:</td><td> </td><td valign="top"><a href="Elementary-Operations.html#Elementary-Operations">Elementary Operations</a></td></tr>
<tr><td></td><td valign="top"><a href="Multisets.html#index-multisets">multisets</a>:</td><td> </td><td valign="top"><a href="Multisets.html#Multisets">Multisets</a></td></tr>
<tr><td></td><td valign="top"><a href="Stepping-Functions.html#index-multistep-methods_002c-ODEs">multistep methods, ODEs</a>:</td><td> </td><td valign="top"><a href="Stepping-Functions.html#Stepping-Functions">Stepping Functions</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th><a name="Concept-Index_cp_letter-N">N</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="Spherical-Vector-Distributions.html#index-N_002ddimensional-random-direction-vector">N-dimensional random direction vector</a>:</td><td> </td><td valign="top"><a href="Spherical-Vector-Distributions.html#Spherical-Vector-Distributions">Spherical Vector Distributions</a></td></tr>
<tr><td></td><td valign="top"><a href="Infinities-and-Not_002da_002dnumber.html#index-NaN_002c-defined-as-a-macro">NaN, defined as a macro</a>:</td><td> </td><td valign="top"><a href="Infinities-and-Not_002da_002dnumber.html#Infinities-and-Not_002da_002dnumber">Infinities and Not-a-number</a></td></tr>
<tr><td></td><td valign="top"><a href="Speed-and-Nautical-Units.html#index-nautical-units">nautical units</a>:</td><td> </td><td valign="top"><a href="Speed-and-Nautical-Units.html#Speed-and-Nautical-Units">Speed and Nautical Units</a></td></tr>
<tr><td></td><td valign="top"><a href="The-Negative-Binomial-Distribution.html#index-Negative-Binomial-distribution_002c-random-variates">Negative Binomial distribution, random variates</a>:</td><td> </td><td valign="top"><a href="The-Negative-Binomial-Distribution.html#The-Negative-Binomial-Distribution">The Negative Binomial Distribution</a></td></tr>
<tr><td></td><td valign="top"><a href="Multimin-Algorithms-without-Derivatives.html#index-Nelder_002dMead-simplex-algorithm-for-minimization">Nelder-Mead simplex algorithm for minimization</a>:</td><td> </td><td valign="top"><a href="Multimin-Algorithms-without-Derivatives.html#Multimin-Algorithms-without-Derivatives">Multimin Algorithms without Derivatives</a></td></tr>
<tr><td></td><td valign="top"><a href="Algorithms-without-Derivatives.html#index-Newton-algorithm_002c-discrete">Newton algorithm, discrete</a>:</td><td> </td><td valign="top"><a href="Algorithms-without-Derivatives.html#Algorithms-without-Derivatives">Algorithms without Derivatives</a></td></tr>
<tr><td></td><td valign="top"><a href="Algorithms-using-Derivatives.html#index-Newton-algorithm_002c-globally-convergent">Newton algorithm, globally convergent</a>:</td><td> </td><td valign="top"><a href="Algorithms-using-Derivatives.html#Algorithms-using-Derivatives">Algorithms using Derivatives</a></td></tr>
<tr><td></td><td valign="top"><a href="Root-Finding-Algorithms-using-Derivatives.html#index-Newton_0027s-method-for-finding-roots">Newton’s method for finding roots</a>:</td><td> </td><td valign="top"><a href="Root-Finding-Algorithms-using-Derivatives.html#Root-Finding-Algorithms-using-Derivatives">Root Finding Algorithms using Derivatives</a></td></tr>
<tr><td></td><td valign="top"><a href="Algorithms-using-Derivatives.html#index-Newton_0027s-method-for-systems-of-nonlinear-equations">Newton’s method for systems of nonlinear equations</a>:</td><td> </td><td valign="top"><a href="Algorithms-using-Derivatives.html#Algorithms-using-Derivatives">Algorithms using Derivatives</a></td></tr>
<tr><td></td><td valign="top"><a href="Quasi_002dRandom-Sequences.html#index-Niederreiter-sequence">Niederreiter sequence</a>:</td><td> </td><td valign="top"><a href="Quasi_002dRandom-Sequences.html#Quasi_002dRandom-Sequences">Quasi-Random Sequences</a></td></tr>
<tr><td></td><td valign="top"><a href="Fitting-References-and-Further-Reading.html#index-NIST-Statistical-Reference-Datasets">NIST Statistical Reference Datasets</a>:</td><td> </td><td valign="top"><a href="Fitting-References-and-Further-Reading.html#Fitting-References-and-Further-Reading">Fitting References and Further Reading</a></td></tr>
<tr><td></td><td valign="top"><a href="Incomplete-Gamma-Functions.html#index-non_002dnormalized-incomplete-Gamma-function">non-normalized incomplete Gamma function</a>:</td><td> </td><td valign="top"><a href="Incomplete-Gamma-Functions.html#Incomplete-Gamma-Functions">Incomplete Gamma Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="One-dimensional-Root_002dFinding.html#index-nonlinear-equation_002c-solutions-of">nonlinear equation, solutions of</a>:</td><td> </td><td valign="top"><a href="One-dimensional-Root_002dFinding.html#One-dimensional-Root_002dFinding">One dimensional Root-Finding</a></td></tr>
<tr><td></td><td valign="top"><a href="Nonlinear-Least_002dSquares-Testing-for-Convergence.html#index-nonlinear-fitting_002c-stopping-parameters_002c-convergence">nonlinear fitting, stopping parameters, convergence</a>:</td><td> </td><td valign="top"><a href="Nonlinear-Least_002dSquares-Testing-for-Convergence.html#Nonlinear-Least_002dSquares-Testing-for-Convergence">Nonlinear Least-Squares Testing for Convergence</a></td></tr>
<tr><td></td><td valign="top"><a href="One-dimensional-Minimization.html#index-nonlinear-functions_002c-minimization">nonlinear functions, minimization</a>:</td><td> </td><td valign="top"><a href="One-dimensional-Minimization.html#One-dimensional-Minimization">One dimensional Minimization</a></td></tr>
<tr><td></td><td valign="top"><a href="Nonlinear-Least_002dSquares-Fitting.html#index-nonlinear-least-squares">nonlinear least squares</a>:</td><td> </td><td valign="top"><a href="Nonlinear-Least_002dSquares-Fitting.html#Nonlinear-Least_002dSquares-Fitting">Nonlinear Least-Squares Fitting</a></td></tr>
<tr><td></td><td valign="top"><a href="Nonlinear-Least_002dSquares-TRS-Dogleg.html#index-nonlinear-least-squares_002c-dogleg">nonlinear least squares, dogleg</a>:</td><td> </td><td valign="top"><a href="Nonlinear-Least_002dSquares-TRS-Dogleg.html#Nonlinear-Least_002dSquares-TRS-Dogleg">Nonlinear Least-Squares TRS Dogleg</a></td></tr>
<tr><td></td><td valign="top"><a href="Nonlinear-Least_002dSquares-TRS-Double-Dogleg.html#index-nonlinear-least-squares_002c-double-dogleg">nonlinear least squares, double dogleg</a>:</td><td> </td><td valign="top"><a href="Nonlinear-Least_002dSquares-TRS-Double-Dogleg.html#Nonlinear-Least_002dSquares-TRS-Double-Dogleg">Nonlinear Least-Squares TRS Double Dogleg</a></td></tr>
<tr><td></td><td valign="top"><a href="Nonlinear-Least_002dSquares-TRS-Levenberg_002dMarquardt.html#index-nonlinear-least-squares_002c-levenberg_002dmarquardt">nonlinear least squares, levenberg-marquardt</a>:</td><td> </td><td valign="top"><a href="Nonlinear-Least_002dSquares-TRS-Levenberg_002dMarquardt.html#Nonlinear-Least_002dSquares-TRS-Levenberg_002dMarquardt">Nonlinear Least-Squares TRS Levenberg-Marquardt</a></td></tr>
<tr><td></td><td valign="top"><a href="Nonlinear-Least_002dSquares-TRS-Levenberg_002dMarquardt-with-Geodesic-Acceleration.html#index-nonlinear-least-squares_002c-levenberg_002dmarquardt_002c-geodesic-acceleration">nonlinear least squares, levenberg-marquardt, geodesic acceleration</a>:</td><td> </td><td valign="top"><a href="Nonlinear-Least_002dSquares-TRS-Levenberg_002dMarquardt-with-Geodesic-Acceleration.html#Nonlinear-Least_002dSquares-TRS-Levenberg_002dMarquardt-with-Geodesic-Acceleration">Nonlinear Least-Squares TRS Levenberg-Marquardt with Geodesic Acceleration</a></td></tr>
<tr><td></td><td valign="top"><a href="Nonlinear-Least_002dSquares-Overview.html#index-nonlinear-least-squares_002c-overview">nonlinear least squares, overview</a>:</td><td> </td><td valign="top"><a href="Nonlinear-Least_002dSquares-Overview.html#Nonlinear-Least_002dSquares-Overview">Nonlinear Least-Squares Overview</a></td></tr>
<tr><td></td><td valign="top"><a href="Multidimensional-Root_002dFinding.html#index-nonlinear-systems-of-equations_002c-solution-of">nonlinear systems of equations, solution of</a>:</td><td> </td><td valign="top"><a href="Multidimensional-Root_002dFinding.html#Multidimensional-Root_002dFinding">Multidimensional Root-Finding</a></td></tr>
<tr><td></td><td valign="top"><a href="Real-Nonsymmetric-Matrices.html#index-nonsymmetric-matrix_002c-real_002c-eigensystem">nonsymmetric matrix, real, eigensystem</a>:</td><td> </td><td valign="top"><a href="Real-Nonsymmetric-Matrices.html#Real-Nonsymmetric-Matrices">Real Nonsymmetric Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Stepping-Functions.html#index-Nordsieck-form">Nordsieck form</a>:</td><td> </td><td valign="top"><a href="Stepping-Functions.html#Stepping-Functions">Stepping Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Representation-of-floating-point-numbers.html#index-normalized-form_002c-IEEE-format">normalized form, IEEE format</a>:</td><td> </td><td valign="top"><a href="Representation-of-floating-point-numbers.html#Representation-of-floating-point-numbers">Representation of floating point numbers</a></td></tr>
<tr><td></td><td valign="top"><a href="Incomplete-Beta-Function.html#index-normalized-incomplete-Beta-function">normalized incomplete Beta function</a>:</td><td> </td><td valign="top"><a href="Incomplete-Beta-Function.html#Incomplete-Beta-Function">Incomplete Beta Function</a></td></tr>
<tr><td></td><td valign="top"><a href="Infinities-and-Not_002da_002dnumber.html#index-Not_002da_002dnumber_002c-defined-as-a-macro">Not-a-number, defined as a macro</a>:</td><td> </td><td valign="top"><a href="Infinities-and-Not_002da_002dnumber.html#Infinities-and-Not_002da_002dnumber">Infinities and Not-a-number</a></td></tr>
<tr><td></td><td valign="top"><a href="Level-1-GSL-BLAS-Interface.html#index-NRM2_002c-Level_002d1-BLAS">NRM2, Level-1 BLAS</a>:</td><td> </td><td valign="top"><a href="Level-1-GSL-BLAS-Interface.html#Level-1-GSL-BLAS-Interface">Level 1 GSL BLAS Interface</a></td></tr>
<tr><td></td><td valign="top"><a href="N_002dtuples.html#index-ntuples">ntuples</a>:</td><td> </td><td valign="top"><a href="N_002dtuples.html#N_002dtuples">N-tuples</a></td></tr>
<tr><td></td><td valign="top"><a href="Atomic-and-Nuclear-Physics.html#index-nuclear-physics_002c-constants">nuclear physics, constants</a>:</td><td> </td><td valign="top"><a href="Atomic-and-Nuclear-Physics.html#Atomic-and-Nuclear-Physics">Atomic and Nuclear Physics</a></td></tr>
<tr><td></td><td valign="top"><a href="Mathematical-Constants.html#index-numerical-constants_002c-defined-as-macros">numerical constants, defined as macros</a>:</td><td> </td><td valign="top"><a href="Mathematical-Constants.html#Mathematical-Constants">Mathematical Constants</a></td></tr>
<tr><td></td><td valign="top"><a href="Numerical-Differentiation.html#index-numerical-derivatives">numerical derivatives</a>:</td><td> </td><td valign="top"><a href="Numerical-Differentiation.html#Numerical-Differentiation">Numerical Differentiation</a></td></tr>
<tr><td></td><td valign="top"><a href="Numerical-Integration.html#index-numerical-integration-_0028quadrature_0029">numerical integration (quadrature)</a>:</td><td> </td><td valign="top"><a href="Numerical-Integration.html#Numerical-Integration">Numerical Integration</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th><a name="Concept-Index_cp_letter-O">O</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="Obtaining-GSL.html#index-obtaining-GSL">obtaining GSL</a>:</td><td> </td><td valign="top"><a href="Obtaining-GSL.html#Obtaining-GSL">Obtaining GSL</a></td></tr>
<tr><td></td><td valign="top"><a href="Ordinary-Differential-Equations.html#index-ODEs_002c-initial-value-problems">ODEs, initial value problems</a>:</td><td> </td><td valign="top"><a href="Ordinary-Differential-Equations.html#Ordinary-Differential-Equations">Ordinary Differential Equations</a></td></tr>
<tr><td></td><td valign="top"><a href="Running-Statistics.html#index-online-statistics">online statistics</a>:</td><td> </td><td valign="top"><a href="Running-Statistics.html#Running-Statistics">Running Statistics</a></td></tr>
<tr><td></td><td valign="top"><a href="Simulated-Annealing.html#index-optimization_002c-combinatorial">optimization, combinatorial</a>:</td><td> </td><td valign="top"><a href="Simulated-Annealing.html#Simulated-Annealing">Simulated Annealing</a></td></tr>
<tr><td></td><td valign="top"><a href="One-dimensional-Minimization.html#index-optimization_002c-see-minimization">optimization, see minimization</a>:</td><td> </td><td valign="top"><a href="One-dimensional-Minimization.html#One-dimensional-Minimization">One dimensional Minimization</a></td></tr>
<tr><td></td><td valign="top"><a href="Alternative-optimized-functions.html#index-optimized-functions_002c-alternatives">optimized functions, alternatives</a>:</td><td> </td><td valign="top"><a href="Alternative-optimized-functions.html#Alternative-optimized-functions">Alternative optimized functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Matrices.html#index-ordering_002c-matrix-elements">ordering, matrix elements</a>:</td><td> </td><td valign="top"><a href="Matrices.html#Matrices">Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Ordinary-Differential-Equations.html#index-ordinary-differential-equations_002c-initial-value-problem">ordinary differential equations, initial value problem</a>:</td><td> </td><td valign="top"><a href="Ordinary-Differential-Equations.html#Ordinary-Differential-Equations">Ordinary Differential Equations</a></td></tr>
<tr><td></td><td valign="top"><a href="QAWO-adaptive-integration-for-oscillatory-functions.html#index-oscillatory-functions_002c-numerical-integration-of">oscillatory functions, numerical integration of</a>:</td><td> </td><td valign="top"><a href="QAWO-adaptive-integration-for-oscillatory-functions.html#QAWO-adaptive-integration-for-oscillatory-functions">QAWO adaptive integration for oscillatory functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Setting-up-your-IEEE-environment.html#index-overflow_002c-IEEE-exceptions">overflow, IEEE exceptions</a>:</td><td> </td><td valign="top"><a href="Setting-up-your-IEEE-environment.html#Setting-up-your-IEEE-environment">Setting up your IEEE environment</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th><a name="Concept-Index_cp_letter-P">P</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="The-Pareto-Distribution.html#index-Pareto-distribution">Pareto distribution</a>:</td><td> </td><td valign="top"><a href="The-Pareto-Distribution.html#The-Pareto-Distribution">The Pareto Distribution</a></td></tr>
<tr><td></td><td valign="top"><a href="Ntuple-References-and-Further-Reading.html#index-PAW">PAW</a>:</td><td> </td><td valign="top"><a href="Ntuple-References-and-Further-Reading.html#Ntuple-References-and-Further-Reading">Ntuple References and Further Reading</a></td></tr>
<tr><td></td><td valign="top"><a href="Permutations.html#index-permutations">permutations</a>:</td><td> </td><td valign="top"><a href="Permutations.html#Permutations">Permutations</a></td></tr>
<tr><td></td><td valign="top"><a href="Physical-Constants.html#index-physical-constants">physical constants</a>:</td><td> </td><td valign="top"><a href="Physical-Constants.html#Physical-Constants">Physical Constants</a></td></tr>
<tr><td></td><td valign="top"><a href="Matrices.html#index-physical-dimension_002c-matrices">physical dimension, matrices</a>:</td><td> </td><td valign="top"><a href="Matrices.html#Matrices">Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Mathematical-Constants.html#index-pi_002c-defined-as-a-macro">pi, defined as a macro</a>:</td><td> </td><td valign="top"><a href="Mathematical-Constants.html#Mathematical-Constants">Mathematical Constants</a></td></tr>
<tr><td></td><td valign="top"><a href="Pivoted-Cholesky-Decomposition.html#index-Pivoted-Cholesky-Decomposition">Pivoted Cholesky Decomposition</a>:</td><td> </td><td valign="top"><a href="Pivoted-Cholesky-Decomposition.html#Pivoted-Cholesky-Decomposition">Pivoted Cholesky Decomposition</a></td></tr>
<tr><td></td><td valign="top"><a href="PLAIN-Monte-Carlo.html#index-plain-Monte-Carlo">plain Monte Carlo</a>:</td><td> </td><td valign="top"><a href="PLAIN-Monte-Carlo.html#PLAIN-Monte-Carlo">PLAIN Monte Carlo</a></td></tr>
<tr><td></td><td valign="top"><a href="Pochhammer-Symbol.html#index-Pochhammer-symbol">Pochhammer symbol</a>:</td><td> </td><td valign="top"><a href="Pochhammer-Symbol.html#Pochhammer-Symbol">Pochhammer Symbol</a></td></tr>
<tr><td></td><td valign="top"><a href="The-Poisson-Distribution.html#index-Poisson-random-numbers">Poisson random numbers</a>:</td><td> </td><td valign="top"><a href="The-Poisson-Distribution.html#The-Poisson-Distribution">The Poisson Distribution</a></td></tr>
<tr><td></td><td valign="top"><a href="Multimin-Algorithms-with-Derivatives.html#index-Polak_002dRibiere-algorithm_002c-minimization">Polak-Ribiere algorithm, minimization</a>:</td><td> </td><td valign="top"><a href="Multimin-Algorithms-with-Derivatives.html#Multimin-Algorithms-with-Derivatives">Multimin Algorithms with Derivatives</a></td></tr>
<tr><td></td><td valign="top"><a href="Representation-of-complex-numbers.html#index-polar-form-of-complex-numbers">polar form of complex numbers</a>:</td><td> </td><td valign="top"><a href="Representation-of-complex-numbers.html#Representation-of-complex-numbers">Representation of complex numbers</a></td></tr>
<tr><td></td><td valign="top"><a href="Conversion-Functions.html#index-polar-to-rectangular-conversion">polar to rectangular conversion</a>:</td><td> </td><td valign="top"><a href="Conversion-Functions.html#Conversion-Functions">Conversion Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Psi-_0028Digamma_0029-Function.html#index-polygamma-functions">polygamma functions</a>:</td><td> </td><td valign="top"><a href="Psi-_0028Digamma_0029-Function.html#Psi-_0028Digamma_0029-Function">Psi (Digamma) Function</a></td></tr>
<tr><td></td><td valign="top"><a href="Polynomial-Evaluation.html#index-polynomial-evaluation">polynomial evaluation</a>:</td><td> </td><td valign="top"><a href="Polynomial-Evaluation.html#Polynomial-Evaluation">Polynomial Evaluation</a></td></tr>
<tr><td></td><td valign="top"><a href="1D-Interpolation-Types.html#index-polynomial-interpolation">polynomial interpolation</a>:</td><td> </td><td valign="top"><a href="1D-Interpolation-Types.html#g_t1D-Interpolation-Types">1D Interpolation Types</a></td></tr>
<tr><td></td><td valign="top"><a href="Polynomials.html#index-polynomials_002c-roots-of">polynomials, roots of</a>:</td><td> </td><td valign="top"><a href="Polynomials.html#Polynomials">Polynomials</a></td></tr>
<tr><td></td><td valign="top"><a href="Power-Function.html#index-power-function">power function</a>:</td><td> </td><td valign="top"><a href="Power-Function.html#Power-Function">Power Function</a></td></tr>
<tr><td></td><td valign="top"><a href="Elementary-Complex-Functions.html#index-power-of-complex-number">power of complex number</a>:</td><td> </td><td valign="top"><a href="Elementary-Complex-Functions.html#Elementary-Complex-Functions">Elementary Complex Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Thermal-Energy-and-Power.html#index-power_002c-units-of">power, units of</a>:</td><td> </td><td valign="top"><a href="Thermal-Energy-and-Power.html#Thermal-Energy-and-Power">Thermal Energy and Power</a></td></tr>
<tr><td></td><td valign="top"><a href="Setting-up-your-IEEE-environment.html#index-precision_002c-IEEE-arithmetic">precision, IEEE arithmetic</a>:</td><td> </td><td valign="top"><a href="Setting-up-your-IEEE-environment.html#Setting-up-your-IEEE-environment">Setting up your IEEE environment</a></td></tr>
<tr><td></td><td valign="top"><a href="Stepping-Functions.html#index-predictor_002dcorrector-method_002c-ODEs">predictor-corrector method, ODEs</a>:</td><td> </td><td valign="top"><a href="Stepping-Functions.html#Stepping-Functions">Stepping Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Prefixes.html#index-prefixes">prefixes</a>:</td><td> </td><td valign="top"><a href="Prefixes.html#Prefixes">Prefixes</a></td></tr>
<tr><td></td><td valign="top"><a href="Pressure.html#index-pressure_002c-units-of">pressure, units of</a>:</td><td> </td><td valign="top"><a href="Pressure.html#Pressure">Pressure</a></td></tr>
<tr><td></td><td valign="top"><a href="Stepping-Functions.html#index-Prince_002dDormand_002c-Runge_002dKutta-method">Prince-Dormand, Runge-Kutta method</a>:</td><td> </td><td valign="top"><a href="Stepping-Functions.html#Stepping-Functions">Stepping Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Printers-Units.html#index-printers-units">printers units</a>:</td><td> </td><td valign="top"><a href="Printers-Units.html#Printers-Units">Printers Units</a></td></tr>
<tr><td></td><td valign="top"><a href="The-histogram-probability-distribution-struct.html#index-probability-distribution_002c-from-histogram">probability distribution, from histogram</a>:</td><td> </td><td valign="top"><a href="The-histogram-probability-distribution-struct.html#The-histogram-probability-distribution-struct">The histogram probability distribution struct</a></td></tr>
<tr><td></td><td valign="top"><a href="Resampling-from-histograms.html#index-probability-distributions_002c-from-histograms">probability distributions, from histograms</a>:</td><td> </td><td valign="top"><a href="Resampling-from-histograms.html#Resampling-from-histograms">Resampling from histograms</a></td></tr>
<tr><td></td><td valign="top"><a href="Histogramming-ntuple-values.html#index-projection-of-ntuples">projection of ntuples</a>:</td><td> </td><td valign="top"><a href="Histogramming-ntuple-values.html#Histogramming-ntuple-values">Histogramming ntuple values</a></td></tr>
<tr><td></td><td valign="top"><a href="Psi-_0028Digamma_0029-Function.html#index-psi-function">psi function</a>:</td><td> </td><td valign="top"><a href="Psi-_0028Digamma_0029-Function.html#Psi-_0028Digamma_0029-Function">Psi (Digamma) Function</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th><a name="Concept-Index_cp_letter-Q">Q</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="QAG-adaptive-integration.html#index-QAG-quadrature-algorithm">QAG quadrature algorithm</a>:</td><td> </td><td valign="top"><a href="QAG-adaptive-integration.html#QAG-adaptive-integration">QAG adaptive integration</a></td></tr>
<tr><td></td><td valign="top"><a href="QAGI-adaptive-integration-on-infinite-intervals.html#index-QAGI-quadrature-algorithm">QAGI quadrature algorithm</a>:</td><td> </td><td valign="top"><a href="QAGI-adaptive-integration-on-infinite-intervals.html#QAGI-adaptive-integration-on-infinite-intervals">QAGI adaptive integration on infinite intervals</a></td></tr>
<tr><td></td><td valign="top"><a href="QAGP-adaptive-integration-with-known-singular-points.html#index-QAGP-quadrature-algorithm">QAGP quadrature algorithm</a>:</td><td> </td><td valign="top"><a href="QAGP-adaptive-integration-with-known-singular-points.html#QAGP-adaptive-integration-with-known-singular-points">QAGP adaptive integration with known singular points</a></td></tr>
<tr><td></td><td valign="top"><a href="QAGS-adaptive-integration-with-singularities.html#index-QAGS-quadrature-algorithm">QAGS quadrature algorithm</a>:</td><td> </td><td valign="top"><a href="QAGS-adaptive-integration-with-singularities.html#QAGS-adaptive-integration-with-singularities">QAGS adaptive integration with singularities</a></td></tr>
<tr><td></td><td valign="top"><a href="QAWC-adaptive-integration-for-Cauchy-principal-values.html#index-QAWC-quadrature-algorithm">QAWC quadrature algorithm</a>:</td><td> </td><td valign="top"><a href="QAWC-adaptive-integration-for-Cauchy-principal-values.html#QAWC-adaptive-integration-for-Cauchy-principal-values">QAWC adaptive integration for Cauchy principal values</a></td></tr>
<tr><td></td><td valign="top"><a href="QAWF-adaptive-integration-for-Fourier-integrals.html#index-QAWF-quadrature-algorithm">QAWF quadrature algorithm</a>:</td><td> </td><td valign="top"><a href="QAWF-adaptive-integration-for-Fourier-integrals.html#QAWF-adaptive-integration-for-Fourier-integrals">QAWF adaptive integration for Fourier integrals</a></td></tr>
<tr><td></td><td valign="top"><a href="QAWO-adaptive-integration-for-oscillatory-functions.html#index-QAWO-quadrature-algorithm">QAWO quadrature algorithm</a>:</td><td> </td><td valign="top"><a href="QAWO-adaptive-integration-for-oscillatory-functions.html#QAWO-adaptive-integration-for-oscillatory-functions">QAWO adaptive integration for oscillatory functions</a></td></tr>
<tr><td></td><td valign="top"><a href="QAWS-adaptive-integration-for-singular-functions.html#index-QAWS-quadrature-algorithm">QAWS quadrature algorithm</a>:</td><td> </td><td valign="top"><a href="QAWS-adaptive-integration-for-singular-functions.html#QAWS-adaptive-integration-for-singular-functions">QAWS adaptive integration for singular functions</a></td></tr>
<tr><td></td><td valign="top"><a href="QNG-non_002dadaptive-Gauss_002dKronrod-integration.html#index-QNG-quadrature-algorithm">QNG quadrature algorithm</a>:</td><td> </td><td valign="top"><a href="QNG-non_002dadaptive-Gauss_002dKronrod-integration.html#QNG-non_002dadaptive-Gauss_002dKronrod-integration">QNG non-adaptive Gauss-Kronrod integration</a></td></tr>
<tr><td></td><td valign="top"><a href="QR-Decomposition.html#index-QR-decomposition">QR decomposition</a>:</td><td> </td><td valign="top"><a href="QR-Decomposition.html#QR-Decomposition">QR Decomposition</a></td></tr>
<tr><td></td><td valign="top"><a href="QR-Decomposition-with-Column-Pivoting.html#index-QR-decomposition-with-column-pivoting">QR decomposition with column pivoting</a>:</td><td> </td><td valign="top"><a href="QR-Decomposition-with-Column-Pivoting.html#QR-Decomposition-with-Column-Pivoting">QR Decomposition with Column Pivoting</a></td></tr>
<tr><td></td><td valign="top"><a href="Numerical-Integration.html#index-QUADPACK">QUADPACK</a>:</td><td> </td><td valign="top"><a href="Numerical-Integration.html#Numerical-Integration">Numerical Integration</a></td></tr>
<tr><td></td><td valign="top"><a href="Quadratic-Equations.html#index-quadratic-equation_002c-solving">quadratic equation, solving</a>:</td><td> </td><td valign="top"><a href="Quadratic-Equations.html#Quadratic-Equations">Quadratic Equations</a></td></tr>
<tr><td></td><td valign="top"><a href="Numerical-Integration.html#index-quadrature">quadrature</a>:</td><td> </td><td valign="top"><a href="Numerical-Integration.html#Numerical-Integration">Numerical Integration</a></td></tr>
<tr><td></td><td valign="top"><a href="Random-Number-Distributions.html#index-quantile-functions">quantile functions</a>:</td><td> </td><td valign="top"><a href="Random-Number-Distributions.html#Random-Number-Distributions">Random Number Distributions</a></td></tr>
<tr><td></td><td valign="top"><a href="Quasi_002dRandom-Sequences.html#index-quasi_002drandom-sequences">quasi-random sequences</a>:</td><td> </td><td valign="top"><a href="Quasi_002dRandom-Sequences.html#Quasi_002dRandom-Sequences">Quasi-Random Sequences</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th><a name="Concept-Index_cp_letter-R">R</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="Other-random-number-generators.html#index-R250-shift_002dregister-random-number-generator">R250 shift-register random number generator</a>:</td><td> </td><td valign="top"><a href="Other-random-number-generators.html#Other-random-number-generators">Other random number generators</a></td></tr>
<tr><td></td><td valign="top"><a href="Coupling-Coefficients.html#index-Racah-coefficients">Racah coefficients</a>:</td><td> </td><td valign="top"><a href="Coupling-Coefficients.html#Coupling-Coefficients">Coupling Coefficients</a></td></tr>
<tr><td></td><td valign="top"><a href="Radial-Mathieu-Functions.html#index-Radial-Mathieu-Functions">Radial Mathieu Functions</a>:</td><td> </td><td valign="top"><a href="Radial-Mathieu-Functions.html#Radial-Mathieu-Functions">Radial Mathieu Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Radioactivity.html#index-radioactivity_002c-units-of">radioactivity, units of</a>:</td><td> </td><td valign="top"><a href="Radioactivity.html#Radioactivity">Radioactivity</a></td></tr>
<tr><td></td><td valign="top"><a href="Radix_002d2-FFT-routines-for-real-data.html#index-Radix_002d2-FFT-for-real-data">Radix-2 FFT for real data</a>:</td><td> </td><td valign="top"><a href="Radix_002d2-FFT-routines-for-real-data.html#Radix_002d2-FFT-routines-for-real-data">Radix-2 FFT routines for real data</a></td></tr>
<tr><td></td><td valign="top"><a href="Radix_002d2-FFT-routines-for-complex-data.html#index-Radix_002d2-FFT_002c-complex-data">Radix-2 FFT, complex data</a>:</td><td> </td><td valign="top"><a href="Radix_002d2-FFT-routines-for-complex-data.html#Radix_002d2-FFT-routines-for-complex-data">Radix-2 FFT routines for complex data</a></td></tr>
<tr><td></td><td valign="top"><a href="Unix-random-number-generators.html#index-rand_002c-BSD-random-number-generator">rand, BSD random number generator</a>:</td><td> </td><td valign="top"><a href="Unix-random-number-generators.html#Unix-random-number-generators">Unix random number generators</a></td></tr>
<tr><td></td><td valign="top"><a href="Unix-random-number-generators.html#index-rand48-random-number-generator">rand48 random number generator</a>:</td><td> </td><td valign="top"><a href="Unix-random-number-generators.html#Unix-random-number-generators">Unix random number generators</a></td></tr>
<tr><td></td><td valign="top"><a href="Random-Number-Distributions.html#index-random-number-distributions">random number distributions</a>:</td><td> </td><td valign="top"><a href="Random-Number-Distributions.html#Random-Number-Distributions">Random Number Distributions</a></td></tr>
<tr><td></td><td valign="top"><a href="Random-Number-Generation.html#index-random-number-generators">random number generators</a>:</td><td> </td><td valign="top"><a href="Random-Number-Generation.html#Random-Number-Generation">Random Number Generation</a></td></tr>
<tr><td></td><td valign="top"><a href="The-histogram-probability-distribution-struct.html#index-random-sampling-from-histograms">random sampling from histograms</a>:</td><td> </td><td valign="top"><a href="The-histogram-probability-distribution-struct.html#The-histogram-probability-distribution-struct">The histogram probability distribution struct</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-random-number-generators.html#index-RANDU-random-number-generator">RANDU random number generator</a>:</td><td> </td><td valign="top"><a href="Other-random-number-generators.html#Other-random-number-generators">Other random number generators</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-random-number-generators.html#index-RANF-random-number-generator">RANF random number generator</a>:</td><td> </td><td valign="top"><a href="Other-random-number-generators.html#Other-random-number-generators">Other random number generators</a></td></tr>
<tr><td></td><td valign="top"><a href="Statistics.html#index-range">range</a>:</td><td> </td><td valign="top"><a href="Statistics.html#Statistics">Statistics</a></td></tr>
<tr><td></td><td valign="top"><a href="Accessing-matrix-elements.html#index-range_002dchecking-for-matrices">range-checking for matrices</a>:</td><td> </td><td valign="top"><a href="Accessing-matrix-elements.html#Accessing-matrix-elements">Accessing matrix elements</a></td></tr>
<tr><td></td><td valign="top"><a href="Accessing-vector-elements.html#index-range_002dchecking-for-vectors">range-checking for vectors</a>:</td><td> </td><td valign="top"><a href="Accessing-vector-elements.html#Accessing-vector-elements">Accessing vector elements</a></td></tr>
<tr><td></td><td valign="top"><a href="Random-number-generator-algorithms.html#index-RANLUX-random-number-generator">RANLUX random number generator</a>:</td><td> </td><td valign="top"><a href="Random-number-generator-algorithms.html#Random-number-generator-algorithms">Random number generator algorithms</a></td></tr>
<tr><td></td><td valign="top"><a href="Random-number-generator-algorithms.html#index-RANLXD-random-number-generator">RANLXD random number generator</a>:</td><td> </td><td valign="top"><a href="Random-number-generator-algorithms.html#Random-number-generator-algorithms">Random number generator algorithms</a></td></tr>
<tr><td></td><td valign="top"><a href="Random-number-generator-algorithms.html#index-RANLXS-random-number-generator">RANLXS random number generator</a>:</td><td> </td><td valign="top"><a href="Random-number-generator-algorithms.html#Random-number-generator-algorithms">Random number generator algorithms</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-random-number-generators.html#index-RANMAR-random-number-generator">RANMAR random number generator</a>:</td><td> </td><td valign="top"><a href="Other-random-number-generators.html#Other-random-number-generators">Other random number generators</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-random-number-generators.html#index-RANMAR-random-number-generator-1">RANMAR random number generator</a>:</td><td> </td><td valign="top"><a href="Other-random-number-generators.html#Other-random-number-generators">Other random number generators</a></td></tr>
<tr><td></td><td valign="top"><a href="The-Rayleigh-Distribution.html#index-Rayleigh-distribution">Rayleigh distribution</a>:</td><td> </td><td valign="top"><a href="The-Rayleigh-Distribution.html#The-Rayleigh-Distribution">The Rayleigh Distribution</a></td></tr>
<tr><td></td><td valign="top"><a href="The-Rayleigh-Tail-Distribution.html#index-Rayleigh-Tail-distribution">Rayleigh Tail distribution</a>:</td><td> </td><td valign="top"><a href="The-Rayleigh-Tail-Distribution.html#The-Rayleigh-Tail-Distribution">The Rayleigh Tail Distribution</a></td></tr>
<tr><td></td><td valign="top"><a href="Real-Nonsymmetric-Matrices.html#index-real-nonsymmetric-matrix_002c-eigensystem">real nonsymmetric matrix, eigensystem</a>:</td><td> </td><td valign="top"><a href="Real-Nonsymmetric-Matrices.html#Real-Nonsymmetric-Matrices">Real Nonsymmetric Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Real-Symmetric-Matrices.html#index-real-symmetric-matrix_002c-eigensystem">real symmetric matrix, eigensystem</a>:</td><td> </td><td valign="top"><a href="Real-Symmetric-Matrices.html#Real-Symmetric-Matrices">Real Symmetric Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Gamma-Functions.html#index-Reciprocal-Gamma-function">Reciprocal Gamma function</a>:</td><td> </td><td valign="top"><a href="Gamma-Functions.html#Gamma-Functions">Gamma Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Conversion-Functions.html#index-rectangular-to-polar-conversion">rectangular to polar conversion</a>:</td><td> </td><td valign="top"><a href="Conversion-Functions.html#Conversion-Functions">Conversion Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="MISER.html#index-recursive-stratified-sampling_002c-MISER">recursive stratified sampling, MISER</a>:</td><td> </td><td valign="top"><a href="MISER.html#MISER">MISER</a></td></tr>
<tr><td></td><td valign="top"><a href="Restriction-Functions.html#index-reduction-of-angular-variables">reduction of angular variables</a>:</td><td> </td><td valign="top"><a href="Restriction-Functions.html#Restriction-Functions">Restriction Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="LU-Decomposition.html#index-refinement-of-solutions-in-linear-systems">refinement of solutions in linear systems</a>:</td><td> </td><td valign="top"><a href="LU-Decomposition.html#LU-Decomposition">LU Decomposition</a></td></tr>
<tr><td></td><td valign="top"><a href="Least_002dSquares-Fitting.html#index-regression_002c-least-squares">regression, least squares</a>:</td><td> </td><td valign="top"><a href="Least_002dSquares-Fitting.html#Least_002dSquares-Fitting">Least-Squares Fitting</a></td></tr>
<tr><td></td><td valign="top"><a href="Regularized-regression.html#index-regression_002c-ridge">regression, ridge</a>:</td><td> </td><td valign="top"><a href="Regularized-regression.html#Regularized-regression">Regularized regression</a></td></tr>
<tr><td></td><td valign="top"><a href="Robust-linear-regression.html#index-regression_002c-robust">regression, robust</a>:</td><td> </td><td valign="top"><a href="Robust-linear-regression.html#Robust-linear-regression">Robust linear regression</a></td></tr>
<tr><td></td><td valign="top"><a href="Regularized-regression.html#index-regression_002c-Tikhonov">regression, Tikhonov</a>:</td><td> </td><td valign="top"><a href="Regularized-regression.html#Regularized-regression">Regularized regression</a></td></tr>
<tr><td></td><td valign="top"><a href="Regular-Bessel-Function-_002d-Fractional-Order.html#index-Regular-Bessel-Functions_002c-Fractional-Order">Regular Bessel Functions, Fractional Order</a>:</td><td> </td><td valign="top"><a href="Regular-Bessel-Function-_002d-Fractional-Order.html#Regular-Bessel-Function-_002d-Fractional-Order">Regular Bessel Function - Fractional Order</a></td></tr>
<tr><td></td><td valign="top"><a href="Zeros-of-Regular-Bessel-Functions.html#index-Regular-Bessel-Functions_002c-Zeros-of">Regular Bessel Functions, Zeros of</a>:</td><td> </td><td valign="top"><a href="Zeros-of-Regular-Bessel-Functions.html#Zeros-of-Regular-Bessel-Functions">Zeros of Regular Bessel Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Regular-Cylindrical-Bessel-Functions.html#index-Regular-Cylindrical-Bessel-Functions">Regular Cylindrical Bessel Functions</a>:</td><td> </td><td valign="top"><a href="Regular-Cylindrical-Bessel-Functions.html#Regular-Cylindrical-Bessel-Functions">Regular Cylindrical Bessel Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Regular-Modified-Bessel-Functions-_002d-Fractional-Order.html#index-Regular-Modified-Bessel-Functions_002c-Fractional-Order">Regular Modified Bessel Functions, Fractional Order</a>:</td><td> </td><td valign="top"><a href="Regular-Modified-Bessel-Functions-_002d-Fractional-Order.html#Regular-Modified-Bessel-Functions-_002d-Fractional-Order">Regular Modified Bessel Functions - Fractional Order</a></td></tr>
<tr><td></td><td valign="top"><a href="Regular-Modified-Cylindrical-Bessel-Functions.html#index-Regular-Modified-Cylindrical-Bessel-Functions">Regular Modified Cylindrical Bessel Functions</a>:</td><td> </td><td valign="top"><a href="Regular-Modified-Cylindrical-Bessel-Functions.html#Regular-Modified-Cylindrical-Bessel-Functions">Regular Modified Cylindrical Bessel Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Regular-Modified-Spherical-Bessel-Functions.html#index-Regular-Modified-Spherical-Bessel-Functions">Regular Modified Spherical Bessel Functions</a>:</td><td> </td><td valign="top"><a href="Regular-Modified-Spherical-Bessel-Functions.html#Regular-Modified-Spherical-Bessel-Functions">Regular Modified Spherical Bessel Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Regular-Spherical-Bessel-Functions.html#index-Regular-Spherical-Bessel-Functions">Regular Spherical Bessel Functions</a>:</td><td> </td><td valign="top"><a href="Regular-Spherical-Bessel-Functions.html#Regular-Spherical-Bessel-Functions">Regular Spherical Bessel Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Gamma-Functions.html#index-Regulated-Gamma-function">Regulated Gamma function</a>:</td><td> </td><td valign="top"><a href="Gamma-Functions.html#Gamma-Functions">Gamma Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Pochhammer-Symbol.html#index-relative-Pochhammer-symbol">relative Pochhammer symbol</a>:</td><td> </td><td valign="top"><a href="Pochhammer-Symbol.html#Pochhammer-Symbol">Pochhammer Symbol</a></td></tr>
<tr><td></td><td valign="top"><a href="Reporting-Bugs.html#index-reporting-bugs-in-GSL">reporting bugs in GSL</a>:</td><td> </td><td valign="top"><a href="Reporting-Bugs.html#Reporting-Bugs">Reporting Bugs</a></td></tr>
<tr><td></td><td valign="top"><a href="Representation-of-complex-numbers.html#index-representations-of-complex-numbers">representations of complex numbers</a>:</td><td> </td><td valign="top"><a href="Representation-of-complex-numbers.html#Representation-of-complex-numbers">Representation of complex numbers</a></td></tr>
<tr><td></td><td valign="top"><a href="Resampling-from-histograms.html#index-resampling-from-histograms">resampling from histograms</a>:</td><td> </td><td valign="top"><a href="Resampling-from-histograms.html#Resampling-from-histograms">Resampling from histograms</a></td></tr>
<tr><td></td><td valign="top"><a href="Search-Stopping-Parameters-for-the-multidimensional-solver.html#index-residual_002c-in-nonlinear-systems-of-equations">residual, in nonlinear systems of equations</a>:</td><td> </td><td valign="top"><a href="Search-Stopping-Parameters-for-the-multidimensional-solver.html#Search-Stopping-Parameters-for-the-multidimensional-solver">Search Stopping Parameters for the multidimensional solver</a></td></tr>
<tr><td></td><td valign="top"><a href="Permutation-functions.html#index-reversing-a-permutation">reversing a permutation</a>:</td><td> </td><td valign="top"><a href="Permutation-functions.html#Permutation-functions">Permutation functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Regularized-regression.html#index-ridge-regression">ridge regression</a>:</td><td> </td><td valign="top"><a href="Regularized-regression.html#Regularized-regression">Regularized regression</a></td></tr>
<tr><td></td><td valign="top"><a href="Riemann-Zeta-Function.html#index-Riemann-Zeta-Function">Riemann Zeta Function</a>:</td><td> </td><td valign="top"><a href="Riemann-Zeta-Function.html#Riemann-Zeta-Function">Riemann Zeta Function</a></td></tr>
<tr><td></td><td valign="top"><a href="Stepping-Functions.html#index-RK2_002c-Runge_002dKutta-method">RK2, Runge-Kutta method</a>:</td><td> </td><td valign="top"><a href="Stepping-Functions.html#Stepping-Functions">Stepping Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Stepping-Functions.html#index-RK4_002c-Runge_002dKutta-method">RK4, Runge-Kutta method</a>:</td><td> </td><td valign="top"><a href="Stepping-Functions.html#Stepping-Functions">Stepping Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Stepping-Functions.html#index-RKF45_002c-Runge_002dKutta_002dFehlberg-method">RKF45, Runge-Kutta-Fehlberg method</a>:</td><td> </td><td valign="top"><a href="Stepping-Functions.html#Stepping-Functions">Stepping Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Robust-linear-regression.html#index-robust-regression">robust regression</a>:</td><td> </td><td valign="top"><a href="Robust-linear-regression.html#Robust-linear-regression">Robust linear regression</a></td></tr>
<tr><td></td><td valign="top"><a href="One-dimensional-Root_002dFinding.html#index-root-finding">root finding</a>:</td><td> </td><td valign="top"><a href="One-dimensional-Root_002dFinding.html#One-dimensional-Root_002dFinding">One dimensional Root-Finding</a></td></tr>
<tr><td></td><td valign="top"><a href="Root-Bracketing-Algorithms.html#index-root-finding_002c-bisection-algorithm">root finding, bisection algorithm</a>:</td><td> </td><td valign="top"><a href="Root-Bracketing-Algorithms.html#Root-Bracketing-Algorithms">Root Bracketing Algorithms</a></td></tr>
<tr><td></td><td valign="top"><a href="Root-Bracketing-Algorithms.html#index-root-finding_002c-Brent_0027s-method">root finding, Brent’s method</a>:</td><td> </td><td valign="top"><a href="Root-Bracketing-Algorithms.html#Root-Bracketing-Algorithms">Root Bracketing Algorithms</a></td></tr>
<tr><td></td><td valign="top"><a href="Root-Finding-Caveats.html#index-root-finding_002c-caveats">root finding, caveats</a>:</td><td> </td><td valign="top"><a href="Root-Finding-Caveats.html#Root-Finding-Caveats">Root Finding Caveats</a></td></tr>
<tr><td></td><td valign="top"><a href="Root-Bracketing-Algorithms.html#index-root-finding_002c-false-position-algorithm">root finding, false position algorithm</a>:</td><td> </td><td valign="top"><a href="Root-Bracketing-Algorithms.html#Root-Bracketing-Algorithms">Root Bracketing Algorithms</a></td></tr>
<tr><td></td><td valign="top"><a href="Search-Bounds-and-Guesses.html#index-root-finding_002c-initial-guess">root finding, initial guess</a>:</td><td> </td><td valign="top"><a href="Search-Bounds-and-Guesses.html#Search-Bounds-and-Guesses">Search Bounds and Guesses</a></td></tr>
<tr><td></td><td valign="top"><a href="Root-Finding-Algorithms-using-Derivatives.html#index-root-finding_002c-Newton_0027s-method">root finding, Newton’s method</a>:</td><td> </td><td valign="top"><a href="Root-Finding-Algorithms-using-Derivatives.html#Root-Finding-Algorithms-using-Derivatives">Root Finding Algorithms using Derivatives</a></td></tr>
<tr><td></td><td valign="top"><a href="Root-Finding-Overview.html#index-root-finding_002c-overview">root finding, overview</a>:</td><td> </td><td valign="top"><a href="Root-Finding-Overview.html#Root-Finding-Overview">Root Finding Overview</a></td></tr>
<tr><td></td><td valign="top"><a href="Providing-the-function-to-solve.html#index-root-finding_002c-providing-a-function-to-solve">root finding, providing a function to solve</a>:</td><td> </td><td valign="top"><a href="Providing-the-function-to-solve.html#Providing-the-function-to-solve">Providing the function to solve</a></td></tr>
<tr><td></td><td valign="top"><a href="Search-Bounds-and-Guesses.html#index-root-finding_002c-search-bounds">root finding, search bounds</a>:</td><td> </td><td valign="top"><a href="Search-Bounds-and-Guesses.html#Search-Bounds-and-Guesses">Search Bounds and Guesses</a></td></tr>
<tr><td></td><td valign="top"><a href="Root-Finding-Algorithms-using-Derivatives.html#index-root-finding_002c-secant-method">root finding, secant method</a>:</td><td> </td><td valign="top"><a href="Root-Finding-Algorithms-using-Derivatives.html#Root-Finding-Algorithms-using-Derivatives">Root Finding Algorithms using Derivatives</a></td></tr>
<tr><td></td><td valign="top"><a href="Root-Finding-Algorithms-using-Derivatives.html#index-root-finding_002c-Steffenson_0027s-method">root finding, Steffenson’s method</a>:</td><td> </td><td valign="top"><a href="Root-Finding-Algorithms-using-Derivatives.html#Root-Finding-Algorithms-using-Derivatives">Root Finding Algorithms using Derivatives</a></td></tr>
<tr><td></td><td valign="top"><a href="Search-Stopping-Parameters.html#index-root-finding_002c-stopping-parameters">root finding, stopping parameters</a>:</td><td> </td><td valign="top"><a href="Search-Stopping-Parameters.html#Search-Stopping-Parameters">Search Stopping Parameters</a></td></tr>
<tr><td></td><td valign="top"><a href="Search-Stopping-Parameters-for-the-multidimensional-solver.html#index-root-finding_002c-stopping-parameters-1">root finding, stopping parameters</a>:</td><td> </td><td valign="top"><a href="Search-Stopping-Parameters-for-the-multidimensional-solver.html#Search-Stopping-Parameters-for-the-multidimensional-solver">Search Stopping Parameters for the multidimensional solver</a></td></tr>
<tr><td></td><td valign="top"><a href="One-dimensional-Root_002dFinding.html#index-roots">roots</a>:</td><td> </td><td valign="top"><a href="One-dimensional-Root_002dFinding.html#One-dimensional-Root_002dFinding">One dimensional Root-Finding</a></td></tr>
<tr><td></td><td valign="top"><a href="Level-1-GSL-BLAS-Interface.html#index-ROTG_002c-Level_002d1-BLAS">ROTG, Level-1 BLAS</a>:</td><td> </td><td valign="top"><a href="Level-1-GSL-BLAS-Interface.html#Level-1-GSL-BLAS-Interface">Level 1 GSL BLAS Interface</a></td></tr>
<tr><td></td><td valign="top"><a href="Setting-up-your-IEEE-environment.html#index-rounding-mode">rounding mode</a>:</td><td> </td><td valign="top"><a href="Setting-up-your-IEEE-environment.html#Setting-up-your-IEEE-environment">Setting up your IEEE environment</a></td></tr>
<tr><td></td><td valign="top"><a href="Stepping-Functions.html#index-Runge_002dKutta-Cash_002dKarp-method">Runge-Kutta Cash-Karp method</a>:</td><td> </td><td valign="top"><a href="Stepping-Functions.html#Stepping-Functions">Stepping Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Stepping-Functions.html#index-Runge_002dKutta-methods_002c-ordinary-differential-equations">Runge-Kutta methods, ordinary differential equations</a>:</td><td> </td><td valign="top"><a href="Stepping-Functions.html#Stepping-Functions">Stepping Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Stepping-Functions.html#index-Runge_002dKutta-Prince_002dDormand-method">Runge-Kutta Prince-Dormand method</a>:</td><td> </td><td valign="top"><a href="Stepping-Functions.html#Stepping-Functions">Stepping Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Running-Statistics.html#index-running-statistics">running statistics</a>:</td><td> </td><td valign="top"><a href="Running-Statistics.html#Running-Statistics">Running Statistics</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th><a name="Concept-Index_cp_letter-S">S</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="Approximate-Comparison-of-Floating-Point-Numbers.html#index-safe-comparison-of-floating-point-numbers">safe comparison of floating point numbers</a>:</td><td> </td><td valign="top"><a href="Approximate-Comparison-of-Floating-Point-Numbers.html#Approximate-Comparison-of-Floating-Point-Numbers">Approximate Comparison of Floating Point Numbers</a></td></tr>
<tr><td></td><td valign="top"><a href="Minimization-Algorithms.html#index-safeguarded-step_002dlength-algorithm">safeguarded step-length algorithm</a>:</td><td> </td><td valign="top"><a href="Minimization-Algorithms.html#Minimization-Algorithms">Minimization Algorithms</a></td></tr>
<tr><td></td><td valign="top"><a href="Resampling-from-histograms.html#index-sampling-from-histograms">sampling from histograms</a>:</td><td> </td><td valign="top"><a href="Resampling-from-histograms.html#Resampling-from-histograms">Resampling from histograms</a></td></tr>
<tr><td></td><td valign="top"><a href="The-histogram-probability-distribution-struct.html#index-sampling-from-histograms-1">sampling from histograms</a>:</td><td> </td><td valign="top"><a href="The-histogram-probability-distribution-struct.html#The-histogram-probability-distribution-struct">The histogram probability distribution struct</a></td></tr>
<tr><td></td><td valign="top"><a href="Level-1-GSL-BLAS-Interface.html#index-SAXPY_002c-Level_002d1-BLAS">SAXPY, Level-1 BLAS</a>:</td><td> </td><td valign="top"><a href="Level-1-GSL-BLAS-Interface.html#Level-1-GSL-BLAS-Interface">Level 1 GSL BLAS Interface</a></td></tr>
<tr><td></td><td valign="top"><a href="Level-1-GSL-BLAS-Interface.html#index-SCAL_002c-Level_002d1-BLAS">SCAL, Level-1 BLAS</a>:</td><td> </td><td valign="top"><a href="Level-1-GSL-BLAS-Interface.html#Level-1-GSL-BLAS-Interface">Level 1 GSL BLAS Interface</a></td></tr>
<tr><td></td><td valign="top"><a href="Simulated-Annealing-algorithm.html#index-schedule_002c-cooling">schedule, cooling</a>:</td><td> </td><td valign="top"><a href="Simulated-Annealing-algorithm.html#Simulated-Annealing-algorithm">Simulated Annealing algorithm</a></td></tr>
<tr><td></td><td valign="top"><a href="Angular-Mathieu-Functions.html#index-se_0028q_002cx_0029_002c-Mathieu-function"><em>se(q,x)</em>, Mathieu function</a>:</td><td> </td><td valign="top"><a href="Angular-Mathieu-Functions.html#Angular-Mathieu-Functions">Angular Mathieu Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Root-Finding-Algorithms-using-Derivatives.html#index-secant-method-for-finding-roots">secant method for finding roots</a>:</td><td> </td><td valign="top"><a href="Root-Finding-Algorithms-using-Derivatives.html#Root-Finding-Algorithms-using-Derivatives">Root Finding Algorithms using Derivatives</a></td></tr>
<tr><td></td><td valign="top"><a href="Histogramming-ntuple-values.html#index-selection-function_002c-ntuples">selection function, ntuples</a>:</td><td> </td><td valign="top"><a href="Histogramming-ntuple-values.html#Histogramming-ntuple-values">Histogramming ntuple values</a></td></tr>
<tr><td></td><td valign="top"><a href="Series-Acceleration.html#index-series_002c-acceleration">series, acceleration</a>:</td><td> </td><td valign="top"><a href="Series-Acceleration.html#Series-Acceleration">Series Acceleration</a></td></tr>
<tr><td></td><td valign="top"><a href="Shared-Libraries.html#index-shared-libraries">shared libraries</a>:</td><td> </td><td valign="top"><a href="Shared-Libraries.html#Shared-Libraries">Shared Libraries</a></td></tr>
<tr><td></td><td valign="top"><a href="Conventions-used-in-this-manual.html#index-shell-prompt">shell prompt</a>:</td><td> </td><td valign="top"><a href="Conventions-used-in-this-manual.html#Conventions-used-in-this-manual">Conventions used in this manual</a></td></tr>
<tr><td></td><td valign="top"><a href="Hyperbolic-Integrals.html#index-Shi_0028x_0029">Shi(x)</a>:</td><td> </td><td valign="top"><a href="Hyperbolic-Integrals.html#Hyperbolic-Integrals">Hyperbolic Integrals</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-random-number-generators.html#index-shift_002dregister-random-number-generator">shift-register random number generator</a>:</td><td> </td><td valign="top"><a href="Other-random-number-generators.html#Other-random-number-generators">Other random number generators</a></td></tr>
<tr><td></td><td valign="top"><a href="Trigonometric-Integrals.html#index-Si_0028x_0029">Si(x)</a>:</td><td> </td><td valign="top"><a href="Trigonometric-Integrals.html#Trigonometric-Integrals">Trigonometric Integrals</a></td></tr>
<tr><td></td><td valign="top"><a href="Representation-of-floating-point-numbers.html#index-sign-bit_002c-IEEE-format">sign bit, IEEE format</a>:</td><td> </td><td valign="top"><a href="Representation-of-floating-point-numbers.html#Representation-of-floating-point-numbers">Representation of floating point numbers</a></td></tr>
<tr><td></td><td valign="top"><a href="LU-Decomposition.html#index-sign-of-the-determinant-of-a-matrix">sign of the determinant of a matrix</a>:</td><td> </td><td valign="top"><a href="LU-Decomposition.html#LU-Decomposition">LU Decomposition</a></td></tr>
<tr><td></td><td valign="top"><a href="Multimin-Algorithms-without-Derivatives.html#index-simplex-algorithm_002c-minimization">simplex algorithm, minimization</a>:</td><td> </td><td valign="top"><a href="Multimin-Algorithms-without-Derivatives.html#Multimin-Algorithms-without-Derivatives">Multimin Algorithms without Derivatives</a></td></tr>
<tr><td></td><td valign="top"><a href="Simulated-Annealing.html#index-simulated-annealing">simulated annealing</a>:</td><td> </td><td valign="top"><a href="Simulated-Annealing.html#Simulated-Annealing">Simulated Annealing</a></td></tr>
<tr><td></td><td valign="top"><a href="Complex-Trigonometric-Functions.html#index-sin_002c-of-complex-number">sin, of complex number</a>:</td><td> </td><td valign="top"><a href="Complex-Trigonometric-Functions.html#Complex-Trigonometric-Functions">Complex Trigonometric Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Circular-Trigonometric-Functions.html#index-sine-function_002c-special-functions">sine function, special functions</a>:</td><td> </td><td valign="top"><a href="Circular-Trigonometric-Functions.html#Circular-Trigonometric-Functions">Circular Trigonometric Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Representation-of-floating-point-numbers.html#index-single-precision_002c-IEEE-format">single precision, IEEE format</a>:</td><td> </td><td valign="top"><a href="Representation-of-floating-point-numbers.html#Representation-of-floating-point-numbers">Representation of floating point numbers</a></td></tr>
<tr><td></td><td valign="top"><a href="QAWS-adaptive-integration-for-singular-functions.html#index-singular-functions_002c-numerical-integration-of">singular functions, numerical integration of</a>:</td><td> </td><td valign="top"><a href="QAWS-adaptive-integration-for-singular-functions.html#QAWS-adaptive-integration-for-singular-functions">QAWS adaptive integration for singular functions</a></td></tr>
<tr><td></td><td valign="top"><a href="QAGP-adaptive-integration-with-known-singular-points.html#index-singular-points_002c-specifying-positions-in-quadrature">singular points, specifying positions in quadrature</a>:</td><td> </td><td valign="top"><a href="QAGP-adaptive-integration-with-known-singular-points.html#QAGP-adaptive-integration-with-known-singular-points">QAGP adaptive integration with known singular points</a></td></tr>
<tr><td></td><td valign="top"><a href="Singular-Value-Decomposition.html#index-singular-value-decomposition">singular value decomposition</a>:</td><td> </td><td valign="top"><a href="Singular-Value-Decomposition.html#Singular-Value-Decomposition">Singular Value Decomposition</a></td></tr>
<tr><td></td><td valign="top"><a href="The-Levy-skew-alpha_002dStable-Distribution.html#index-Skew-Levy-distribution">Skew Levy distribution</a>:</td><td> </td><td valign="top"><a href="The-Levy-skew-alpha_002dStable-Distribution.html#The-Levy-skew-alpha_002dStable-Distribution">The Levy skew alpha-Stable Distribution</a></td></tr>
<tr><td></td><td valign="top"><a href="Higher-moments-_0028skewness-and-kurtosis_0029.html#index-skewness">skewness</a>:</td><td> </td><td valign="top"><a href="Higher-moments-_0028skewness-and-kurtosis_0029.html#Higher-moments-_0028skewness-and-kurtosis_0029">Higher moments (skewness and kurtosis)</a></td></tr>
<tr><td></td><td valign="top"><a href="Numerical-Differentiation.html#index-slope_002c-see-numerical-derivative">slope, see numerical derivative</a>:</td><td> </td><td valign="top"><a href="Numerical-Differentiation.html#Numerical-Differentiation">Numerical Differentiation</a></td></tr>
<tr><td></td><td valign="top"><a href="Quasi_002dRandom-Sequences.html#index-Sobol-sequence">Sobol sequence</a>:</td><td> </td><td valign="top"><a href="Quasi_002dRandom-Sequences.html#Quasi_002dRandom-Sequences">Quasi-Random Sequences</a></td></tr>
<tr><td></td><td valign="top"><a href="Householder-solver-for-linear-systems.html#index-solution-of-linear-system-by-Householder-transformations">solution of linear system by Householder transformations</a>:</td><td> </td><td valign="top"><a href="Householder-solver-for-linear-systems.html#Householder-solver-for-linear-systems">Householder solver for linear systems</a></td></tr>
<tr><td></td><td valign="top"><a href="Linear-Algebra.html#index-solution-of-linear-systems_002c-Ax_003db">solution of linear systems, Ax=b</a>:</td><td> </td><td valign="top"><a href="Linear-Algebra.html#Linear-Algebra">Linear Algebra</a></td></tr>
<tr><td></td><td valign="top"><a href="One-dimensional-Root_002dFinding.html#index-solving-a-nonlinear-equation">solving a nonlinear equation</a>:</td><td> </td><td valign="top"><a href="One-dimensional-Root_002dFinding.html#One-dimensional-Root_002dFinding">One dimensional Root-Finding</a></td></tr>
<tr><td></td><td valign="top"><a href="Multidimensional-Root_002dFinding.html#index-solving-nonlinear-systems-of-equations">solving nonlinear systems of equations</a>:</td><td> </td><td valign="top"><a href="Multidimensional-Root_002dFinding.html#Multidimensional-Root_002dFinding">Multidimensional Root-Finding</a></td></tr>
<tr><td></td><td valign="top"><a href="Sorting.html#index-sorting">sorting</a>:</td><td> </td><td valign="top"><a href="Sorting.html#Sorting">Sorting</a></td></tr>
<tr><td></td><td valign="top"><a href="Sorting-Eigenvalues-and-Eigenvectors.html#index-sorting-eigenvalues-and-eigenvectors">sorting eigenvalues and eigenvectors</a>:</td><td> </td><td valign="top"><a href="Sorting-Eigenvalues-and-Eigenvectors.html#Sorting-Eigenvalues-and-Eigenvectors">Sorting Eigenvalues and Eigenvectors</a></td></tr>
<tr><td></td><td valign="top"><a href="Sorting-vectors.html#index-sorting-vector-elements">sorting vector elements</a>:</td><td> </td><td valign="top"><a href="Sorting-vectors.html#Sorting-vectors">Sorting vectors</a></td></tr>
<tr><td></td><td valign="top"><a href="Code-Reuse.html#index-source-code_002c-reuse-in-applications">source code, reuse in applications</a>:</td><td> </td><td valign="top"><a href="Code-Reuse.html#Code-Reuse">Code Reuse</a></td></tr>
<tr><td></td><td valign="top"><a href="Sparse-BLAS-Support.html#index-sparse-BLAS">sparse BLAS</a>:</td><td> </td><td valign="top"><a href="Sparse-BLAS-Support.html#Sparse-BLAS-Support">Sparse BLAS Support</a></td></tr>
<tr><td></td><td valign="top"><a href="Sparse-Linear-Algebra.html#index-sparse-linear-algebra">sparse linear algebra</a>:</td><td> </td><td valign="top"><a href="Sparse-Linear-Algebra.html#Sparse-Linear-Algebra">Sparse Linear Algebra</a></td></tr>
<tr><td></td><td valign="top"><a href="Sparse-Linear-Algebra-Examples.html#index-sparse-linear-algebra_002c-examples">sparse linear algebra, examples</a>:</td><td> </td><td valign="top"><a href="Sparse-Linear-Algebra-Examples.html#Sparse-Linear-Algebra-Examples">Sparse Linear Algebra Examples</a></td></tr>
<tr><td></td><td valign="top"><a href="Sparse-Iterative-Solvers.html#index-sparse-linear-algebra_002c-iterative-solvers">sparse linear algebra, iterative solvers</a>:</td><td> </td><td valign="top"><a href="Sparse-Iterative-Solvers.html#Sparse-Iterative-Solvers">Sparse Iterative Solvers</a></td></tr>
<tr><td></td><td valign="top"><a href="Overview-of-Sparse-Linear-Algebra.html#index-sparse-linear-algebra_002c-overview">sparse linear algebra, overview</a>:</td><td> </td><td valign="top"><a href="Overview-of-Sparse-Linear-Algebra.html#Overview-of-Sparse-Linear-Algebra">Overview of Sparse Linear Algebra</a></td></tr>
<tr><td></td><td valign="top"><a href="Sparse-Linear-Algebra-References-and-Further-Reading.html#index-sparse-linear-algebra_002c-references">sparse linear algebra, references</a>:</td><td> </td><td valign="top"><a href="Sparse-Linear-Algebra-References-and-Further-Reading.html#Sparse-Linear-Algebra-References-and-Further-Reading">Sparse Linear Algebra References and Further Reading</a></td></tr>
<tr><td></td><td valign="top"><a href="Sparse-Matrices.html#index-sparse-matrices">sparse matrices</a>:</td><td> </td><td valign="top"><a href="Sparse-Matrices.html#Sparse-Matrices">Sparse Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Sparse-Matrices-Accessing-Elements.html#index-sparse-matrices_002c-accessing-elements">sparse matrices, accessing elements</a>:</td><td> </td><td valign="top"><a href="Sparse-Matrices-Accessing-Elements.html#Sparse-Matrices-Accessing-Elements">Sparse Matrices Accessing Elements</a></td></tr>
<tr><td></td><td valign="top"><a href="Sparse-Matrices-Allocation.html#index-sparse-matrices_002c-allocation">sparse matrices, allocation</a>:</td><td> </td><td valign="top"><a href="Sparse-Matrices-Allocation.html#Sparse-Matrices-Allocation">Sparse Matrices Allocation</a></td></tr>
<tr><td></td><td valign="top"><a href="Sparse-BLAS-operations.html#index-sparse-matrices_002c-BLAS-operations">sparse matrices, BLAS operations</a>:</td><td> </td><td valign="top"><a href="Sparse-BLAS-operations.html#Sparse-BLAS-operations">Sparse BLAS operations</a></td></tr>
<tr><td></td><td valign="top"><a href="Sparse-Matrices-Compressed-Format.html#index-sparse-matrices_002c-compression">sparse matrices, compression</a>:</td><td> </td><td valign="top"><a href="Sparse-Matrices-Compressed-Format.html#Sparse-Matrices-Compressed-Format">Sparse Matrices Compressed Format</a></td></tr>
<tr><td></td><td valign="top"><a href="Sparse-Matrices-Conversion-Between-Sparse-and-Dense.html#index-sparse-matrices_002c-conversion">sparse matrices, conversion</a>:</td><td> </td><td valign="top"><a href="Sparse-Matrices-Conversion-Between-Sparse-and-Dense.html#Sparse-Matrices-Conversion-Between-Sparse-and-Dense">Sparse Matrices Conversion Between Sparse and Dense</a></td></tr>
<tr><td></td><td valign="top"><a href="Sparse-Matrices-Copying.html#index-sparse-matrices_002c-copying">sparse matrices, copying</a>:</td><td> </td><td valign="top"><a href="Sparse-Matrices-Copying.html#Sparse-Matrices-Copying">Sparse Matrices Copying</a></td></tr>
<tr><td></td><td valign="top"><a href="Sparse-Matrices-Examples.html#index-sparse-matrices_002c-examples">sparse matrices, examples</a>:</td><td> </td><td valign="top"><a href="Sparse-Matrices-Examples.html#Sparse-Matrices-Examples">Sparse Matrices Examples</a></td></tr>
<tr><td></td><td valign="top"><a href="Sparse-Matrices-Exchanging-Rows-and-Columns.html#index-sparse-matrices_002c-exchanging-rows-and-columns">sparse matrices, exchanging rows and columns</a>:</td><td> </td><td valign="top"><a href="Sparse-Matrices-Exchanging-Rows-and-Columns.html#Sparse-Matrices-Exchanging-Rows-and-Columns">Sparse Matrices Exchanging Rows and Columns</a></td></tr>
<tr><td></td><td valign="top"><a href="Sparse-Matrices-Initializing-Elements.html#index-sparse-matrices_002c-initializing-elements">sparse matrices, initializing elements</a>:</td><td> </td><td valign="top"><a href="Sparse-Matrices-Initializing-Elements.html#Sparse-Matrices-Initializing-Elements">Sparse Matrices Initializing Elements</a></td></tr>
<tr><td></td><td valign="top"><a href="Sparse-Iterative-Solvers.html#index-sparse-matrices_002c-iterative-solvers">sparse matrices, iterative solvers</a>:</td><td> </td><td valign="top"><a href="Sparse-Iterative-Solvers.html#Sparse-Iterative-Solvers">Sparse Iterative Solvers</a></td></tr>
<tr><td></td><td valign="top"><a href="Sparse-Matrices-Finding-Maximum-and-Minimum-Elements.html#index-sparse-matrices_002c-min_002fmax-elements">sparse matrices, min/max elements</a>:</td><td> </td><td valign="top"><a href="Sparse-Matrices-Finding-Maximum-and-Minimum-Elements.html#Sparse-Matrices-Finding-Maximum-and-Minimum-Elements">Sparse Matrices Finding Maximum and Minimum Elements</a></td></tr>
<tr><td></td><td valign="top"><a href="Sparse-Matrices-Operations.html#index-sparse-matrices_002c-operations">sparse matrices, operations</a>:</td><td> </td><td valign="top"><a href="Sparse-Matrices-Operations.html#Sparse-Matrices-Operations">Sparse Matrices Operations</a></td></tr>
<tr><td></td><td valign="top"><a href="Sparse-Matrices-Overview.html#index-sparse-matrices_002c-overview">sparse matrices, overview</a>:</td><td> </td><td valign="top"><a href="Sparse-Matrices-Overview.html#Sparse-Matrices-Overview">Sparse Matrices Overview</a></td></tr>
<tr><td></td><td valign="top"><a href="Sparse-Matrices-Properties.html#index-sparse-matrices_002c-properties">sparse matrices, properties</a>:</td><td> </td><td valign="top"><a href="Sparse-Matrices-Properties.html#Sparse-Matrices-Properties">Sparse Matrices Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Sparse-Matrices-Reading-and-Writing.html#index-sparse-matrices_002c-reading">sparse matrices, reading</a>:</td><td> </td><td valign="top"><a href="Sparse-Matrices-Reading-and-Writing.html#Sparse-Matrices-Reading-and-Writing">Sparse Matrices Reading and Writing</a></td></tr>
<tr><td></td><td valign="top"><a href="Sparse-Matrices-References-and-Further-Reading.html#index-sparse-matrices_002c-references">sparse matrices, references</a>:</td><td> </td><td valign="top"><a href="Sparse-Matrices-References-and-Further-Reading.html#Sparse-Matrices-References-and-Further-Reading">Sparse Matrices References and Further Reading</a></td></tr>
<tr><td></td><td valign="top"><a href="Sparse-BLAS-References-and-Further-Reading.html#index-sparse-matrices_002c-references-1">sparse matrices, references</a>:</td><td> </td><td valign="top"><a href="Sparse-BLAS-References-and-Further-Reading.html#Sparse-BLAS-References-and-Further-Reading">Sparse BLAS References and Further Reading</a></td></tr>
<tr><td></td><td valign="top"><a href="Sparse-Matrices-Reading-and-Writing.html#index-sparse-matrices_002c-writing">sparse matrices, writing</a>:</td><td> </td><td valign="top"><a href="Sparse-Matrices-Reading-and-Writing.html#Sparse-Matrices-Reading-and-Writing">Sparse Matrices Reading and Writing</a></td></tr>
<tr><td></td><td valign="top"><a href="Sparse-Iterative-Solvers.html#index-sparse_002c-iterative-solvers">sparse, iterative solvers</a>:</td><td> </td><td valign="top"><a href="Sparse-Iterative-Solvers.html#Sparse-Iterative-Solvers">Sparse Iterative Solvers</a></td></tr>
<tr><td></td><td valign="top"><a href="Special-Functions.html#index-special-functions">special functions</a>:</td><td> </td><td valign="top"><a href="Special-Functions.html#Special-Functions">Special Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Regular-Spherical-Bessel-Functions.html#index-Spherical-Bessel-Functions">Spherical Bessel Functions</a>:</td><td> </td><td valign="top"><a href="Regular-Spherical-Bessel-Functions.html#Regular-Spherical-Bessel-Functions">Regular Spherical Bessel Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Legendre-Functions-and-Spherical-Harmonics.html#index-spherical-harmonics">spherical harmonics</a>:</td><td> </td><td valign="top"><a href="Legendre-Functions-and-Spherical-Harmonics.html#Legendre-Functions-and-Spherical-Harmonics">Legendre Functions and Spherical Harmonics</a></td></tr>
<tr><td></td><td valign="top"><a href="Spherical-Vector-Distributions.html#index-spherical-random-variates_002c-2D">spherical random variates, 2D</a>:</td><td> </td><td valign="top"><a href="Spherical-Vector-Distributions.html#Spherical-Vector-Distributions">Spherical Vector Distributions</a></td></tr>
<tr><td></td><td valign="top"><a href="Spherical-Vector-Distributions.html#index-spherical-random-variates_002c-3D">spherical random variates, 3D</a>:</td><td> </td><td valign="top"><a href="Spherical-Vector-Distributions.html#Spherical-Vector-Distributions">Spherical Vector Distributions</a></td></tr>
<tr><td></td><td valign="top"><a href="Spherical-Vector-Distributions.html#index-spherical-random-variates_002c-N_002ddimensional">spherical random variates, N-dimensional</a>:</td><td> </td><td valign="top"><a href="Spherical-Vector-Distributions.html#Spherical-Vector-Distributions">Spherical Vector Distributions</a></td></tr>
<tr><td></td><td valign="top"><a href="Interpolation.html#index-spline">spline</a>:</td><td> </td><td valign="top"><a href="Interpolation.html#Interpolation">Interpolation</a></td></tr>
<tr><td></td><td valign="top"><a href="Basis-Splines.html#index-splines_002c-basis">splines, basis</a>:</td><td> </td><td valign="top"><a href="Basis-Splines.html#Basis-Splines">Basis Splines</a></td></tr>
<tr><td></td><td valign="top"><a href="Cholesky-Decomposition.html#index-square-root-of-a-matrix_002c-Cholesky-decomposition">square root of a matrix, Cholesky decomposition</a>:</td><td> </td><td valign="top"><a href="Cholesky-Decomposition.html#Cholesky-Decomposition">Cholesky Decomposition</a></td></tr>
<tr><td></td><td valign="top"><a href="Elementary-Complex-Functions.html#index-square-root-of-complex-number">square root of complex number</a>:</td><td> </td><td valign="top"><a href="Elementary-Complex-Functions.html#Elementary-Complex-Functions">Elementary Complex Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Statistics.html#index-standard-deviation">standard deviation</a>:</td><td> </td><td valign="top"><a href="Statistics.html#Statistics">Statistics</a></td></tr>
<tr><td></td><td valign="top"><a href="Histogram-Statistics.html#index-standard-deviation_002c-from-histogram">standard deviation, from histogram</a>:</td><td> </td><td valign="top"><a href="Histogram-Statistics.html#Histogram-Statistics">Histogram Statistics</a></td></tr>
<tr><td></td><td valign="top"><a href="Using-the-library.html#index-standards-conformance_002c-ANSI-C">standards conformance, ANSI C</a>:</td><td> </td><td valign="top"><a href="Using-the-library.html#Using-the-library">Using the library</a></td></tr>
<tr><td></td><td valign="top"><a href="Fitting-References-and-Further-Reading.html#index-Statistical-Reference-Datasets-_0028StRD_0029">Statistical Reference Datasets (StRD)</a>:</td><td> </td><td valign="top"><a href="Fitting-References-and-Further-Reading.html#Fitting-References-and-Further-Reading">Fitting References and Further Reading</a></td></tr>
<tr><td></td><td valign="top"><a href="Statistics.html#index-statistics">statistics</a>:</td><td> </td><td valign="top"><a href="Statistics.html#Statistics">Statistics</a></td></tr>
<tr><td></td><td valign="top"><a href="Histogram-Statistics.html#index-statistics_002c-from-histogram">statistics, from histogram</a>:</td><td> </td><td valign="top"><a href="Histogram-Statistics.html#Histogram-Statistics">Histogram Statistics</a></td></tr>
<tr><td></td><td valign="top"><a href="Multimin-Algorithms-with-Derivatives.html#index-steepest-descent-algorithm_002c-minimization">steepest descent algorithm, minimization</a>:</td><td> </td><td valign="top"><a href="Multimin-Algorithms-with-Derivatives.html#Multimin-Algorithms-with-Derivatives">Multimin Algorithms with Derivatives</a></td></tr>
<tr><td></td><td valign="top"><a href="Root-Finding-Algorithms-using-Derivatives.html#index-Steffenson_0027s-method-for-finding-roots">Steffenson’s method for finding roots</a>:</td><td> </td><td valign="top"><a href="Root-Finding-Algorithms-using-Derivatives.html#Root-Finding-Algorithms-using-Derivatives">Root Finding Algorithms using Derivatives</a></td></tr>
<tr><td></td><td valign="top"><a href="Monte-Carlo-Integration.html#index-stratified-sampling-in-Monte-Carlo-integration">stratified sampling in Monte Carlo integration</a>:</td><td> </td><td valign="top"><a href="Monte-Carlo-Integration.html#Monte-Carlo-Integration">Monte Carlo Integration</a></td></tr>
<tr><td></td><td valign="top"><a href="Vectors.html#index-stride_002c-of-vector-index">stride, of vector index</a>:</td><td> </td><td valign="top"><a href="Vectors.html#Vectors">Vectors</a></td></tr>
<tr><td></td><td valign="top"><a href="The-t_002ddistribution.html#index-Student-t_002ddistribution">Student t-distribution</a>:</td><td> </td><td valign="top"><a href="The-t_002ddistribution.html#The-t_002ddistribution">The t-distribution</a></td></tr>
<tr><td></td><td valign="top"><a href="Creating-row-and-column-views.html#index-subdiagonal_002c-of-a-matrix">subdiagonal, of a matrix</a>:</td><td> </td><td valign="top"><a href="Creating-row-and-column-views.html#Creating-row-and-column-views">Creating row and column views</a></td></tr>
<tr><td></td><td valign="top"><a href="Series-Acceleration.html#index-summation_002c-acceleration">summation, acceleration</a>:</td><td> </td><td valign="top"><a href="Series-Acceleration.html#Series-Acceleration">Series Acceleration</a></td></tr>
<tr><td></td><td valign="top"><a href="Creating-row-and-column-views.html#index-superdiagonal_002c-matrix">superdiagonal, matrix</a>:</td><td> </td><td valign="top"><a href="Creating-row-and-column-views.html#Creating-row-and-column-views">Creating row and column views</a></td></tr>
<tr><td></td><td valign="top"><a href="Singular-Value-Decomposition.html#index-SVD">SVD</a>:</td><td> </td><td valign="top"><a href="Singular-Value-Decomposition.html#Singular-Value-Decomposition">Singular Value Decomposition</a></td></tr>
<tr><td></td><td valign="top"><a href="Level-1-GSL-BLAS-Interface.html#index-SWAP_002c-Level_002d1-BLAS">SWAP, Level-1 BLAS</a>:</td><td> </td><td valign="top"><a href="Level-1-GSL-BLAS-Interface.html#Level-1-GSL-BLAS-Interface">Level 1 GSL BLAS Interface</a></td></tr>
<tr><td></td><td valign="top"><a href="Accessing-permutation-elements.html#index-swapping-permutation-elements">swapping permutation elements</a>:</td><td> </td><td valign="top"><a href="Accessing-permutation-elements.html#Accessing-permutation-elements">Accessing permutation elements</a></td></tr>
<tr><td></td><td valign="top"><a href="Level-3-GSL-BLAS-Interface.html#index-SYMM_002c-Level_002d3-BLAS">SYMM, Level-3 BLAS</a>:</td><td> </td><td valign="top"><a href="Level-3-GSL-BLAS-Interface.html#Level-3-GSL-BLAS-Interface">Level 3 GSL BLAS Interface</a></td></tr>
<tr><td></td><td valign="top"><a href="Real-Symmetric-Matrices.html#index-symmetric-matrix_002c-real_002c-eigensystem">symmetric matrix, real, eigensystem</a>:</td><td> </td><td valign="top"><a href="Real-Symmetric-Matrices.html#Real-Symmetric-Matrices">Real Symmetric Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Level-2-GSL-BLAS-Interface.html#index-SYMV_002c-Level_002d2-BLAS">SYMV, Level-2 BLAS</a>:</td><td> </td><td valign="top"><a href="Level-2-GSL-BLAS-Interface.html#Level-2-GSL-BLAS-Interface">Level 2 GSL BLAS Interface</a></td></tr>
<tr><td></td><td valign="top"><a href="Synchrotron-Functions.html#index-synchrotron-functions">synchrotron functions</a>:</td><td> </td><td valign="top"><a href="Synchrotron-Functions.html#Synchrotron-Functions">Synchrotron Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Level-2-GSL-BLAS-Interface.html#index-SYR_002c-Level_002d2-BLAS">SYR, Level-2 BLAS</a>:</td><td> </td><td valign="top"><a href="Level-2-GSL-BLAS-Interface.html#Level-2-GSL-BLAS-Interface">Level 2 GSL BLAS Interface</a></td></tr>
<tr><td></td><td valign="top"><a href="Level-2-GSL-BLAS-Interface.html#index-SYR2_002c-Level_002d2-BLAS">SYR2, Level-2 BLAS</a>:</td><td> </td><td valign="top"><a href="Level-2-GSL-BLAS-Interface.html#Level-2-GSL-BLAS-Interface">Level 2 GSL BLAS Interface</a></td></tr>
<tr><td></td><td valign="top"><a href="Level-3-GSL-BLAS-Interface.html#index-SYR2K_002c-Level_002d3-BLAS">SYR2K, Level-3 BLAS</a>:</td><td> </td><td valign="top"><a href="Level-3-GSL-BLAS-Interface.html#Level-3-GSL-BLAS-Interface">Level 3 GSL BLAS Interface</a></td></tr>
<tr><td></td><td valign="top"><a href="Level-3-GSL-BLAS-Interface.html#index-SYRK_002c-Level_002d3-BLAS">SYRK, Level-3 BLAS</a>:</td><td> </td><td valign="top"><a href="Level-3-GSL-BLAS-Interface.html#Level-3-GSL-BLAS-Interface">Level 3 GSL BLAS Interface</a></td></tr>
<tr><td></td><td valign="top"><a href="Multidimensional-Root_002dFinding.html#index-systems-of-equations_002c-nonlinear">systems of equations, nonlinear</a>:</td><td> </td><td valign="top"><a href="Multidimensional-Root_002dFinding.html#Multidimensional-Root_002dFinding">Multidimensional Root-Finding</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th><a name="Concept-Index_cp_letter-T">T</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="The-t_002ddistribution.html#index-t_002ddistribution">t-distribution</a>:</td><td> </td><td valign="top"><a href="The-t_002ddistribution.html#The-t_002ddistribution">The t-distribution</a></td></tr>
<tr><td></td><td valign="top"><a href="Statistics.html#index-t_002dtest">t-test</a>:</td><td> </td><td valign="top"><a href="Statistics.html#Statistics">Statistics</a></td></tr>
<tr><td></td><td valign="top"><a href="Complex-Trigonometric-Functions.html#index-tangent-of-complex-number">tangent of complex number</a>:</td><td> </td><td valign="top"><a href="Complex-Trigonometric-Functions.html#Complex-Trigonometric-Functions">Complex Trigonometric Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Random-number-generator-algorithms.html#index-Tausworthe-random-number-generator">Tausworthe random number generator</a>:</td><td> </td><td valign="top"><a href="Random-number-generator-algorithms.html#Random-number-generator-algorithms">Random number generator algorithms</a></td></tr>
<tr><td></td><td valign="top"><a href="Factorials.html#index-Taylor-coefficients_002c-computation-of">Taylor coefficients, computation of</a>:</td><td> </td><td valign="top"><a href="Factorials.html#Factorials">Factorials</a></td></tr>
<tr><td></td><td valign="top"><a href="Combination-properties.html#index-testing-combination-for-validity">testing combination for validity</a>:</td><td> </td><td valign="top"><a href="Combination-properties.html#Combination-properties">Combination properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Multiset-properties.html#index-testing-multiset-for-validity">testing multiset for validity</a>:</td><td> </td><td valign="top"><a href="Multiset-properties.html#Multiset-properties">Multiset properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Permutation-properties.html#index-testing-permutation-for-validity">testing permutation for validity</a>:</td><td> </td><td valign="top"><a href="Permutation-properties.html#Permutation-properties">Permutation properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Thermal-Energy-and-Power.html#index-thermal-energy_002c-units-of">thermal energy, units of</a>:</td><td> </td><td valign="top"><a href="Thermal-Energy-and-Power.html#Thermal-Energy-and-Power">Thermal Energy and Power</a></td></tr>
<tr><td></td><td valign="top"><a href="Regularized-regression.html#index-Tikhonov-regression">Tikhonov regression</a>:</td><td> </td><td valign="top"><a href="Regularized-regression.html#Regularized-regression">Regularized regression</a></td></tr>
<tr><td></td><td valign="top"><a href="Measurement-of-Time.html#index-time-units">time units</a>:</td><td> </td><td valign="top"><a href="Measurement-of-Time.html#Measurement-of-Time">Measurement of Time</a></td></tr>
<tr><td></td><td valign="top"><a href="Matrices.html#index-trailing-dimension_002c-matrices">trailing dimension, matrices</a>:</td><td> </td><td valign="top"><a href="Matrices.html#Matrices">Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Householder-Transformations.html#index-transformation_002c-Householder">transformation, Householder</a>:</td><td> </td><td valign="top"><a href="Householder-Transformations.html#Householder-Transformations">Householder Transformations</a></td></tr>
<tr><td></td><td valign="top"><a href="Discrete-Hankel-Transforms.html#index-transforms_002c-Hankel">transforms, Hankel</a>:</td><td> </td><td valign="top"><a href="Discrete-Hankel-Transforms.html#Discrete-Hankel-Transforms">Discrete Hankel Transforms</a></td></tr>
<tr><td></td><td valign="top"><a href="Wavelet-Transforms.html#index-transforms_002c-wavelet">transforms, wavelet</a>:</td><td> </td><td valign="top"><a href="Wavelet-Transforms.html#Wavelet-Transforms">Wavelet Transforms</a></td></tr>
<tr><td></td><td valign="top"><a href="Transport-Functions.html#index-transport-functions">transport functions</a>:</td><td> </td><td valign="top"><a href="Transport-Functions.html#Transport-Functions">Transport Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Traveling-Salesman-Problem.html#index-traveling-salesman-problem">traveling salesman problem</a>:</td><td> </td><td valign="top"><a href="Traveling-Salesman-Problem.html#Traveling-Salesman-Problem">Traveling Salesman Problem</a></td></tr>
<tr><td></td><td valign="top"><a href="Triangular-Systems.html#index-triangular-systems">triangular systems</a>:</td><td> </td><td valign="top"><a href="Triangular-Systems.html#Triangular-Systems">Triangular Systems</a></td></tr>
<tr><td></td><td valign="top"><a href="Tridiagonal-Decomposition-of-Real-Symmetric-Matrices.html#index-tridiagonal-decomposition">tridiagonal decomposition</a>:</td><td> </td><td valign="top"><a href="Tridiagonal-Decomposition-of-Real-Symmetric-Matrices.html#Tridiagonal-Decomposition-of-Real-Symmetric-Matrices">Tridiagonal Decomposition of Real Symmetric Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Tridiagonal-Decomposition-of-Hermitian-Matrices.html#index-tridiagonal-decomposition-1">tridiagonal decomposition</a>:</td><td> </td><td valign="top"><a href="Tridiagonal-Decomposition-of-Hermitian-Matrices.html#Tridiagonal-Decomposition-of-Hermitian-Matrices">Tridiagonal Decomposition of Hermitian Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Tridiagonal-Systems.html#index-tridiagonal-systems">tridiagonal systems</a>:</td><td> </td><td valign="top"><a href="Tridiagonal-Systems.html#Tridiagonal-Systems">Tridiagonal Systems</a></td></tr>
<tr><td></td><td valign="top"><a href="Trigonometric-Functions.html#index-trigonometric-functions">trigonometric functions</a>:</td><td> </td><td valign="top"><a href="Trigonometric-Functions.html#Trigonometric-Functions">Trigonometric Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Complex-Trigonometric-Functions.html#index-trigonometric-functions-of-complex-numbers">trigonometric functions of complex numbers</a>:</td><td> </td><td valign="top"><a href="Complex-Trigonometric-Functions.html#Complex-Trigonometric-Functions">Complex Trigonometric Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Trigonometric-Integrals.html#index-trigonometric-integrals">trigonometric integrals</a>:</td><td> </td><td valign="top"><a href="Trigonometric-Integrals.html#Trigonometric-Integrals">Trigonometric Integrals</a></td></tr>
<tr><td></td><td valign="top"><a href="Level-3-GSL-BLAS-Interface.html#index-TRMM_002c-Level_002d3-BLAS">TRMM, Level-3 BLAS</a>:</td><td> </td><td valign="top"><a href="Level-3-GSL-BLAS-Interface.html#Level-3-GSL-BLAS-Interface">Level 3 GSL BLAS Interface</a></td></tr>
<tr><td></td><td valign="top"><a href="Level-2-GSL-BLAS-Interface.html#index-TRMV_002c-Level_002d2-BLAS">TRMV, Level-2 BLAS</a>:</td><td> </td><td valign="top"><a href="Level-2-GSL-BLAS-Interface.html#Level-2-GSL-BLAS-Interface">Level 2 GSL BLAS Interface</a></td></tr>
<tr><td></td><td valign="top"><a href="Level-3-GSL-BLAS-Interface.html#index-TRSM_002c-Level_002d3-BLAS">TRSM, Level-3 BLAS</a>:</td><td> </td><td valign="top"><a href="Level-3-GSL-BLAS-Interface.html#Level-3-GSL-BLAS-Interface">Level 3 GSL BLAS Interface</a></td></tr>
<tr><td></td><td valign="top"><a href="Level-2-GSL-BLAS-Interface.html#index-TRSV_002c-Level_002d2-BLAS">TRSV, Level-2 BLAS</a>:</td><td> </td><td valign="top"><a href="Level-2-GSL-BLAS-Interface.html#Level-2-GSL-BLAS-Interface">Level 2 GSL BLAS Interface</a></td></tr>
<tr><td></td><td valign="top"><a href="Traveling-Salesman-Problem.html#index-TSP">TSP</a>:</td><td> </td><td valign="top"><a href="Traveling-Salesman-Problem.html#Traveling-Salesman-Problem">Traveling Salesman Problem</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-random-number-generators.html#index-TT800-random-number-generator">TT800 random number generator</a>:</td><td> </td><td valign="top"><a href="Other-random-number-generators.html#Other-random-number-generators">Other random number generators</a></td></tr>
<tr><td></td><td valign="top"><a href="The-Bivariate-Gaussian-Distribution.html#index-two-dimensional-Gaussian-distribution">two dimensional Gaussian distribution</a>:</td><td> </td><td valign="top"><a href="The-Bivariate-Gaussian-Distribution.html#The-Bivariate-Gaussian-Distribution">The Bivariate Gaussian Distribution</a></td></tr>
<tr><td></td><td valign="top"><a href="The-Multivariate-Gaussian-Distribution.html#index-two-dimensional-Gaussian-distribution-1">two dimensional Gaussian distribution</a>:</td><td> </td><td valign="top"><a href="The-Multivariate-Gaussian-Distribution.html#The-Multivariate-Gaussian-Distribution">The Multivariate Gaussian Distribution</a></td></tr>
<tr><td></td><td valign="top"><a href="Two-dimensional-histograms.html#index-two-dimensional-histograms">two dimensional histograms</a>:</td><td> </td><td valign="top"><a href="Two-dimensional-histograms.html#Two-dimensional-histograms">Two dimensional histograms</a></td></tr>
<tr><td></td><td valign="top"><a href="The-Laplace-Distribution.html#index-two_002dsided-exponential-distribution">two-sided exponential distribution</a>:</td><td> </td><td valign="top"><a href="The-Laplace-Distribution.html#The-Laplace-Distribution">The Laplace Distribution</a></td></tr>
<tr><td></td><td valign="top"><a href="The-Type_002d1-Gumbel-Distribution.html#index-Type-1-Gumbel-distribution_002c-random-variates">Type 1 Gumbel distribution, random variates</a>:</td><td> </td><td valign="top"><a href="The-Type_002d1-Gumbel-Distribution.html#The-Type_002d1-Gumbel-Distribution">The Type-1 Gumbel Distribution</a></td></tr>
<tr><td></td><td valign="top"><a href="The-Type_002d2-Gumbel-Distribution.html#index-Type-2-Gumbel-distribution">Type 2 Gumbel distribution</a>:</td><td> </td><td valign="top"><a href="The-Type_002d2-Gumbel-Distribution.html#The-Type_002d2-Gumbel-Distribution">The Type-2 Gumbel Distribution</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th><a name="Concept-Index_cp_letter-U">U</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="Series-Acceleration.html#index-u_002dtransform-for-series">u-transform for series</a>:</td><td> </td><td valign="top"><a href="Series-Acceleration.html#Series-Acceleration">Series Acceleration</a></td></tr>
<tr><td></td><td valign="top"><a href="Setting-up-your-IEEE-environment.html#index-underflow_002c-IEEE-exceptions">underflow, IEEE exceptions</a>:</td><td> </td><td valign="top"><a href="Setting-up-your-IEEE-environment.html#Setting-up-your-IEEE-environment">Setting up your IEEE environment</a></td></tr>
<tr><td></td><td valign="top"><a href="The-Flat-_0028Uniform_0029-Distribution.html#index-uniform-distribution">uniform distribution</a>:</td><td> </td><td valign="top"><a href="The-Flat-_0028Uniform_0029-Distribution.html#The-Flat-_0028Uniform_0029-Distribution">The Flat (Uniform) Distribution</a></td></tr>
<tr><td></td><td valign="top"><a href="Physical-Constants.html#index-units_002c-conversion-of">units, conversion of</a>:</td><td> </td><td valign="top"><a href="Physical-Constants.html#Physical-Constants">Physical Constants</a></td></tr>
<tr><td></td><td valign="top"><a href="Imperial-Units.html#index-units_002c-imperial">units, imperial</a>:</td><td> </td><td valign="top"><a href="Imperial-Units.html#Imperial-Units">Imperial Units</a></td></tr>
<tr><td></td><td valign="top"><a href="Unix-random-number-generators.html#index-Unix-random-number-generators_002c-rand">Unix random number generators, rand</a>:</td><td> </td><td valign="top"><a href="Unix-random-number-generators.html#Unix-random-number-generators">Unix random number generators</a></td></tr>
<tr><td></td><td valign="top"><a href="Unix-random-number-generators.html#index-Unix-random-number-generators_002c-rand48">Unix random number generators, rand48</a>:</td><td> </td><td valign="top"><a href="Unix-random-number-generators.html#Unix-random-number-generators">Unix random number generators</a></td></tr>
<tr><td></td><td valign="top"><a href="Incomplete-Gamma-Functions.html#index-unnormalized-incomplete-Gamma-function">unnormalized incomplete Gamma function</a>:</td><td> </td><td valign="top"><a href="Incomplete-Gamma-Functions.html#Incomplete-Gamma-Functions">Incomplete Gamma Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Least_002dSquares-Fitting.html#index-unweighted-linear-fits">unweighted linear fits</a>:</td><td> </td><td valign="top"><a href="Least_002dSquares-Fitting.html#Least_002dSquares-Fitting">Least-Squares Fitting</a></td></tr>
<tr><td></td><td valign="top"><a href="Using-the-library.html#index-usage_002c-compiling-application-programs">usage, compiling application programs</a>:</td><td> </td><td valign="top"><a href="Using-the-library.html#Using-the-library">Using the library</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th><a name="Concept-Index_cp_letter-V">V</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="Histogramming-ntuple-values.html#index-value-function_002c-ntuples">value function, ntuples</a>:</td><td> </td><td valign="top"><a href="Histogramming-ntuple-values.html#Histogramming-ntuple-values">Histogramming ntuple values</a></td></tr>
<tr><td></td><td valign="top"><a href="ODE-Example-programs.html#index-Van-der-Pol-oscillator_002c-example">Van der Pol oscillator, example</a>:</td><td> </td><td valign="top"><a href="ODE-Example-programs.html#ODE-Example-programs">ODE Example programs</a></td></tr>
<tr><td></td><td valign="top"><a href="Statistics.html#index-variance">variance</a>:</td><td> </td><td valign="top"><a href="Statistics.html#Statistics">Statistics</a></td></tr>
<tr><td></td><td valign="top"><a href="Histogram-Statistics.html#index-variance_002c-from-histogram">variance, from histogram</a>:</td><td> </td><td valign="top"><a href="Histogram-Statistics.html#Histogram-Statistics">Histogram Statistics</a></td></tr>
<tr><td></td><td valign="top"><a href="Fitting-Overview.html#index-variance_002dcovariance-matrix_002c-linear-fits">variance-covariance matrix, linear fits</a>:</td><td> </td><td valign="top"><a href="Fitting-Overview.html#Fitting-Overview">Fitting Overview</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-random-number-generators.html#index-VAX-random-number-generator">VAX random number generator</a>:</td><td> </td><td valign="top"><a href="Other-random-number-generators.html#Other-random-number-generators">Other random number generators</a></td></tr>
<tr><td></td><td valign="top"><a href="BLAS-Support.html#index-vector_002c-operations">vector, operations</a>:</td><td> </td><td valign="top"><a href="BLAS-Support.html#BLAS-Support">BLAS Support</a></td></tr>
<tr><td></td><td valign="top"><a href="Sorting-vectors.html#index-vector_002c-sorting-elements-of">vector, sorting elements of</a>:</td><td> </td><td valign="top"><a href="Sorting-vectors.html#Sorting-vectors">Sorting vectors</a></td></tr>
<tr><td></td><td valign="top"><a href="Vectors-and-Matrices.html#index-vectors">vectors</a>:</td><td> </td><td valign="top"><a href="Vectors-and-Matrices.html#Vectors-and-Matrices">Vectors and Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Vectors.html#index-vectors-1">vectors</a>:</td><td> </td><td valign="top"><a href="Vectors.html#Vectors">Vectors</a></td></tr>
<tr><td></td><td valign="top"><a href="Initializing-vector-elements.html#index-vectors_002c-initializing">vectors, initializing</a>:</td><td> </td><td valign="top"><a href="Initializing-vector-elements.html#Initializing-vector-elements">Initializing vector elements</a></td></tr>
<tr><td></td><td valign="top"><a href="Accessing-vector-elements.html#index-vectors_002c-range_002dchecking">vectors, range-checking</a>:</td><td> </td><td valign="top"><a href="Accessing-vector-elements.html#Accessing-vector-elements">Accessing vector elements</a></td></tr>
<tr><td></td><td valign="top"><a href="VEGAS.html#index-VEGAS-Monte-Carlo-integration">VEGAS Monte Carlo integration</a>:</td><td> </td><td valign="top"><a href="VEGAS.html#VEGAS">VEGAS</a></td></tr>
<tr><td></td><td valign="top"><a href="Viscosity.html#index-viscosity_002c-units-of">viscosity, units of</a>:</td><td> </td><td valign="top"><a href="Viscosity.html#Viscosity">Viscosity</a></td></tr>
<tr><td></td><td valign="top"><a href="Volume-Area-and-Length.html#index-volume-units">volume units</a>:</td><td> </td><td valign="top"><a href="Volume-Area-and-Length.html#Volume-Area-and-Length">Volume Area and Length</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th><a name="Concept-Index_cp_letter-W">W</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="Lambert-W-Functions.html#index-W-function">W function</a>:</td><td> </td><td valign="top"><a href="Lambert-W-Functions.html#Lambert-W-Functions">Lambert W Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="GCC-warning-options-for-numerical-programs.html#index-warning-options">warning options</a>:</td><td> </td><td valign="top"><a href="GCC-warning-options-for-numerical-programs.html#GCC-warning-options-for-numerical-programs">GCC warning options for numerical programs</a></td></tr>
<tr><td></td><td valign="top"><a href="No-Warranty.html#index-warranty-_0028none_0029">warranty (none)</a>:</td><td> </td><td valign="top"><a href="No-Warranty.html#No-Warranty">No Warranty</a></td></tr>
<tr><td></td><td valign="top"><a href="Wavelet-Transforms.html#index-wavelet-transforms">wavelet transforms</a>:</td><td> </td><td valign="top"><a href="Wavelet-Transforms.html#Wavelet-Transforms">Wavelet Transforms</a></td></tr>
<tr><td></td><td valign="top"><a href="Further-Information.html#index-website_002c-developer-information">website, developer information</a>:</td><td> </td><td valign="top"><a href="Further-Information.html#Further-Information">Further Information</a></td></tr>
<tr><td></td><td valign="top"><a href="The-Weibull-Distribution.html#index-Weibull-distribution">Weibull distribution</a>:</td><td> </td><td valign="top"><a href="The-Weibull-Distribution.html#The-Weibull-Distribution">The Weibull Distribution</a></td></tr>
<tr><td></td><td valign="top"><a href="Mass-and-Weight.html#index-weight_002c-units-of">weight, units of</a>:</td><td> </td><td valign="top"><a href="Mass-and-Weight.html#Mass-and-Weight">Mass and Weight</a></td></tr>
<tr><td></td><td valign="top"><a href="Least_002dSquares-Fitting.html#index-weighted-linear-fits">weighted linear fits</a>:</td><td> </td><td valign="top"><a href="Least_002dSquares-Fitting.html#Least_002dSquares-Fitting">Least-Squares Fitting</a></td></tr>
<tr><td></td><td valign="top"><a href="Coupling-Coefficients.html#index-Wigner-coefficients">Wigner coefficients</a>:</td><td> </td><td valign="top"><a href="Coupling-Coefficients.html#Coupling-Coefficients">Coupling Coefficients</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th><a name="Concept-Index_cp_letter-Y">Y</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="Irregular-Cylindrical-Bessel-Functions.html#index-Y_0028x_0029_002c-Bessel-Functions">Y(x), Bessel Functions</a>:</td><td> </td><td valign="top"><a href="Irregular-Cylindrical-Bessel-Functions.html#Irregular-Cylindrical-Bessel-Functions">Irregular Cylindrical Bessel Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Irregular-Spherical-Bessel-Functions.html#index-y_0028x_0029_002c-Bessel-Functions">y(x), Bessel Functions</a>:</td><td> </td><td valign="top"><a href="Irregular-Spherical-Bessel-Functions.html#Irregular-Spherical-Bessel-Functions">Irregular Spherical Bessel Functions</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th><a name="Concept-Index_cp_letter-Z">Z</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="One-dimensional-Root_002dFinding.html#index-zero-finding">zero finding</a>:</td><td> </td><td valign="top"><a href="One-dimensional-Root_002dFinding.html#One-dimensional-Root_002dFinding">One dimensional Root-Finding</a></td></tr>
<tr><td></td><td valign="top"><a href="Initializing-matrix-elements.html#index-zero-matrix">zero matrix</a>:</td><td> </td><td valign="top"><a href="Initializing-matrix-elements.html#Initializing-matrix-elements">Initializing matrix elements</a></td></tr>
<tr><td></td><td valign="top"><a href="Representation-of-floating-point-numbers.html#index-zero_002c-IEEE-format">zero, IEEE format</a>:</td><td> </td><td valign="top"><a href="Representation-of-floating-point-numbers.html#Representation-of-floating-point-numbers">Representation of floating point numbers</a></td></tr>
<tr><td></td><td valign="top"><a href="Zeros-of-Regular-Bessel-Functions.html#index-Zeros-of-Regular-Bessel-Functions">Zeros of Regular Bessel Functions</a>:</td><td> </td><td valign="top"><a href="Zeros-of-Regular-Bessel-Functions.html#Zeros-of-Regular-Bessel-Functions">Zeros of Regular Bessel Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Zeta-Functions.html#index-Zeta-functions">Zeta functions</a>:</td><td> </td><td valign="top"><a href="Zeta-Functions.html#Zeta-Functions">Zeta Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="The-Gaussian-Distribution.html#index-Ziggurat-method">Ziggurat method</a>:</td><td> </td><td valign="top"><a href="The-Gaussian-Distribution.html#The-Gaussian-Distribution">The Gaussian Distribution</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
</table>
<table><tr><th valign="top">Jump to: </th><td><a class="summary-letter" href="#Concept-Index_cp_symbol-1"><b>$</b></a>
<a class="summary-letter" href="#Concept-Index_cp_symbol-2"><b>2</b></a>
<a class="summary-letter" href="#Concept-Index_cp_symbol-3"><b>3</b></a>
<a class="summary-letter" href="#Concept-Index_cp_symbol-4"><b>6</b></a>
<a class="summary-letter" href="#Concept-Index_cp_symbol-5"><b>9</b></a>
<br>
<a class="summary-letter" href="#Concept-Index_cp_letter-A"><b>A</b></a>
<a class="summary-letter" href="#Concept-Index_cp_letter-B"><b>B</b></a>
<a class="summary-letter" href="#Concept-Index_cp_letter-C"><b>C</b></a>
<a class="summary-letter" href="#Concept-Index_cp_letter-D"><b>D</b></a>
<a class="summary-letter" href="#Concept-Index_cp_letter-E"><b>E</b></a>
<a class="summary-letter" href="#Concept-Index_cp_letter-F"><b>F</b></a>
<a class="summary-letter" href="#Concept-Index_cp_letter-G"><b>G</b></a>
<a class="summary-letter" href="#Concept-Index_cp_letter-H"><b>H</b></a>
<a class="summary-letter" href="#Concept-Index_cp_letter-I"><b>I</b></a>
<a class="summary-letter" href="#Concept-Index_cp_letter-J"><b>J</b></a>
<a class="summary-letter" href="#Concept-Index_cp_letter-K"><b>K</b></a>
<a class="summary-letter" href="#Concept-Index_cp_letter-L"><b>L</b></a>
<a class="summary-letter" href="#Concept-Index_cp_letter-M"><b>M</b></a>
<a class="summary-letter" href="#Concept-Index_cp_letter-N"><b>N</b></a>
<a class="summary-letter" href="#Concept-Index_cp_letter-O"><b>O</b></a>
<a class="summary-letter" href="#Concept-Index_cp_letter-P"><b>P</b></a>
<a class="summary-letter" href="#Concept-Index_cp_letter-Q"><b>Q</b></a>
<a class="summary-letter" href="#Concept-Index_cp_letter-R"><b>R</b></a>
<a class="summary-letter" href="#Concept-Index_cp_letter-S"><b>S</b></a>
<a class="summary-letter" href="#Concept-Index_cp_letter-T"><b>T</b></a>
<a class="summary-letter" href="#Concept-Index_cp_letter-U"><b>U</b></a>
<a class="summary-letter" href="#Concept-Index_cp_letter-V"><b>V</b></a>
<a class="summary-letter" href="#Concept-Index_cp_letter-W"><b>W</b></a>
<a class="summary-letter" href="#Concept-Index_cp_letter-Y"><b>Y</b></a>
<a class="summary-letter" href="#Concept-Index_cp_letter-Z"><b>Z</b></a>
</td></tr></table>
<hr>
<div class="header">
<p>
Previous: <a href="Type-Index.html#Type-Index" accesskey="p" rel="previous">Type Index</a>, Up: <a href="index.html#Top" accesskey="u" rel="up">Top</a> [<a href="Function-Index.html#Function-Index" title="Index" rel="index">Index</a>]</p>
</div>
</body>
</html>
|