国外善心人士免费函式库收藏(FLORIDA STATE UNIVERSITY~jburkardt)[C语言]

资料来源:https://people.sc.fsu.edu/~jburkardt/

1.    allocatable_array, a program which demonstrates how a C function can declare a pointer to an array, pass it to a function, which can then allocate it and fill it with data, and then return the allocated and initialized array to the calling function through the argument list.
2.    alpert_rule, a library which can set up an Alpert quadrature rule for functions which are regular, log(x) singular, or 1/sqrt(x) singular.
3.    analemma, a program which evaluates the equation of time, a formula for the difference between the uniform 24 hour day and the actual position of the sun, creating data files that can be plotted with gnuplot, based on a C program by Brian Tung.
4.    args, a program which reports the command line arguments with which it was invoked;
5.    asa005, a library which evaluates the lower tail of the noncentral Student’s T distribution, by BE Cooper; this is a version of Applied Statistics Algorithm 5;
6.    asa006, a library which computes the Cholesky factor of a positive definite symmetric matrix, by Michael Healy; this is a version of Applied Statistics Algorithm 6;
7.    asa007, a library which computes the inverse of a positive definite symmetric matrix, by Michael Healy; this is a version of Applied Statistics Algorithm 7,
8.    asa032, a library which evaluates the incomplete Gamma function, by G Bhattacharjee; this is a version of Applied Statistics Algorithm 32;
9.    asa047, a library which minimizes a scalar function of several variables using the Nelder-Mead algorithm, by R ONeill. This is a version of Applied Statistics Algorithm 47;
10.    asa053, a library which produces sample matrices from the Wishart distribution, by William Smith and Ronald Hocking. This is a version of Applied Statistics Algorithm 53.
11.    asa058, a library which carries out K-means clustering of data, by David Sparks; this is a version of Applied Statistics Algorithm 58;
12.    asa063, a library which evaluates the incomplete Beta function, by KL Majumder and G Bhattacharjee; this is a version of Applied Statistics Algorithm 63;
13.    asa066, a library which computes the Cumulative Density Function (CDF) of the standard normal distribution, by David Hill; this is a version of Applied Statistics Algorithm 66;
14.    asa076, a library which evaluates Owen’s T function, by Young and Minder; this is a version of Applied Statistics Algorithm 76;
15.    asa091, a library which computes the percentage points of the Chi-square distribution, by Best and Roberts; this is a version of Applied Statistics Algorithm 91;
16.    asa103, a library which evaluates the digamma or psi function, by Jose Bernardo; this is a version of Applied Statistics Algorithm 103;
17.    asa109, a library which inverts the incomplete Beta function, by Cran, Martin and Thomas; this is a version of Applied Statistics Algorithm 109;
18.    asa111, a library which evaluates the percentage points of the normal distribution, by Beasley and Springer; this is a version of Applied Statistics Algorithm 111;
19.    asa113, a library which clusters data using a transfer and swap algorithm, by Banfield and Bassill; this is a version of Applied Statistics Algorithm 113;
20.    asa121, a library which evaluates the trigamma function, by BE Schneider; this is a version of Applied Statistics Algorithm 121;
21.    asa136, a library which implements a clustering algorithm, by Hartigan and Wong; this is a version of Applied Statistics Algorithm 136;
22.    asa144, a library which randomly generates tables with given row and column sums, by James Boyett; this is a version of Applied Statistics Algorithm 144;
23.    asa147, a library which evaluates the incomplete Gamma function, by Chi Leung Lau; this is a version of Applied Statistics Algorithm 147;
24.    asa152, a library which evaluates the probability density function (PDF) and cumulative density function (CDF) associated with the hypergeometric distribution, by Richard Lund; this is a version of Applied Statistics Algorithm 152;
25.    asa159, a library which computes a random table with given row and column sums, by Michael Patefield; this is a version of Applied Statistics Algorithm 159;
26.    asa172, a library which generates all multidimensional indices in a given range, simulating the behavior of an arbitrary number of nested loops, by OFlaherty and MacKenzie. this is a version of Applied Statistics Algorithm 172;
27.    asa183, a library which implements a random number generator (RNG), by Wichman and Hill; this is a version of Applied Statistics Algorithm 183;
28.    asa226, a library which evaluates the noncentral incomplete Beta function, by Russell Lenth; this is a version of Applied Statistics Algorithm 226;
29.    asa239, a library which evaluates the incomplete Gamma function, by Shea; this is a version of Applied Statistics Algorithm 239;
30.    asa241, a library which computes the inverse of the normal cumulative density function (CDF), by Michael Wichura; this is a version of Applied Statistics Algorithm 241;
31.    asa243, a library which evaluates the lower tail of the noncentral Student’s T distribution, by Russell Lenth; this is a version of Applied Statistics Algorithm 243;
32.    asa245, a library which evaluates the logarithm of the Gamma function, by Allan Mcleod; this is a version of Applied Statistics Algorithm 245;
33.    asa266, a library which evaluates various properties of the Dirichlet probability density function (PDF); this is a version of Applied Statistics Algorithm 266;
34.    asa299, a library which computes the lattice points (integer coordinates) in an M-dimensional simplex, by Chasalow and Brand; this is a version of Applied Statistics Algorithm 299;
35.    asa310, a library which evaluates the noncentral incomplete Beta function, by Chattamvelli and Shanmugam; this is a version of Applied Statistics Algorithm 310;
36.    asa314, a library which computes the inverse of a matrix whose elements are subject to modulo arithmetic, by Roger Payne. This is a version of Applied Statistics Algorithm 314.
37.    ascii_to_mri, a program which restores MRI data to its original binary format, having been previously converted to an ASCII text file.
38.    backtrack_binary_rc, a library which carries out a backtrack search for a set of binary decisions, using reverse communication.
39.    ball_grid, a library which computes a grid of points over the interior of the unit ball in 3D.
40.    ball_integrals, a library which returns the exact value of the integral of any monomial over the interior of the unit ball in 3D.
41.    ball_monte_carlo, a library which applies a Monte Carlo method to estimate integrals of a function over the interior of the unit ball in 3D;
42.    bank, a library which computes the check digit associated with a US Bank Routing Number check digit, or reports whether a 9-digit code is actually valid.
43.    barycentric_interp_1d, a library which defines and evaluates the barycentric Lagrange polynomial p(x) which interpolates a set of data, so that p(x(i)) = y(i). The barycentric approach means that very high degree polynomials can safely be used.
44.    bellman_ford, a library which implements the Bellman-Ford algorithm for finding the shortest distance from a given node to all other nodes in a directed graph whose edges have been assigned real-valued lengths.
45.    bernstein_polynomial, a library which evaluates the Bernstein polynomials;
46.    besselj, a library which evaluates Bessel J functions of noninteger order;
47.    beta_nc, a library which evaluates the cumulative density function (CDF) of the noncentral Beta distribution;
48.    bisection_integer, a library which seeks an integer solution to the equation F(X)=0, using bisection within a user-supplied change of sign interval [A,B].
49.    bisection_rc, a library which seeks a solution to the equation F(X)=0 using bisection within a user-supplied change of sign interval [A,B]. The procedure is written using reverse communication.
50.    black_scholes, a library which implements some simple approaches to the Black-Scholes option valuation theory, by Desmond Higham.
51.    blas, a library which contains the Basic Linear Algebra Subprograms (BLAS) for level 1, 2 and 3, for single and double precision, and for real and complex arithmetic.
52.    blas0, a library which contains auxilliary functions for the Basic Linear Algebra Subprograms (BLAS).
53.    blas1, a library which contains the Basic Linear Algebra Subprograms (BLAS) for level 1 (vector-vector operations), for single and double precision, and for real and complex arithmetic.
54.    blas1_c, a library of the Level 1 Basic Linear Algebra Subprograms (BLAS), using single precision complex arithmetic;
55.    blas1_d, a library of the Level 1 Basic Linear Algebra Subprograms (BLAS), using double precision real arithmetic;
56.    blas1_s, a library of the Level 1 Basic Linear Algebra Subprograms (BLAS), using single precision real arithmetic;
57.    blas1_z, a library of the Level 1 Basic Linear Algebra Subprograms (BLAS), using double precision complex arithmetic;
58.    blas2_c, a library which constitutes the Level 2 Basic Linear Algebra Subprograms (BLAS), for matrix-vector operations.
59.    blas3, a library which constitutes the Level 3 Basic Linear Algebra Subprograms (BLAS) for matrix-matrix operations;
60.    blend, a library which carries out 1D/2D/3D blending interpolation;
61.    box_behnken, a library which computes a Box-Behnken design, that is, a set of arguments to sample the behavior of a function of multiple parameters;
62.    brent, a library which contains routines for finding zeroes or minima of a scalar function of a scalar variable, without the use of derivative information, including a reverse communication option, by Richard Brent.
63.    brownian_motion_simulation, a library which simulates Brownian motion in an M-dimensional region, creating graphics files for processing by gnuplot.
64.    burgers_solution, a library which evaluates exact solutions of the time-dependent 1D viscous Burgers equation.
65.    bvec, a library which demonstrates how signed integers can be stored as binary vectors, and arithmetic can be performed on them.
66.    c, programs which illustrate some of the features of the C programming language.
67.    c_arrays, programs which illustrate the use of vectors, matrices and tensors.
68.    c_calls_f77, programs which illustrate a C program calling a FORTRAN77 subroutine.
69.    c_calls_f90, programs which illustrate a C program calling a FORTRAN90 subroutine.
70.    c_condor, programs which illustrate how a C program can be run in batch mode using the condor queueing system.
71.    c_files, programs which illustrate the use of files.
72.    c_intrinsics, a program which illustrates the use of intrinsic functions supplied by the C language.
73.    c_mistake, programs which illustrate some simple but devious programming mistakes in C.
74.    c_operators, a program which illustrates the use of the operators supplied by the C language.
75.    c_random, programs which illustrate the use of the C random number generator (RNG) functions.
76.    c4_complex_lib, a library which defines a single precision complex (C4) variable as a structure, and implements certain corresponding elementary functions.
77.    c4lib, a library which implements certain elementary functions for single precision complex (C4) variables using the C99 “float complex” datatype.
78.    c8_complex_lib, a library which defines a double precision complex (C8) variable as a structure, and implements certain corresponding elementary functions.
79.    c8lib, a library which implements certain elementary functions for double precision complex (C8) variables using the C99 standard “double complex” datatype.
80.    caesar, a library which can apply a Caesar Shift Cipher to a string of text.
81.    cauchy_principal_value, a library which uses Gauss-Legendre quadrature to estimate the Cauchy Principal Value (CPV) of certain singular integrals.
82.    cc_io a library which reads and writes sparse linear systems stored in the Compressed Column (CC) format.
83.    cc_to_st a library which converts a sparse matrix from compressed column (CC) to sparse triplet (ST) format.
84.    ccn_rule, a program which defines a one of a sequence of Clenshaw Curtis Nested (CCN) quadrature rules of any order.
85.    cdflib, a library which evaluates the cumulative density function (CDF), inverse CDF, and certain other inverse functions, for distributions including beta, binomial, chi-square, noncentral chi-square, F, noncentral F, gamma, negative binomial, normal, Poisson, and students T, by Barry Brown, James Lovato, Kathy Russell.
86.    cell, a library which defines a cell array, a generalization of an array which can compactly store and retrieve vector or matrix data of varying size, such as the rows of a triangular matrix.
87.    cellular_automaton, a program which demonstrates the 1D Cellular Automaton known as rule #30.
88.    cg, a library which implements a simple version of the conjugate gradient (CG) method for solving a system of linear equations of the form A*x=b, suitable for situations in which the matrix A is positive definite (only real, positive eigenvalues) and symmetric.
89.    cg_rc, a library which implements the conjugate gradient (CG) method for solving a positive definite sparse linear system A*x=b, using reverse communication (RC).
90.    change_making, a library which considers the change making problem, in which a given sum is to be formed using coins of various denominations.
91.    chebyshev, a library which computes the Chebyshev interpolant or approximant to a given function over an interval.
92.    chebyshev_interp_1d, a library which determines the combination of Chebyshev polynomials which interpolates a set of data, so that p(x(i)) = y(i).
93.    chebyshev_polynomial, a library which considers the Chebyshev polynomials T(i,x), U(i,x), V(i,x) and W(i,x). Functions are provided to evaluate the polynomials, determine their zeros, produce their polynomial coefficients, produce related quadrature rules, project other functions onto these polynomial bases, and integrate double and triple products of the polynomials.
94.    chebyshev_series, a library which can evaluate a Chebyshev series approximating a function f(x), while efficiently computing one, two or three derivatives of the series, which approximate f'(x), f”(x), and f”'(x), by Manfred Zimmer.
95.    chrpak, a library which can manipulate characters and strings;
96.    circle_arc_grid, a library which computes grid points along a circular arc.
97.    circle_integrals, a library which returns the exact value of the integral of any monomial over the circumference of the unit circle in 2D.
98.    circle_monte_carlo, a library which applies a Monte Carlo method to estimate the integral of a function along the circumference of the unit circle in 2D;
99.    circle_rule, a library which computes quadrature rules for the unit circle in 2D, that is, the circumference of the circle of radius 1 and center (0,0).
100.    circle_segment, a library which carries out computations associated with a circle segment, including height, angle, area, centroid, sampling, and quadrature, creating some graphics images using gnuplot.
101.    clapack, programs which illustrate the use of CLAPACK, a translation of the FORTRAN77 BLAS and LAPACK linear algebra libraries, including single and double precision, real and complex arithmetic.
102.    clapack_sc, programs which illustrate the use of CLAPACK, a translation of the FORTRAN77 BLAS and LAPACK linear algebra libraries, including single and double precision, real and complex arithmetic, as customized for the FSU Department of Scientific Computing.
103.    clenshaw_curtis_rule, a program which implements a Clenshaw Curtis quadrature rule;
104.    cnoise, a library which generates samples of noise obeying a 1/f^alpha power law, by Miroslav Stoyanov.
105.    collatz_recursive, a library which demonstrates recursive programming by considering the simple Collatz 3n+1 problem.
106.    colored_noise, a library which generates samples of noise obeying a 1/f^alpha power law.
107.    combination_lock, a library which simulates the process of determining the secret combination of a lock.
108.    combo, a library which includes routines for ranking, unranking, enumerating and randomly selecting balanced sequences, cycles, graphs, Gray codes, subsets, partitions, permutations, restricted growth functions, Pruefer codes and trees.
109.    communicator_mpi, a program which creates new communicators involving a subset of initial set of MPI processes in the default communicator MPI_COMM_WORLD.
110.    compass_search, a library which seeks the minimizer of a scalar function of several variables using compass search, a direct search algorithm that does not use derivatives.
111.    complex_numbers, a program which demonstrates some simple features involved in the use of complex numbers in C programming.
112.    condition, a library which implements methods of computing or estimating the condition number of a matrix.
113.    cordic, a library which computes a few special functions using the CORDIC algorithm.
114.    correlation, a library which contains examples of statistical correlation functions.
115.    cosine_transform, a library which demonstrates some simple properties of the discrete cosine transform (DCT).
116.    csparse, a library which carries out the direct solution of sparse linear systems, by Timothy Davis.
117.    cube_arbq_rule, a library which returns quadrature rules, with exactness up to total degree 15, over the interior of the symmetric cube in 3D, by Hong Xiao and Zydrunas Gimbutas.
118.    cube_exactness, a library which investigates the polynomial exactness of quadrature rules over the interior of a cube in 3D.
119.    cube_felippa_rule, a library which returns Felippa’s quadratures rules for approximating integrals over the interior of a cube in 3D.
120.    cube_grid, a library which computes a grid of points over the interior of a cube in 3D.
121.    cube_integrals, a library which returns the exact value of the integral of any monomial over the interior of the unit cube in 3D.
122.    cube_monte_carlo, a library which applies a Monte Carlo method to estimate the integral of a function over the interior of the unit cube in 3D.
123.    cycle_brent, a library which carries out an iterated function evaluation, and seeks to determine the nearest element of a cycle, and the cycle’s length, using Brent’s method.
124.    cycle_floyd, a library which carries out an iterated function evaluation, and seeks to determine the nearest element of a cycle, and the cycle’s length, using Floyd’s method.
125.    cyclic_reduction, a library which solves a tridiagonal linear system using cyclic reduction;
126.    diaphony, a program which reads a file of N points in M dimensions and computes its diaphony, a measure of point dispersion.
127.    differ, determines the finite difference coefficients necessary in order to combine function values at known locations to compute an approximation of given accuracy to a derivative of a given order.
128.    dijkstra, a library which implements a simple version of Dijkstra’s minimum distance algorithm for graphs.
129.    dijkstra_openmp, a program which uses OpenMP to parallelize a simple example of Dijkstra’s minimum distance algorithm for graphs.
130.    disk_integrals, a library which returns the exact value of the integral of any monomial over the interior of the unit disk in 2D.
131.    disk_monte_carlo, a library which applies a Monte Carlo method to estimate integrals of a function over the interior of the unit disk in 2D;
132.    disk_quarter_monte_carlo, a library which applies a Monte Carlo method to estimate integrals of a function over the interior of the unit quarter disk in 2D;
133.    disk_rule, a library which computes quadrature rules for the general disk in 2D, that is, the interior of the circle of radius RC and center (XC,YC).
134.    disk01_rule, a library which computes quadrature rules for the unit disk in 2D, that is, the interior of the circle of radius 1 and center (0,0).
135.    divdif, a library which uses divided differences to compute the polynomial interpolant to a given set of data.
136.    doomsday, a library which is given the year, month and day of a date, and uses John Conway’s doomsday algorithm to determine the corresponding day of the week.
137.    dream, a program which implements the DREAM algorithm for accelerating Markov Chain Monte Carlo (MCMC) convergence using differential evolution, using five user functions to define the problem, by Guannan Zhang.
138.    duel_simulation, a program which simulates N repetitions of a duel between two players, each of whom has a known firing accuracy.
139.    edge, a library which defines some test functions in 1D, 2D and 3D for the detection of edges or discontinuities, and using gnuplot to display the curves or surfaces.
140.    eispack, a library which carries out eigenvalue computations. It includes a function to compute the singular value decomposition (SVD) of a rectangular matrix. This library was superseded by LAPACK;
141.    ellipse_grid, a library which computes grid points over the interior of an ellipse in 2D.
142.    ellipse_monte_carlo, a library which uses the Monte Carlo method to estimate the value of integrals over the interior of an ellipse in 2D.
143.    ellipsoid_grid, a library which computes a grid of points over the interior of an ellipsoid in 3D.
144.    ellipsoid_monte_carlo, a library which uses the Monte Carlo method to estimate the value of integrals over the interior of an ellipsoid in M dimensions.
145.    exactness, a library which investigates the exactness of quadrature rules that estimate the integral of a function with a density, such as 1, exp(-x) or exp(-x^2), over an interval such as [-1,+1], [0,+oo) or (-oo,+oo).
146.    f77split, a program which splits a file containing multiple FORTRAN77 routines into separate files;
147.    f90split, a program which splits a file containing multiple FORTRAN90 routines into separate files;
148.    fair_dice_simulation, a program which simulates N tosses of 2 dice, making a histogram of the results.
149.    fastgl, a library which carries out the rapid computation of the Kth value and weight of an N point Gauss-Legendre quadrature rule, by Ignace Bogaert.
150.    fd_predator_prey, a program which solves a pair of predator prey ordinary differential equations (ODE’s) using a finite difference method (FDM) approximation.
151.    fd1d_advection_diffusion_steady, a program which applies the finite difference method (FDM) to solve the steady advection diffusion equation v*ux-k*uxx=0 in one spatial dimension, with constant velocity v and diffusivity k, writing graphics files for processing by gnuplot.
152.    fd1d_advection_ftcs, a program which applies the finite difference method (FDM) to solve the time-dependent advection equation ut = – c * ux in one spatial dimension, with a constant velocity, using the forward time centered space (FTCS) difference method, writing graphics files for processing by gnuplot.
153.    fd1d_advection_lax, a program which applies the finite difference method (FDM) to solve the time-dependent advection equation ut = – c * ux in one spatial dimension, with a constant velocity, using the Lax method to approximate the time derivative, writing graphics files for processing by gnuplot.
154.    fd1d_advection_lax_wendroff, a program which applies the finite difference method (FDM) to solve the time-dependent advection equation ut = – c * ux in one spatial dimension, with a constant velocity, using the Lax-Wendroff method to approximate the time derivative, writing graphics files for processing by gnuplot.
155.    fd1d_burgers_lax, a program which applies the finite difference method (FDM) and the Lax Wendroff method to solve the non-viscous time-dependent Burgers equation in one spatial dimension.
156.    fd1d_burgers_leap, a program which applies the finite difference method (FDM) and the leapfrog approach to solve the non-viscous time-dependent Burgers equation in one spatial dimension.
157.    fd1d_bvp, a program which applies the finite difference method (FDM) to a two point boundary value problem (BVP) in one spatial dimension.
158.    fd1d_heat_explicit, a library which implements a finite difference method (FDM), explicit in time, of the time dependent 1D heat equation;
159.    fd1d_heat_implicit, a program which implements a finite difference method (FDM), implicit in time, of the time dependent 1D heat equation;
160.    fd1d_heat_steady, a program which implements a finite difference method (FDM) for the steady (time independent) 1D heat equation;
161.    fd1d_wave, a program which applies the finite difference method (FDM) to solve the time-dependent wave equation in one spatial dimension.
162.    fd2d_heat_steady, a program which implements a finite difference method (FDM) for the steady (time independent) 2D heat equation;
163.    fem_basis, a library which can define and evaluate finite element method (FEM) basis functions for any degree in an M-dimensional simplex (1D interval, 2D triangle, 3D tetrahedron, and higher dimensional generalizations.)
164.    fem_io, a library which reads or writes FEM files, which describe the nodes, elements, and function values associated with a finite element method (FEM) model;
165.    fem_to_gmsh, a program which reads a pair of FEM files defining node coordinates and elements, of a 1D, 2D or 3D mesh, namely a file of node coordinates and a file of elements defined by node indices, and creates a Gmsh mesh file.
166.    fem_to_medit, a program which reads a pair of FEM files defining node coordinates and elements, of a 2D mesh, namely a file of node coordinates and a file of elements defined by node indices, and creates a corresponding MEDIT mesh file.
167.    fem_to_triangle, a program which reads FEM files defining a 2D mesh of triangles, namely a file of node coordinates and a file of elements defined by node indices, and creates a corresponding pair of node and element files for use by Jonathan Shewchuk’s triangle program.
168.    fem_to_xml, reads a pair of FEM files defining node coordinates and elements, of a 1D, 2D or 3D mesh, namely a file of node coordinates and a file of elements defined by node indices, and creates a corresponding XML file for input to DOLFIN or FENICS.
169.    fem1d, a program which applies the finite element method (FEM), using piecewise linear basis functions, to a linear two point boundary value problem (BVP) in 1D;
170.    fem1d_adaptive, a program which uses an adaptive mesh when applying the finite element method (FEM), with piecewise linear basis functions, to a linear two point boundary value problem (BVP) in 1D;
171.    fem1d_bvp_linear, a program which applies the finite element method (FEM), with piecewise linear elements, to a two point boundary value problem (BVP) in one spatial dimension, and compares the computed and exact solutions with the L2 and seminorm errors.
172.    fem1d_bvp_quadratic, a program which applies the finite element method (FEM), with piecewise quadratic elements, to a two point boundary value problem (BVP) in one spatial dimension, and compares the computed and exact solutions with the L2 and seminorm errors.
173.    fem1d_heat_steady, a program which implements the finite element method (FEM) for the steady (time independent) 1D heat equation;
174.    fem1d_lagrange, a library which sets up the matrices and vectors associated with the finite element method (FEM) solution of a boundary value problem (BVP) -u”+u=f(x), using Lagrange basis polynomials.
175.    fem1d_nonlinear, a program which applies the finite element method (FEM), with piecewise linear basis functions, to a nonlinear two point boundary value problem (BVP) in 1D;
176.    fem1d_pack, a library which contains utilities for 1D finite element method (FEM) calculations.
177.    fem1d_pmethod, a program which applies the p-method version of the finite element method (FEM) to a linear two point boundary value problem (BVP) in 1D;
178.    fem1d_project, a program which projects data into a finite element space, including the least squares approximation of data, or the projection of a finite element method (FEM) solution from one mesh to another.
179.    fem1d_sample, a program which samples a scalar or vector finite element function of one variable, defined by FEM files, returning interpolated values at the sample points.
180.    fem2d_bvp_linear, a program which applies the finite element method (FEM), with piecewise linear elements, to a 2D boundary value problem (BVP) in a rectangle, and compares the computed and exact solutions with the L2 and seminorm errors.
181.    fem2d_bvp_quadratic, a program which applies the finite element method (FEM), with piecewise quadratic elements, to a 2D boundary value problem (BVP) in a rectangle, and compares the computed and exact solutions with the L2 and seminorm errors.
182.    fem2d_bvp_serene, a program which applies the finite element method (FEM), with serendipity elements, to a 2D boundary value problem (BVP) in a rectangle, and compares the computed and exact solutions with the L2 and seminorm errors.
183.    fem2d_pack, a library which implements various 2D finite element method (FEM) calculations;
184.    fem2d_poisson_rectangle, a program which solves the 2D Poisson equation on a rectangle, using the finite element method (FEM), and piecewise quadratic triangular elements.
185.    fem2d_poisson_rectangle_linear, a program which solves the 2D Poisson equation on a rectangle, using the finite element method (FEM), and piecewise linear triangular elements.
186.    feynman_kac_1d, a program which demonstrates the use of the Feynman-Kac algorithm to solve Poisson’s equation in a 1D interval by averaging stochastic paths to the boundary.
187.    feynman_kac_2d, a program which demonstrates the use of the Feynman-Kac algorithm to solve Poisson’s equation in a 2D ellipse by averaging stochastic paths to the boundary.
188.    feynman_kac_3d, a program which demonstrates the use of the Feynman-Kac algorithm to solve Poisson’s equation in a 3D ellipsoid by averaging stochastic paths to the boundary.
189.    fft_openmp, a program which demonstrates the computation of a Fast Fourier Transform (FFT) in parallel, using OpenMP.
190.    fft_serial, a program which computes a Fast Fourier Transform (FFT), and is intended as a starting point for implementing an OpenMP parallel version.
191.    fftpack4, a library which implements the Fast Fourier Transform (FFT) by Paul Swarztrauber and Dick Valent, translated by Andrew Fernandes;
192.    fftw3, programs which illustrate the use of FFTW3, a library of routines for the Fast Fourier Transform (FFT), by Matteo Frigo and Steven Johnson.
193.    file_name_sequence, a program which demonstrates ways to generate a sequence of filenames, which can be useful when generating a sequence of still snapshots to be animated later.
194.    files_multiple, a program which demonstrates how a program can open multiple output files at one time, and write data to any one specific file it chooses.
195.    filon, a library which can approximate integrals in which the integrand includes an oscillatory factor of sin(k*x) or cos(k*x).
196.    filum, a library which performs various operations with files;
197.    fire_serial, a program which simulates a forest fire over a rectangular array of trees, starting at a single random location. It is intended as a starting point for the development of a parallel version.
198.    flood_opengl, a program which uses OpenGL to allow the user to select regions of an image and flood them with color, by Art Wetzel.
199.    floyd, a library which implements Floyd’s algorithm for finding the shortest distance between pairs of nodes on a directed graph.
200.    fn, a library which evaluates elementary and special functions using Chebyshev polynomials; functions include Airy, Bessel I, J, K and Y, beta, confluent hypergeometric, error, gamma, log gamma, Pochhammer, Spence; integrals include hyperbolic cosine, cosine, Dawson, exponential, logarithmic, hyperbolic sine, sine; by Wayne Fullerton.
201.    forest_fire_simulation, a program which models the occurrence of fires in a forest, and displays the status of the forest using X Windows, by Michael Creutz.
202.    freefem++_msh_io, a library which can read and write files used by the FreeFem++ finite element program to store mesh information.
203.    gcc_intrinsics, a program which demonstrates or tests some of the intrinsic functions made available by the Gnu gcc compiler for C.
204.    gcc_quadmath, a program which illustrates the use of quadruple precision real arithmetic, as provided on some systems by the gcc compiler for C.
205.    gegenbauer_cc, a library which computes the Gegenbauer weighted integral of a function f(x) using a Clenshaw-Curtis approach.
206.    gegenbauer_polynomial, a library which evaluates the Gegenbauer polynomial and associated functions.
207.    geometry, a library which performs geometric calculations in 2, 3 and M dimensional space, including the computation of angles, areas, containment, distances, intersections, lengths, and volumes.
208.    gmsh_io, a library which can read or write some of the files created by the Gmsh program for 1D, 2D or 3D meshes used by the finite element method (FEM).
209.    gmsh_to_fem, a program which reads a mesh data file created by the GMSH program and writes a pair of node and element files that correspond to the FEM format.
210.    gnuplot, programs which illustrate how a program can write data and command files so that gnuplot can create plots of the program results.
211.    gnuplot_i, a library which allows an executing C, C++ or FORTRAN program to interact with the gnuplot graphics program, by Nicholas Devillard.
212.    gnuplot_i_examples, programs which demonstrate the use of the gnuplot_i library for interactive runtime gnuplot graphics.
213.    gprof, programs which illustrate the use of the gprof program performance monitor;
214.    graphchk, a program which checks that a metis graph file has the proper format;
215.    graphics_examples, programs which illustrate how various kinds of data can be displayed and analyzed graphically.
216.    grid, a library which randomly selects N distinct points from a uniform grid in the unit hypercube in M-dimensional space.
217.    haar, a library which computes the Haar transform of data.
218.    halton, a library which computes elements of a Halton Quasi Monte Carlo (QMC) sequence, using a simple interface.
219.    hammersley, a library which computes elements of a Hammersley Quasi Monte Carlo (QMC) sequence, using a simple interface.
220.    hb_io, a library which reads and writes files in the Harwell Boeing (HB) sparse matrix format;
221.    heat_mpi, a program which demonstrates the use of the Message Passing Interface (MPI), by solving the 1D time dependent heat equation.
222.    heated_plate, a program which solves the steady state heat equation in a 2D rectangular region, and is intended as a starting point for implementing an OpenMP parallel version.
223.    heated_plate_openmp, a program which solves the steady (time independent) heat equation in a 2D rectangular region, using OpenMP to run in parallel.
224.    hello, a program which prints out “Hello, world!”.
225.    hello_mpi, a program which prints out “Hello, world!” using MPI for parallel programming.
226.    hello_openmp, a program which prints out “Hello, world!” within the OpenMP parallel programming environment.
227.    hermite, a library which computes the Hermite interpolant, a polynomial that matches function values and derivatives.
228.    hermite_cubic, a library which can compute the value, derivatives or integral of a Hermite cubic polynomial, or manipulate an interpolant made up of piecewise Hermite cubic polynomials.
229.    hermite_exactness, a program which tests the polynomial exactness of Gauss-Hermite quadrature rules for approximating the integral of a function with density exp(-x^2) over the interval (-oo,+oo).
230.    hermite_polynomial, a library which evaluates the physicist’s Hermite polynomial, the probabilist’s Hermite polynomial, the Hermite function, and related functions.
231.    hermite_product_polynomial, a library which defines Hermite product polynomials, creating a multivariate polynomial as the product of univariate Hermite polynomials.
232.    hermite_rule, a program which computes and writes out a Gauss-Hermite quadrature rule for approximating the integral of a function with density exp(-x^2) over the interval (-oo,+oo).
233.    hermite_test_int, a library which defines test integrands for Hermite integrals with density exp(-x^2) over the interval (-oo,+oo).
234.    high_card_simulation, a program which simulates a situation in which you see the cards in a deck one by one, and must select the one you think is the highest and stop; the program uses gnuplot to create a graph of the results.
235.    hilbert_curve, a library which computes the sequence of discrete Hilbert curves whose limit is a space-filling curve.
236.    histogram_data_2d_sample, a program which demonstrates how to construct a Probability Density Function (PDF) from sample data over a 2D domain, and then to use that PDF to create new samples.
237.    hyperball_integrals, a library which returns the exact value of the integral of any monomial over the interior of the unit hyperball in M dimensions.
238.    hyperball_monte_carlo, a library which applies a Monte Carlo method to estimate the integral of a function over the interior of the unit ball in M dimensions;
239.    hyperball_volume_monte_carlo, a program which applies a Monte Carlo procedure to estimate the volume of the unit ball in M dimensions;
240.    hypercube_exactness, a program which tests the polynomial exactness of a quadrature rule over the interior of the unit hypercube in M dimensions.
241.    hypercube_grid, a library which computes a grid of points over the interior of a hypercube in M dimensions.
242.    hypercube_integrals, a library which returns the exact value of the integral of any monomial over the interior of the unit hypercube in M dimensions.
243.    hypercube_monte_carlo, a library which applies a Monte Carlo method to estimate the integral of a function over the interior of the unit hypercube in M dimensions.
244.    hypersphere_integrals, a library which returns the exact value of the integral of any monomial over the surface of the unit hypersphere in M dimensions.
245.    hypersphere_monte_carlo, a library which applies a Monte Carlo method to estimate the integral of a function on the surface of the unit sphere in M dimensions;
246.    hypersphere_properties, a library which carries out various operations for an M dimensional hypersphere, including converting between Cartesian and spherical coordinates, stereographic projection, sampling the surface of the sphere, and computing the surface area and volume.
247.    i4lib, a library which contains many utility routines, using single precision integer (I4) arithmetic.
248.    i8lib, a library which contains many utility routines, using double precision integer (I8) arithmetic.
249.    ice_io, a library which can read or write an ICE dataset, which defines a 3D grid, using the NETCDF file format.
250.    ice_to_mesh, a C program which reads a NETCDF file containing an ICE dataset and rewrites the information as a MESH file.
251.    image_components, a library which seeks the connected nonzero or nonblack components of an image or integer array.
252.    image_denoise, a library which applies simple filtering operations to a noisy image.
253.    image_edge, a library which demonstrates a simple procedure for edge detection in images.
254.    index, a library which converts a multidimensional vector index to a one-dimensional vector index; it can handle zero and one based indexing schemes, as well as column major and row major conventions.
255.    interp, a library which can be used for parameterizing and interpolating data;
256.    is_serial, a program which is a serial version of the NAS Parallel Benchmark Integer Sort (IS).
257.    isbn, a library which can determine the check digit for an International Standard Book Number or report whether a given ISBN is valid.
258.    ising_2d_simulation, a program which simulates evolution of a 2D array of positive and negative charges, each of which is likely to flip to be in agreement with neighbors, using gnuplot to display the initial and final configurations.
259.    jacobi, a program which implements the Jacobi iteration for the iterative solution of linear systems.
260.    jacobi_eigenvalue, a library which implements the Jacobi iteration for the iterative determination of the eigenvalues and eigenvectors of a real symmetric matrix.
261.    jacobi_polynomial, a library which evaluates the Jacobi polynomial and associated functions.
262.    kmetis, a program which uses the metis library to partition the nodes of a graph in a balanced way, useful for parallel processing;
263.    knapsack_01, a library which uses brute force to solve small versions of the 0/1 knapsack problem;
264.    kronrod, a library which can compute a Gauss and Gauss-Kronrod pair of quadrature rules of arbitrary order, by Robert Piessens, Maria Branders.
265.    l4lib, a library which contains many utility routines, using one byte logical (L4) variables.
266.    ladders, a program which seeks to transform one five letter word into another, by changing one letter at a time, using only legitimate English words. This puzzle was invented by Lewis Carroll, who called it “Doublets”, but it is also known as “Word Ladders” or “Word Gold”. The program is by Donald Knuth.
267.    lagrange_approx_1d, a library which defines and evaluates the Lagrange polynomial p(x) of degree m which approximates a set of nd data points (x(i),y(i)).
268.    lagrange_interp_1d, a library which defines and evaluates the Lagrange polynomial p(x) which interpolates a set of data depending on a 1D argument, so that p(x(i)) = y(i).
269.    lagrange_interp_2d, a library which defines and evaluates the Lagrange polynomial p(x,y) which interpolates a set of data depending on a 2D argument that was evaluated on a product grid, so that p(x(i),y(j)) = z(i,j).
270.    lagrange_interp_nd, a library which defines and evaluates the Lagrange polynomial p(x) which interpolates a set of data depending on a multidimensional argument that was evaluated on a product grid, so that p(x(i)) = z(i).
271.    laguerre_exactness, a program which tests the polynomial exactness of Gauss-Laguerre quadrature rules for integrating functions with density exp(-x) over [0,+oo).
272.    laguerre_polynomial, a library which evaluates the Laguerre polynomial, the generalized Laguerre polynomials, and the Laguerre function.
273.    laguerre_rule, a program which computes and writes out a Gauss-Laguerre quadrature rule for approximating the integral of a function with density exp(-x) over the interval [0,+oo).
274.    laguerre_test_int, a library which implements test problems for approximate integration over a semi-infinite interval, often carried out using Gauss-Laguerre quadrature.
275.    laplace_mpi, a program which solves Laplace’s equation on a rectangle, using the Message Passing Interface (MPI) for parallel execution.
276.    laplacian, a library which carries out computations related to the discrete Laplacian operator, including full or sparse evaluation, evaluation for unequally spaced data sampling points, application to a set of data samples, solution of associated linear systems, eigenvalues and eigenvectors, and extension to 2D and 3D geometry.
277.    latin_cover, a library which produces N Latin squares which cover an NxN square, or NxN Latin cubes which cover an NxNxN cube.
278.    latin_random, a library which computes Latin Random Squares of N points in M dimensions;
279.    latin_random_dataset, a program which creates a Latin Random Hypercube dataset;
280.    latinize, a library which adjusts N points in M dimensions to form a Latin Hypercube;
281.    lebesgue, a library which is given a set of nodes in 1D, and plots the Lebesgue function, and estimates the Lebesgue constant, which measures the maximum magnitude of the potential error of Lagrange polynomial interpolation.
282.    legendre_exactness, a program which tests the monomial exactness of quadrature rules for the Legendre problem of integrating a function with density 1 over the interval [-1,+1].
283.    legendre_polynomial, a library which evaluates the Legendre polynomial and associated functions.
284.    legendre_product_polynomial, a library which defines Legendre product polynomials, creating a multivariate polynomial as the product of univariate Legendre polynomials.
285.    legendre_rule, a program which writes out a Gauss-Legendre quadrature rule of given order to integrate a function with density 1 over the interval [-1,+1].
286.    legendre_rule_fast, a program which uses a fast (order N) algorithm to compute a Gauss-Legendre quadrature rule of given order to integrate a function with density 1 over the interval [-1,+1].
287.    legendre_shifted_polynomial, a library which evaluates the shifted Legendre polynomial, with the domain [0,1].
288.    life_opengl, a program which uses OpenGL to display the evolution of John Conway’s Game of Life, by Simon Green.
289.    life_serial, a program which computes a few steps of the evolution of John Conway’s Game of Life, intended as a starting point for implementing a parallel version.
290.    lights_out_opengl, a program which sets up a Lights Out game and allows the user to solve it, using the OpenGL graphics window.
291.    line_cvt_lloyd, a library which applies Lloyd’s iteration repeatedly to a set of N points, to compute a Centroidal Voronoi Tessellation (CVT) over the interior of a line segment in 1D.
292.    line_fekete_rule, a library which estimates the location of N Fekete points, for polynomial interpolation or quadrature, over the interior of a line segment in 1D.
293.    line_felippa_rule, a library which returns Felippa’s quadratures rules for approximating integrals over the interior of a line segment in 1D.
294.    line_grid, a library which computes a grid of points over the interior of a line segment in 1D.
295.    line_integrals, a library which returns the exact value of the integral of any monomial over the length of the unit line in 1D.
296.    line_monte_carlo, a library which applies a Monte Carlo method to estimate the integral of a function over the length of the unit line in 1D.
297.    line_ncc_rule, a library which computes a Newton Cotes (Closed) (NCC) quadrature rule, using equally spaced points, over the interior of a line segment in 1D.
298.    line_nco_rule, a library which computes a Newton Cotes Open (NCO) quadrature rule, using equally spaced points, over the interior of a line segment in 1D.
299.    linpack, a library which solves linear systems for a variety of matrix storage schemes, real or complex arithmetic, and single or double precision. The original version of this library is by Jack Dongarra, Jim Bunch, Cleve Moler, Pete Stewart.
300.    linpack_bench, a program which is a version of the LINPACK benchmark program;
301.    linpack_d, a library which factors matrices in a variety of formats, and solving the associated linear systems, using double precision real arithmetic; it includes a function to compute the singular value decomposition (SVD) of a rectangular matrix. The original version of this library is by Jack Dongarra, Jim Bunch, Cleve Moler, Pete Stewart.
302.    linpack_s, a library which factors matrices in a variety of formats, and solving the associated linear systems, using single precision real arithmetic; it includes a function to compute the singular value decomposition (SVD) of a rectangular matrix. The original version of this library is by Jack Dongarra, Jim Bunch, Cleve Moler, Pete Stewart.
303.    llsq, a library which solves the simple linear least squares (LLS) problem of finding the formula of a straight line y=a*x+b which minimizes the root-mean-square error to a set of N data points.
304.    lobatto_polynomial, a library which evaluates Lobatto polynomials similar to Legendre polynomials except that they are 0 at both endpoints.
305.    local_min_rc, a library which finds a local minimum of a scalar function of a scalar variable, without the use of derivative information, using reverse communication (RC), by Richard Brent.
306.    log_normal, a library which returns quantities related to the log normal Probability Distribution Function (PDF).
307.    log_normal_truncated_ab, a library which returns quantities related to the log normal Probability Distribution Function (PDF) truncated to the interval [A,B].
308.    lorenz_ode, a program which approximates solutions to the Lorenz system of ordinary differential equations (ODEs), creating output files that can be displayed by gnuplot.
309.    luhn, a library which can compute the Luhn check digit for a string, or verify a string, as used for error detection in credit card numbers.
310.    machar, a library which dynamically computes the values of various machine characteristic constants by William Cody;
311.    machine, a library which returns tabulated values of the constants associated with computer arithmetic;
312.    makefiles, programs which illustrate the use of makefiles for maintaining a software project;
313.    mandelbrot, a program which generates an ASCII Portable Pixel Map (PPM) image of the Mandelbrot set;
314.    mandelbrot_ascii, a program which generates an ASCII text image of the Mandelbrot set, using just two lines of C code.
315.    mandelbrot_openmp, a program which generates an ASCII Portable Pixel Map (PPM) image of the Mandelbrot fractal set, using OpenMP for parallel execution;
316.    mandelbrot_ppm, a program which generates a binary Portable Pixel Map (PPM) image of the Mandelbrot set, by Eric Weeks.
317.    matmul, a program which carries out a matrix multiplication benchmark;
318.    matrix_exponential, a library which demonstrates some simple approaches to the problem of computing the exponential of a matrix.
319.    md, a program which carries out a molecular dynamics (MD) simulation, and is intended as a starting point for implementing an OpenMP parallel version.
320.    md_openmp, a program which carries out a molecular dynamics (MD) simulation in parallel using OpenMP.
321.    medit_io, a library which can read or write files used by the MEDIT program, which can be used to define the a mesh associated with the finite element method (FEM) in 2D or 3D, using triangles, quadrilaterals, tetrahedrons or hexahedrons.
322.    medit_to_fem, a program which reads a mesh file created by the MEDIT program and writes a corresponding pair of node and element files that correspond to the FEM format.
323.    memory_test, a program which tests the memory available on the computer by declaring and using big vectors.
324.    mesh_bandwidth, a program which returns the geometric bandwidth associated with a mesh of elements of any order and in a space of M dimensions.
325.    mesh_io, a library which reads or writes MESH files defining a finite element mesh.
326.    mesh_to_ice, a program which reads a MESH file containing an ICE dataset and rewrites the information as a NETCDF file.
327.    mesh2dual, a program which used the metis library to convert a finite element mesh to a dual graph.
328.    mesh2nodal, a program which uses the metis library to convert a mesh associated with the finite element method (FEM) to a nodal graph.
329.    metis, a library which partitions the nodes of a graph or the elements of a mesh, for division among a number of parallel processes, or to reorder the variables in a sparse matrix to minimize fillin;
330.    mgmres, a library which applies the restarted Generalized Minimum Residual (GMRES) algorithm to solve a sparse linear system, using compressed row (CR) or sparse triplet (ST) format, by Lili Ju.
331.    mgs, a library which is an example of legacy code, which the student is encouraged to study, understand, and document. This example is due to Diane O’Leary.
332.    mixed, programs which illustrate the use of mixed language programming in which the main routine is written in C;
333.    mm_io, a library which reads and writes a Matrix Market (MM) Sparse Matrix File;
334.    monomial, a library which enumerates, lists, ranks, unranks and randomizes multivariate monomials in a space of M dimensions, with total degree less than N, equal to N, or lying within a given range.
335.    monomial_value, a library which evaluates a monomial in M dimensions.
336.    monte_carlo_rule, a program which generates a dataset of N random M-dimensional points, regards it as a quadrature rule for the unit hypercube, and writes out three files of information.
337.    mpi, programs which illustrate the use of the Message Passing Interface (MPI) library, for parallel programming;
338.    mpi_stubs, a library which may be used if a parallel program is to be compiled, loaded and run in a serial machine.
339.    mri_to_ascii, a program which converts the binary data in a Magnetic Resonance Imaging (MRI) file to ASCII text.
340.    mri_to_pgm, a program which converts the binary data in a Magnetic Resonance Imaging (MRI) file to a sequence of Portable Gray Map (PGM) image files.
341.    multigrid_poisson_1d, a library which applies the multigrid method to a discretized version of the 1D Poisson equation.
342.    multitask_mpi, a program which demonstrates how to multitask, that is, to execute several unrelated and distinct tasks simultaneously, using MPI for parallel execution.
343.    multitask_openmp, a program which demonstrates how to multitask, that is, to execute several unrelated and distinct tasks simultaneously, using OpenMP for parallel execution.
344.    mxm, a program which sets up a matrix multiplication problem A=B*C of arbitrary size, and compares the time required for ijk, ikj, jik, jki, kij and kji orderings of the loops.
345.    mxm_openmp, a program which computes a dense matrix product C=A*B, using OpenMP for parallel execution.
346.    mxm_serial, a program which sets up a matrix multiplication problem A=B*C, intended as a starting point for implementing a parallel version.
347.    naca, a library which can take the parameters of certain NACA airfoils and return the coordinates of a sequence of points that outline the wing shape. The points can be plotted with gnuplot.
348.    nas, a program which runs the NASA kernel benchmark.
349.    navier_stokes_2d_exact, a library which evaluates an exact solution to the incompressible time-dependent Navier-Stokes equations (NSE) over an arbitrary domain in 2D.
350.    navier_stokes_3d_exact, a library which evaluates an exact solution to the incompressible time-dependent Navier-Stokes equations (NSE) over an arbitrary domain in 3D.
351.    nearest_interp_1d, a library which interpolates a set of data using a piecewise constant interpolant defined by the nearest neighbor criterion, creating graphics files for processing by gnuplot.
352.    netcdf, programs which read and write netcdf files.
353.    newton_interp_1d, a library which finds a polynomial interpolant to data using Newton divided differences.
354.    nintlib, a library which implements approximate integration (quadrature) in M dimensions;
355.    normal, a library which implements random number generators (RNG’s) for normally distributed values.
356.    nsasm, a library which computes the jacobian matrix associated with a finite element method (FEM) approximation of the incompressible steady Navier-Stokes equations (NSE) in 2D, and to store these as a sparse matrix, by Per-Olof Persson.
357.    obj_to_ply, a program which converts a 3D graphics file from OBJ format to PLY format format, by Greg Turk.
358.    ode, a library which solves a system of ordinary differential equations (ODEs), by Shampine and Gordon;
359.    ode_moshier, a library which implements the Adams-Bashforth-Moulton and Runge-Kutta (RK) methods of solving systems of ordinary differential equations (ODE’s), by Steven Moshier.
360.    oemetis, a program which uses the metis library to reorder the variables in a sparse matrix.
361.    onmetis, a program, using the metis library, which can reorder the variables in a sparse matrix.
362.    opengl, programs which illustrate the use of the OpenGL graphics library;
363.    openmp, programs which illustrate the use of the OpenMP interface for parallel programming shared memory system;
364.    openmp_rcc, programs which illustrate how a C program, using OpenMP, can be compiled and run in batch mode on the FSU High Performance Computing (HPC) cluster operated by the Research Computing Center (RCC).
365.    openmp_stubs, a library which is a dummy implementation of the OpenMP routines, and can be used to compile, load, and run a program using OpenMP on a system which does not have OpenMP installed.
366.    optimize, a program which looks at the use of automatic optimization by the compiler to make the executable code run faster.
367.    ornstein_uhlenbeck, a library which approximates solutions of the Ornstein-Uhlenbeck stochastic ordinary differential equation (SODE) using the Euler method, the Euler-Maruyama method, and the Milstein method, and creating graphics files for processing by gnuplot.
368.    owens, a library which evaluates Owen’s T function;
369.    padua, a library which returns the coordinates of the 2D Padua points, as well as interpolation weights or quadrature weights, and images of the points in gnuplot graphics files.
370.    partdmesh, a program, using the metis library, which can partition a finite element mesh after constructing the dual graph.
371.    partition_problem, a library which seeks solutions of the partition problem, splitting a set of integers into two subsets with equal sum.
372.    partnmesh, a program, using the metis library, which can partition a mesh used by the finite element method (FEM) after constructing the nodal graph.
373.    patterson_rule, a program which returns the points and weights of a 1D Gauss-Patterson quadrature rule of order 1, 3, 7, 15, 31, 63, 127, 255 or 511.
374.    pbma_io, a library which reads or writes an ASCII Portable Bit Map (PBM) bit map graphics file;
375.    pbmb_io, a library which reads or writes a binary Portable Bit Map (PBM) graphics file;
376.    pbmlib, a library which reads or writes graphics files in the Portable Bit Map (PBM) format;
377.    pce_burgers, a program which solves a version of the time-dependent viscous Burgers equation, with uncertain viscosity, using a polynomial chaos expansion in terms of Hermite polynomials, by Gianluca Iaccarino.
378.    pce_ode_hermite, a program which sets up a simple scalar ordinary differential equation (ODE) for exponential decay with an uncertain decay rate, using a polynomial chaos expansion in terms of Hermite polynomials.
379.    pcl_read, a program which reads a PCL file and extracts the numeric data;
380.    pdflib, a library which evaluates Probability Density Functions (PDF’s) and produces random samples from them, including beta, binomial, chi, exponential, gamma, inverse chi, inverse gamma, multinomial, normal, scaled inverse chi, and uniform.
381.    peri1d, a program which sets up and solves a 1D time-dependent peridynamics problem, by Miroslav Stoyanov;
382.    peri2d, a program which sets up and solves a 2D time-dependent peridynamics problem, by Miroslav Stoyanov;
383.    pgma_io, a library which reads or writes ASCII Portable Gray Map (PGM) 2D graphics files;
384.    pgmb_io, a library which reads or writes a binary Portable Gray Map (PGM) 2D graphics file;
385.    piecewise_linear_product_integral, a library which calculates the exact value of the integral of the product of two piecewise linear functions f(x) and g(x).
386.    pig_latin, a program which converts its input to Pig Latin; a winner of the International Obfuscated C Code Competition in the Most Humorous category, by Don Dodson;
387.    pink_noise, a library which computes a pink noise signal obeying a 1/f power law.
388.    plato_ply, a program which writes a PLY graphics file for any platonic solid, by Greg Turk.
389.    ply_io, a library which reads or writes a 3D graphics file in PLY format, by Greg Turk;
390.    ply_to_iv, a program which converts a 3D graphics file from PLY format to Inventor (IV) format, by Greg Turk.
391.    ply_to_obj, a program which converts a 3D graphics file from PLY format to OBJ format, by Greg Turk.
392.    point_merge, a library which considers N points in M dimensional space, and counts or indexes the unique or tolerably unique items.
393.    poisson_mpi, a program which computes a solution to the Poisson equation in a rectangle, using the Jacobi iteration to solve the linear system, and MPI to carry out the Jacobi iteration in parallel.
394.    poisson_openmp, a program which computes a solution to the Poisson equation in a rectangle, using the Jacobi iteration to solve the linear system, and OpenMP to carry out the Jacobi iteration in parallel.
395.    poisson_serial, a program which computes a solution to the Poisson equation in a rectangle, and is intended as the starting point for the creation of a parallel version.
396.    poisson_simulation, a library which simulates a Poisson process in which events randomly occur with an average waiting time of Lambda, creating graphics files for processing by gnuplot.
397.    polpak, a library which evaluates a variety of mathematical functions, including Chebyshev, Gegenbauer, Hermite, Jacobi, Laguerre, Legendre polynomials, and the Collatz sequence.
398.    polygon_grid, a library which generates a grid of points over the interior of a polygon in 2D.
399.    polygon_integrals, a library which returns the exact value of the integral of any monomial over the interior of a polygon in 2D.
400.    polygon_monte_carlo, a library which applies a Monte Carlo method to estimate the integral of a function over the interior of a polygon in 2D.
401.    polygon_properties, a library which computes properties of an arbitrary polygon in the plane, defined by a sequence of vertices, including interior angles, area, centroid, containment of a point, convexity, diameter, distance to a point, inradius, lattice area, nearest point in set, outradius, uniform sampling.
402.    polygon_triangulate, a library which triangulates a possibly nonconvex polygon in 2D, and which can use gnuplot to display the external edges and internal diagonals of the triangulation.
403.    polynomial, a library which adds, multiplies, differentiates, evaluates and prints multivariate polynomials in a space of M dimensions.
404.    power_method, a library which carries out the power method for finding a dominant eigenvalue and its eigenvector.
405.    power_rule, a program which constructs a power rule, that is, a product quadrature rule from identical 1D factor rules.
406.    ppma_io, a library which reads or writes an ASCII Portable Pixel Map (PPM) 2D graphics file;
407.    ppmb_io, a library which reads or writes a binary Portable Pixel Map (PPM) 2D graphics file;
408.    praxis, a library which minimizes a scalar function of several variables, without requiring derivative information, by Richard Brent.
409.    prime_mpi, a program which counts the number of primes between 1 and N, using MPI for parallel execution.
410.    prime_openmp, a program which counts the number of primes between 1 and N, using OpenMP for parallel execution.
411.    prime_serial, a program which counts the number of primes between 1 and N, and is intended as a starting point for a parallel version.
412.    prob, a library which evaluates, samples, inverts, and characterizes a number of Probability Density Functions (PDF’s) and Cumulative Density Functions (CDF’s), including anglit, arcsin, benford, birthday, bernoulli, beta_binomial, beta, binomial, bradford, burr, cardiod, cauchy, chi, chi squared, circular, cosine, deranged, dipole, dirichlet mixture, discrete, empirical, english sentence and word length, error, exponential, extreme values, f, fisk, folded normal, frechet, gamma, generalized logistic, geometric, gompertz, gumbel, half normal, hypergeometric, inverse gaussian, laplace, levy, logistic, log normal, log series, log uniform, lorentz, maxwell, multinomial, nakagami, negative binomial, normal, pareto, planck, poisson, power, quasigeometric, rayleigh, reciprocal, runs, sech, semicircular, student t, triangle, uniform, von mises, weibull, zipf.
413.    product_rule, a program which creates an M-dimensional quadrature rule from a product of distinct 1d quadrature rules;
414.    pthreads, programs which illustrate the use of the POSIX thread library to carry out parallel program execution.
415.    pwl_approx_1d, a library which approximates a set of data using a piecewise linear function.
416.    pwl_interp_1d, a library which interpolates a set of data using a piecewise linear function. creating graphics files for processing by gnuplot.
417.    pwl_interp_2d, a library which evaluates a piecewise linear interpolant to data defined on a regular 2D grid.
418.    pwl_interp_2d_scattered, a library which evaluates a piecewise linear interpolant to data which is available at an irregularly arranged set of points.
419.    pyramid_exactness, a program which investigates the polynomial exactness of a quadrature rule over the interior of the unit pyramid in 3D.
420.    pyramid_felippa_rule, a library which returns Felippa’s quadratures rules for approximating integrals over the interior of a pyramid in 3D.
421.    pyramid_grid, a library which computes a grid of points over the interior of the unit pyramid in 3D;
422.    pyramid_integrals, a library which returns the exact value of the integral of any monomial over the interior of the unit pyramid in 3D.
423.    pyramid_monte_carlo, a library which applies a Monte Carlo method to estimate integrals of a function over the interior of the unit pyramid in 3D;
424.    pyramid_rule, a program which computes a quadrature rule over the interior of the unit pyramid in 3D.
425.    qr_solve, a library which computes the linear least squares (LLS) solution of a system A*x=b.
426.    quad_mpi, a program which applies a quadrature rule to estimate an integral, working in parallel by using MPI;
427.    quad_openmp, a program which applies a quadrature rule to estimate an integral over a 1D interval, using OpenMP for parallel execution;
428.    quad_serial, a program which applies a quadrature rule to estimate an integral, intended as a starting point for parallelization exercises.
429.    quad2d_openmp, a program which applies a product quadrature rule to estimate an integral over a 2D rectangle, using OpenMP for parallel execution;
430.    quad2d_serial, a program which applies a product quadrature rule to estimate an integral over a 2D rectangle, intended as a starting point for parallelization exercises.
431.    quadmom, a library which computes a Gaussian quadrature rule for a weight function rho(x) based on the Golub-Welsch procedure that only requires knowledge of the moments of rho(x).
432.    quadrature_golub_welsch, a library which computes the points and weights of a Gaussian quadrature rule using the Golub-Welsch procedure.
433.    quadrature_least_squares, a library which computes weights for “sub-interpolatory” quadrature rules, that is, it estimates integrals by integrating a polynomial that approximates the function data in a least squares sense.
434.    quadrature_weights_vandermonde, a library which computes the weights of a quadrature rule using the Vandermonde matrix, assuming that the points have been specified.
435.    quadrature_weights_vandermonde_2d, a library which computes the weights of a 2D quadrature rule using the Vandermonde matrix, assuming that the points have been specified.
436.    quadrule, a library which defines quadrature rules for approximating integrals;
437.    r4lib, a library which contains many utility routines, using single precision real (R4) arithmetic.
438.    r83, a library which contains linear algebra routines for R83 matrices (real, 64 bit, tridiagonal 3xN format).
439.    r83_np, a library which contains linear algebra routines for R83_NP matrices (real, 64 bit, tridiagonal 3xN format, nonpivoting factorization).
440.    r83p, a library which contains linear algebra routines for R83P matrices (real, 64 bit, tridiagonal periodic format).
441.    r83s, a library which contains linear algebra routines for R83S matrices (real, 64 bit, tridiagonal scalar format).
442.    r83t, a library which contains linear algebra routines for R83t matrices (real, 64 bit, tridiagonal Mx3 format).
443.    r83v, a library which contains linear algebra routines for R83V matrices (real, 64 bit, tridiagonal three vector format).
444.    r85, a library which contains linear algebra routines for R85 matrices (real, 64 bit, pentadiagonal format).
445.    r8bb, a library which contains linear algebra routines for R8BB matrices (real, 64 bit, border banded format).
446.    r8blt, a library which contains linear algebra routines for R8BLT matrices (real, 64 bit, band lower triangular format).
447.    r8bto, a library which contains linear algebra routines for R8BTO matrices (real, 64 bit, block Toeplitz format).
448.    r8but, a library which contains linear algebra routines for R8BUT matrices (real, 64 bit, band upper triangular format).
449.    r8cb, a library which contains linear algebra routines for R8CB matrices (real, 64 bit, Compressed Band format).
450.    r8cbb, a library which contains linear algebra routines for R8CBB matrices (real, 64 bit, Compressed Border Banded format).
451.    r8cc, a library which contains linear algebra routines for R8CC matrices (real, 64 bit, Compressed Column (Colptr,Row,Value) format).
452.    r8ci, a library which contains linear algebra routines for R8CI matrices (real, 64 bit, circulant format).
453.    r8col, a library which contains utility routines for R8COL’s, that is, double precision real MxN arrays, considered as N column vectors, each of length M. The data may be thought of as a matrix of multiple columns, and many operations will be carried out columnwise.
454.    r8gb, a library which contains linear algebra routines for R8GB matrices (real, 64 bit, General Banded format).
455.    r8gd, a library which contains linear algebra routines for R8GD matrices (real, 64 bit, general diagonal format).
456.    r8ge, a library which contains linear algebra routines for R8GE matrices (real, 64 bit, General format).
457.    r8ge_np, a library which contains nonpivoting linear algebra routines for R8GE_NP matrices (real, 64 bit, General nonpivoting format).
458.    r8lib, a library which contains many utility routines, using double precision real (R8) arithmetic.
459.    r8lt, a library which contains linear algebra routines for R8LT matrices (real, 64 bit, lower triangular format).
460.    r8ltt, a library which contains linear algebra routines for R8LTT matrices (real, 64 bit, lower triangular Toeplitz format).
461.    r8ncf, a library which contains linear algebra routines for R8NCF matrices (real, 64 bit, nonsymmetric coordinate format).
462.    r8pbl, a library which contains linear algebra routines for R8PBL matrices (real, 64 bit, positive definite symmetric band lower format).
463.    r8pbu, a library which contains linear algebra routines for R8PBU matrices (real, 64 bit, positive definite symmetric band upper format).
464.    r8po, a library which contains linear algebra routines for R8PO matrices (real, 64 bit, positive definite symmetric format).
465.    r8pp, a library which contains linear algebra routines for R8PP matrices (real, 64 bit, positive definite symmetric packed format).
466.    r8ri, a library which contains linear algebra routines for R8RI matrices (real, 64 bit, row-indexed format).
467.    r8row, a library which contains utility routines for R8ROW’s, that is, double precision real MxN arrays, considered as M row vectors, each of length N. The data may be thought of as a matrix of multiple rows, and many operations will be carried out rowwise.
468.    r8s3, a library which contains linear algebra routines for R8S3 matrices (real, 64 bit, SLAP triad (I,J,AIJ) format).
469.    r8sd, a library which contains linear algebra routines for R8SD matrices (real, 64 bit, symmetric diagonal format).
470.    r8sm, a library which contains linear algebra routines for R8SM matrices (real, 64 bit, Sherman-Morrison A-u*v’ format).
471.    r8sp, a library which contains linear algebra routines for R8SP matrices (real, 64 bit, SLAP triad (I,J,AIJ) format).
472.    r8sr, a library which carries out linear algebra operations for R8SR matrices (real, 64 bit, diagonal + compressed row offdiagonal format).
473.    r8ss, a library which carries out linear algebra operations for R8SS matrices (real, 64 bit, symmetric skyline format).
474.    r8sto, a library which contains linear algebra routines for R8STO matrices (real, 64 bit, symmetric Toeplitz N format).
475.    r8to, a library which contains linear algebra routines for R8TO matrices (real, 64 bit, Toeplitz 2*N-1 format).
476.    r8ut, a library which contains linear algebra routines for R8UT matrices (real, 64 bit, upper triangular format).
477.    r8vm, a library which contains linear algebra routines for R8VM matrices (real, 64 bit, Vandermonde format).
478.    rand48, a program which demonstrates the rand48 family of random number generators (RNG’s) available in the C/C++ standard library.
479.    randlc, a library which implements a random number generator (RNG) used by the NAS Benchmark programs.
480.    random_data, a library which uses a random number generator (RNG) to sample points for various probability distributions, spatial dimensions, and geometries, including the M-dimensional cube, ellipsoid, simplex and sphere.
481.    random_mpi, a program which demonstrates one way to generate the same sequence of random numbers for both sequential execution and parallel execution under MPI.
482.    random_openmp, a program which illustrates how a parallel program using OpenMP can generate multiple distinct streams of random numbers.
483.    random_sorted, a library which generates vectors of random values which are already sorted.
484.    ranlib, a library which produces random samples from Probability Density Functions (PDF’s), including Beta, Chi-square Exponential, F, Gamma, Multivariate normal, Noncentral chi-square, Noncentral F, Univariate normal, random permutations, Real uniform, Binomial, Negative Binomial, Multinomial, Poisson and Integer uniform, by Barry Brown and James Lovato.
485.    rbf_interp_1d, a library which defines and evaluates radial basis function (RBF) interpolants to 1D data.
486.    rbf_interp_2d, a library which defines and evaluates radial basis function (RBF) interpolants to 2D data.
487.    rbf_interp_nd, a library which defines and evaluates radial basis function (RBF) interpolants to M-dimensional data.
488.    rbox, a program which generates random sets of points for testing computational geometry algorithms;
489.    reactor simulation, a program which is a simple Monte Carlo simulation of the shielding effect of a slab of a certain thickness in front of a neutron source. This program was provided as an example with the book “Numerical Methods and Software.”
490.    ring_mpi, a program which uses the MPI parallel programming environment, and measures the time necessary to copy a set of data around a ring of processes.
491.    rk4, a library which applies the fourth order Runge-Kutta (RK) algorithm to estimate the solution of an ordinary differential equation (ODE) at the next time step.
492.    rkf45, a library which applies the Runge-Kutta-Fehlberg (RKF) algorithm to solve a system of ordinary differential equations (ODE’s);
493.    rnglib, a library which implements a random number generator (RNG) with splitting facilities, allowing multiple independent streams to be computed, by L’Ecuyer and Cote.
494.    root_rc, a library which seeks a solution of a scalar nonlinear equation f(x)=0, using reverse communication (RC), by Gaston Gonnet.
495.    roots_rc, a library which seeks solutions of a system of nonlinear equations, using reverse communication (RC), by Gaston Gonnet.
496.    rot13, a program which makes a copy of a file which has been encoded using the ROT13 coding and a ROT5 coding for digits.
497.    sandia_rules, a library which can produce a standard 1D Gauss quadrature rule of Chebyshev, Gegenbauer, generalized Hermite, generalized Laguerre, Hermite, Jacobi, Laguerre, and Legendre types.
498.    satisfy, a program which demonstrates, for a particular circuit, an exhaustive search for solutions of the circuit satisfy problem.
499.    satisfy_mpi, a program which demonstrates, for a particular circuit, an exhaustive search for solutions of the circuit satisfy problem, using MPI to perform the calculation in parallel.
500.    satisfy_openmp, a program which demonstrates, for a particular circuit, an exhaustive search for solutions of the circuit satisfy problem, using OpenMP for parallel execution.
501.    schedule_openmp, a program which demonstrates the default, static, and dynamic methods of scheduling loop iterations in OpenMP to avoid work imbalance.
502.    sde, a library which illustrates properties of stochastic ordinary differential equations (SODE’s), and common algorithms for their analysis, including the Euler method, the Euler-Maruyama method, and the Milstein method, making graphics files for processing and display by gnuplot, by Desmond Higham;
503.    search_mpi, a program which searches integers between A and B for a solution J such that F(J)=C, carried out in parallel using MPI.
504.    search_serial, a program which searches the integers from A to B for a value J such that F(J) = C. this version of the program is intended as a starting point for a parallel approach.
505.    set_theory, a library which demonstrates various set theoretic operations using several models of a set.
506.    sftpack, a library which implements the slow Fourier transform, intended as a teaching tool and comparison with the Fast Fourier Transform (FFT).
507.    sgefa_openmp, a program which compares a standard linear algebra solver against a revised version which can be run in parallel with OpenMP.
508.    sgmga, a library which creates sparse grids using a mixture of 1D quadrature rule families, allowing user specified growth rates for each family, allowing anisotropic weights for each dimension.
509.    shallow_water_1d, a program which simulates the evolution of a 1D fluid governed by the time-dependent shallow water equations.
510.    shepard_interp_1d, a library which defines and evaluates Shepard interpolants to 1D data, based on inverse distance weighting.
511.    shepard_interp_2d, a library which defines and evaluates Shepard interpolants to 2D data, based on inverse distance weighting.
512.    shepard_interp_nd, a library which defines and evaluates Shepard interpolants to M-dimensional data, based on inverse distance weighting.
513.    showme, a program which displays triangulations and meshes, by Jonathan Shewchuk;
514.    simplex_coordinates, a library which computes the Cartesian coordinates of the vertices of a regular simplex in M dimensions.
515.    simplex_gm_rule, a library which defines Grundmann-Moeller quadrature rules over the interior of a triangle in 2D, a tetrahedron in 3D, or over the interior of the simplex in M dimensions.
516.    simplex_grid, a library which generates a regular grid of points over the interior of an arbitrary simplex in M dimensions.
517.    simplex_integrals, a library which returns the exact value of the integral of any monomial over the interior of the unit simplex in M dimensions.
518.    simplex_monte_carlo, a library which uses the Monte Carlo method to estimate an integral over the interior of the unit simplex in M dimensions.
519.    sine_transform, a library which demonstrates some simple properties of the discrete sine transform.
520.    smolpack, a library which estimates the integral of a function over an M-dimensional hypercube using a sparse grid, by Knut Petras;
521.    snakes_and_ladders, programs which simulate and investigate a one-player version of the game of Snakes and Ladders.
522.    solve, a library which implements a linear solver which makes it easy to create doubly-dimensioned arrays and solve associated linear systems.
523.    sort_rc, a library which can sort a list of any kind of objects, using reverse communication (RC).
524.    sparse_display, a library which can read information defining a matrix of numbers and display the sparsity pattern or location of the nonzero elements using gnuplot. This operation is already available in the built-in MATLAB “spy” command.
525.    sparse_grid_cc, a library which creates sparse grids based on Clenshaw-Curtis rules.
526.    sparse_grid_cc_dataset, a program which creates a sparse grid dataset based on Clenshaw-Curtis rules.
527.    sparse_grid_hw, a library which creates sparse grids based on Gauss-Legendre, Gauss-Hermite, Gauss-Patterson, or a nested variation of Gauss-Hermite rules, by Florian Heiss and Viktor Winschel.
528.    sparse_interp_nd, a library which can be used to define a sparse interpolant to a function f(x) of a multidimensional argument.
529.    sphere_exactness, a program which tests the polynomial exactness of a quadrature rule over the surface of the unit sphere in 3D;
530.    sphere_fibonacci_grid, a library which uses a Fibonacci spiral to create a grid of points on the surface of the unit sphere in 3D.
531.    sphere_grid, a library which provides a number of ways of generating grids of points, or of points and lines, or of points and lines and faces, over the surface of the unit sphere in 3D.
532.    sphere_integrals, a library which defines test functions for integration over the surface of the unit sphere in 3D.
533.    sphere_lebedev_rule, a library which computes Lebedev quadrature rules over the surface of the unit sphere in 3D;
534.    sphere_llq_grid, a library which uses longitudes and latitudes to create grids of points, lines, and quadrilaterals on the surface of the unit sphere in 3D.
535.    sphere_llt_grid, a library which uses longitudes and latitudes to create grids of points, lines, and triangles on the surface of the unit sphere in 3D.
536.    sphere_monte_carlo, a library which applies a Monte Carlo method to estimate the integral of a function over the surface of the unit sphere in 3D;
537.    sphere_quad, a library which used triangulation to approximate an integral over the surface of the unit sphere in 3D;
538.    sphere_stereograph, a library which computes the stereographic mapping between points on the unit sphere in 3D and points on the plane Z = 1; a generalized mapping is also available.
539.    sphere_triangle_monte_carlo, a library which used the Monte Carlo method to estimate the integral of a function defined in a triangle on the surface of the unit sphere in 3D.
540.    sphere_triangle_quad, a library which uses quadrature to estimate the integral of a function in a spherical triangle on the surface of the unit sphere in 3D.
541.    spiral_data, a library which computes a velocity vector field that satisfies the continuity equation, writing the data to a file that can be plotted by gnuplot.
542.    spline, a library which interpolates or approximates data by piecewise polynomial functions;
543.    spring_ode, a program which shows how line printer graphics can be used to illustrate a solution of the ordinary differential equation (ODE) that describes the motion of a weight attached to a spring.
544.    spring_ode2, a program which shows how gnuplot graphics can be used to illustrate a solution of the ordinary differential equation (ODE) that describes the motion of a weight attached to a spring.
545.    square_arbq_rule, a library which returns quadrature rules, with exactness up to total degree 20, over the interior of the symmetric square in 2D, by Hong Xiao and Zydrunas Gimbutas.
546.    square_exactness, a library which investigates the polynomial exactness of quadrature rules for f(x,y) over the interior of a rectangle in 2D.
547.    square_felippa_rule, a library which returns Felippa’s quadratures rules for approximating integrals over the interior of a square in 2D.
548.    square_grid, a library which computes a grid of points over the interior of a square in 2D.
549.    square_integrals, a library which returns the exact value of the integral of any monomial over the interior of the unit square in 2D.
550.    square_monte_carlo, a library which applies a Monte Carlo method to estimate the integral of a function over the interior of the unit square in 2D.
551.    square_symq_rule, a library which returns symmetric quadrature rules, with exactness up to total degree 20, over the interior of the symmetric square in 2D, by Hong Xiao and Zydrunas Gimbutas.
552.    st_io a library which reads and writes sparse linear systems stored in the Sparse Triplet (ST) format.
553.    st_to_cc, a library which converts sparse matrix data from Sparse Triplet (ST) format to Compressed Column (CC) format;
554.    star_discrepancy, a program which computes bounds on the star discrepancy of a set of N points in M dimensions, by Eric Thiemard.
555.    stochastic_diffusion, functions which implement several versions of a stochastic diffusivity coefficient.
556.    stochastic_heat2d, a program which implements a finite difference method (FDM) for the steady (time independent) 2D heat equation, with a stochastic heat diffusivity coefficient, using gnuplot to illustrate the results.
557.    stochastic_rk, a library which applies a Runge-Kutta (RK) scheme to a stochastic ordinary differential equation (SODE).
558.    stokes_2d_exact, a library which evaluates exact solutions to the incompressible steady Stokes equations over the unit square in 2D.
559.    string_simulation, a program which simulates the behavior of a vibrating string by solving the corresponding initial boundary value problem (IBVP), creating files that can be displayed by gnuplot.
560.    stroud, a library which defines quadrature rules for a variety of M-dimensional regions, including the interior of the square, cube and hypercube, the pyramid, cone and ellipse, the hexagon, the M-dimensional octahedron, the circle, sphere and hypersphere, the triangle, tetrahedron and simplex, and the surface of the circle, sphere and hypersphere.
561.    subpak, a library which contains many utility routines;
562.    subset, a library which enumerates, generates, randomizes, ranks and unranks combinatorial objects including combinations, compositions, Gray codes, index sets, partitions, permutations, polynomials, subsets, and Young tables. Backtracking routines are included to solve some combinatorial problems.
563.    subset_sum, a program which seeks solutions of the subset sum problem.
564.    subset_sum_serial, a program which seeks solutions of the subset sum problem, intended as a starting point for a parallel computing approach.
565.    super_blas, a library which implements some of the BLAS routines, for particular use by superlu;
566.    superlu, programs which illustrate how to use the superlu library, which applies a fast direct solution method to solve sparse linear systems, by James Demmel, John Gilbert, and Xiaoye Li.
567.    superlu_openmp, programs which illustrate how to use the superlu library with the OpenMP parallel programming interface, which applies a fast direct solution method to solve sparse linear systems, by James Demmel, John Gilbert, and Xiaoye Li.
568.    svd_demo, a program which demonstrates the calculation of the singular value decomposition (SVD) and some of its properties;
569.    svd_snowfall, a program which reads a file containing historical snowfall data and analyzes the data with the Singular Value Decomposition (SVD).
570.    svd_truncated, a program which demonstrates the computation of the reduced or truncated Singular Value Decomposition (SVD) that is useful for cases when one dimension of the matrix is much smaller than the other.
571.    sweep2, a program which computes Voronoi Diagrams or Delaunay triangulations, by Steve Fortune;
572.    table_io, a library which reads and writes a simple dataset stored as a table file;
573.    task_division, a library which implements a simple procedure for smoothly dividing T tasks among P processors; such a method can be useful in MPI and other parallel environments, particularly when T is not an exact multiple of P, and when the processors can be indexed starting from 0 or from 1.
574.    test_approx, a library which implements test problems for approximation, provided as a set of (x,y) data.
575.    test_eigen, a library which implements test matrices for eigenvalue analysis.
576.    test_int, a library which implements test problems for approximate integration (quadrature) in one dimension.
577.    test_int_2d, a library which implements test problems for approximate integration (quadrature) in two dimensions.
578.    test_interp, a library which defines test problems for interpolation, provided as a set of (x,y) data.
579.    test_interp_1d, a library which defines test problems for interpolation of data y(x), which depends on a 1D argument.
580.    test_interp_2d, a library which defines test problems for interpolation of data z(x,y), which depends on a 2D argument.
581.    test_interp_nd, a library which defines test problems for interpolation of data z(x), depending on an M-dimensional argument.
582.    test_lls, a library which implements linear least squares (LLS) test problems of the form A*x=b.
583.    test_mat, a library which defines test matrices for which some of the determinant, eigenvalues, inverse, null vectors, P*L*U factorization or linear system solution are already known, including the Vandermonde and Wathen matrix.
584.    test_matrix_exponential, a library which defines a set of test cases for computing the matrix exponential.
585.    test_min, a library which implements test problems for minimization of a scalar function of a scalar variable.
586.    test_nearest, a library which tests the time complexity of various procedures for solving the nearest neighbor problem.
587.    test_opt_con, a library which defines test problems for the minimization of a scalar function of several variables, with the search constrained to lie within a specified hyper-rectangle.
588.    test_optimization, a library which implements test problems for optimization of a scalar function of several variables, as described by Molga and Smutnicki.
589.    test_values, a library which returns a small set of values for a variety of mathematical functions, suitable for a rough test of accuracy for algorithms;
590.    test_zero, a library which implements test problems for the solution of a single nonlinear equation in one variable.
591.    testpack, a program which demonstrates the use of a set of test integrand functions chosen by Alan Genz.
592.    tet_mesh, a library which carries out various tasks associated with tetrahedral meshes in 3D;
593.    tetrahedron_arbq_rule, a library which returns quadrature rules, with exactness up to total degree 15, over the interior of a tetrahedron in 3D, by Hong Xiao and Zydrunas Gimbutas.
594.    tetrahedron_exactness, a program which tests the polynomial exactness of a quadrature rule over the interior of a tetrahedron in 3D.
595.    tetrahedron_felippa_rule, a library which returns Felippa’s quadratures rules for approximating integrals over the interior of a tetrahedron in 3D.
596.    tetrahedron_grid, a library which computes a grid of points over the interior of a tetrahedron in 3D.
597.    tetrahedron_integrals, a library which returns the exact value of the integral of any monomial over the interior of the unit tetrahedron in 3D.
598.    tetrahedron_keast_rule, a library which defines ten quadrature rules, of degree of exactness 0 through 8, over the interior of the tetrahedron in 3D.
599.    tetrahedron_monte_carlo, a library which uses the Monte Carlo method to estimate an integral over the interior of the unit tetrahedron in 3D.
600.    tetrahedron_ncc_rule, a library which defines Newton-Cotes closed (NCC) quadrature rules over the interior of a tetrahedron in 3D.
601.    tetrahedron_nco_rule, a library which defines Newton-Cotes open (NCO) quadrature rules over the interior of a tetrahedron in 3D.
602.    tetrahedron_properties, a program which computes properties, including the centroid, circumsphere, dihedral angles, edge lengths, face angles, face areas, insphere, quality, solid angles, and volume, of a tetrahedron in 3D.
603.    three_body_simulation, a program which simulates the behavior of three planets, constrained to lie in a plane, and moving under the influence of gravity, by Walter Gander and Jiri Hrebicek.
604.    timer, programs which illustrate how to estimate the CPU time taken by a portion of a program;
605.    timestamp, a library which returns the current YMDHMS date as a timestamp, and performs other timing chores;
606.    toeplitz_cholesky, a library which computes the Cholesky factorization of a nonnegative definite symmetric Toeplitz matrix.
607.    toms097, a library which computes the distance between all pairs of nodes in a directed graph with weighted edges, using Floyd’s algorithm. This is a version of ACM TOMS algorithm 97.
608.    toms112, a library which determines whether a point is contained in a polygon, by Moshe Shimrat. This is a version of ACM TOMS algorithm 112.
609.    toms178, a library which seeks the minimizer of a function of several variables, using the Hooke-Jeeves direct search method, by Arthur Kaupe. This is a version of ACM TOMS algorithm 178.
610.    toms179, a library which calculates the incomplete Beta ratio, by Oliver Ludwig; this is a version of ACM TOMS algorithm 179.
611.    toms291 a library which approximates the logarithm of the Gamma function; This is a version of ACM TOMS algorithm 291.
612.    toms322, a library which evaluates the F and Student’s T Cumulative Density Function (CDF); This is a version of ACM TOMS algorithm 322.
613.    toms443, a library which evaluates Lambert’s W function. This is a version of ACM TOMS algorithm 443.
614.    toms446, a library which manipulates Chebyshev series for interpolation and approximation. This is a version of ACM TOMS algorithm 446, by Roger Broucke.
615.    toms462, a library which evaluates the upper right tail of the bivariate normal distribution; that is, the probability that normal variables X and Y with correlation R will satisfy H <= X and K <= Y. This is a version of ACM TOMS algorithm 462.
616.    toms515, a library which can select subsets of size K from a set of size N, ACM TOMS Algorithm 515, by Bill Buckles, Matthew Lybanon.
617.    toms655, a library which computes the weights for interpolatory quadrature rule; this library is commonly called IQPACK, by Sylvan Elhay and Jaroslav Kautsky. This is a version of ACM TOMS algorithm 655.
618.    toms722, a library which supports IEEE arithmetic. This is a version of ACM TOMS algorithm 722.
619.    toms743, a library which evaluates Lambert’s W function. This is a version of ACM TOMS algorithm 743, by Barry, Barry and Culligan-Hensley.
620.    toms886, a library which defines the Padua points for interpolation in a 2D region, including the rectangle, triangle, and ellipse, by Marco Caliari, Stefano de Marchi, Marco Vianello. This is a version of ACM TOMS algorithm 886.
621.    toms917, a library which evaluates the Wright Omega function, by Piers Lawrence, Robert Corless, David Jeffrey. This is a version of ACM TOMS algorithm 917.
622.    treepack, a library which carries out computations on trees, a simple kind of graph that is minimally connected.
623.    triangle, a program which generates meshes, Delaunay triangulations, and Voronoi diagrams, by Jonathan Shewchuk;
624.    triangle_analyze, a program which reads a triangle defined in a file, and uses the triangle_properties() library to compute angles, area, centroid, circumcircle, edge lengths, incircle, orientation, orthocenter, and quality.
625.    triangle_bench, a script which times the execution of the triangle() program on a sequence of sets of randomly generated nodes in the unit square.
626.    triangle_exactness, a program which tests the polynomial exactness of a quadrature rule over the interior of a triangle in 2D.
627.    triangle_fekete_rule, a library which sets up one of seven Fekete rules for interpolation or quadrature over the interior of a triangle in 2D.
628.    triangle_felippa_rule, a library which returns Felippa’s quadratures rules for approximating integrals over the interior of a triangle in 2D.
629.    triangle_grid, a library which computes a grid of points over the interior of a triangle in 2D.
630.    triangle_integrals, a library which returns the exact value of the integral of any polynomial over the interior of an arbitrary triangle in 2D.
631.    triangle_interpolate, a library which shows how vertex data can be interpolated at any point in the interior of a triangle.
632.    triangle_io, a library which can read or write some of the files created by Jonathan Shewchuk’s triangle program.
633.    triangle_monte_carlo, a library which uses the Monte Carlo method to estimate an integral over the interior of a triangle in 2D.
634.    triangle_ncc_rule, a library which defines Newton-Cotes closed (NCC) quadrature rules over the interior of a triangle in 2D.
635.    triangle_nco_rule, a library which defines Newton-Cotes open (NCO) quadrature rules over the interior of a triangle in 2D.
636.    triangle_properties, a library which computes properties, including angles, area, centroid, circumcircle, edge lengths, incircle, orientation, orthocenter, and quality, of a triangle in 2D.
637.    triangle_svg, a library which uses Scalable Vector Graphics (SVG) to plot a triangle and any number of points, to illustrate quadrature rules and sampling techniques.
638.    triangle_symq_rule, a library which returns efficient symmetric quadrature rules, with exactness up to total degree 50, over the interior of a triangle in 2D, by Hong Xiao and Zydrunas Gimbutas.
639.    triangle_to_fem, a program which reads the NODE and ELE files created by the triangle program to describe a triangular mesh, and writes a corresponding pair of node and element files in the 2D FEM format.
640.    triangle_to_medit, a program which reads the NODE and ELE files created by the triangle() program to describe a triangular mesh, and writes a corresponding MESH file for input to medit().
641.    triangle_to_xml, a program which reads the NODE and ELE files created by triangle() to describe a triangular mesh in 2D, and writes out a corresponding XML mesh file for use by DOLFIN or FENICS.
642.    triangle01_integrals, a library which returns the integral of any monomial over the interior of the unit triangle in 2D.
643.    triangulate, a program which triangulates a polygonal region, by Joseph ORourke;
644.    triangulation, a library which computes the triangulation of a set of points in the plane, and performs various operations using a triangulation, including searching a Delaunay triangulation to find which triangle contains a given point.
645.    triangulation_node_to_element, a program which reads files describing a set of nodes, their triangulation, and the value of one or more quantities at each node, and outputs a file that averages the quantities for each element. This operation in effect creates an “order1” finite element model of the data.
646.    triangulation_svg, a program which creates an SVG image of a triangulation, which can be displayed by a web browser.
647.    triangulation_triangle_neighbors, a program which reads data defining a triangulation, finds the three neighbor triangles for each triangle, and writes them to a file;
648.    trig_to_neib, a program which reads node and ele files, a format prescribed by Shewchuk’s triangle program, describing a triangulation, and produces a file defining the neighbor triangles of each element; the program can also produce information about the Voronoi diagram. The program is by Lili Ju.
649.    truncated_normal, a library which works with the truncated normal distribution over [A,B], or [A,+oo) or (-oo,B], returning the probability density function (PDF), the cumulative density function (CDF), the inverse CDF, the mean, the variance, and sample values.
650.    truncated_normal_rule, a program which computes a quadrature rule for a normal probability density function (PDF), sometimes called a Gaussian distribution, that has been truncated to [A,+oo), (-oo,B], or [A,B].
651.    tsp_brute, a program which reads a file of city-to-city distances and solves a (small!) traveling salesperson problem (TSP), using brute force.
652.    ubvec, a library which demonstrates how nonnegative integers can be stored as unsigned binary vectors, and arithmetic can be performed on them.
653.    umfpack, examples which illustrate how to solve a sparse linear system by calling the C library UMFPACK, by Timothy Davis.
654.    unicycle, a library which considers permutations containing a single cycle, sometimes called cyclic permutations.
655.    uniform, a library which contains uniform random number generators (RNG’s) for several arithmetic types.
656.    upc, is a library which can compute the check digit associated with a uniform product code (UPC), or it can report whether a 12-digit UPC is actually valid.
657.    valgrind, programs which illustrate the use of the valgrind suite of programs which includes a memory leak detector.
658.    van_der_corput, a library which computes elements of the van der Corput one-dimensional Quasi Monte Carlo (QMC) sequence, using a simple interface.
659.    vandermonde, a library which implements the Bjork-Pereyra algorithm for accurate solution of linear systems involving the Vandermonde matrix.
660.    vandermonde_approx_1d, a library which finds a polynomial approximant to data y(x) of a 1D argument by solving an overdetermined linear system for the polynomial coefficients involving the Vandermonde matrix.
661.    vandermonde_approx_2d, a library which finds a polynomial approximant p(x,y) to data z(x,y) of a 2D argument by setting up and solving an overdetermined linear system for the polynomial coefficients involving the Vandermonde matrix.
662.    vandermonde_interp_1d, a library which finds a polynomial interpolant to data y(x) of a 1D argument by setting up and solving a linear system for the polynomial coefficients involving the Vandermonde matrix, creating graphics files for processing by gnuplot.
663.    vandermonde_interp_2d, a library which finds a polynomial interpolant to data z(x,y) of a 2D argument by setting up and solving a linear system for the polynomial coefficients involving the Vandermonde matrix.
664.    walker_sample, a library which efficiently samples a discrete probability vector using Walker sampling.
665.    walsh, a library which implements versions of the Walsh and Haar transforms.
666.    wathen, a library which compares storage schemes (full, banded, sparse triplet ) and solution strategies (Linpack full, Linpack banded, conjugate gradient (CG)) for linear systems involving the Wathen matrix, which can arise when solving a problem using the finite element method (FEM).
667.    wave_mpi, a program which uses the finite difference method (FDM) and MPI to estimate a solution to the wave equation.
668.    wavelet, a library which does some simple wavelet calculations;
669.    wedge_exactness, a program which investigates the polynomial exactness of a quadrature rule over the interior of the unit wedge in 3D.
670.    wedge_felippa_rule, a library which returns quadrature rules for approximating integrals over the interior of the unit wedge in 3D.
671.    wedge_grid, a library which computes a grid of points over the interior of the unit wedge in 3D.
672.    wedge_integrals, a library which returns the exact value of the integral of any monomial over the interior of the unit wedge in 3D.
673.    wedge_monte_carlo, a library which uses the Monte Carlo method to estimate an integral over the interior of the unit wedge in 3D.
674.    weekday, a library which determines the day of the week corresponding to a given date, such as 14 October 1066, Julian calendar, … which was a Saturday.
675.    wishart, a library which produces sample matrices from the Wishart or Bartlett distributions, useful for sampling random covariance matrices.
676.    wtime, a library which returns a reading of the wall clock time in seconds.
677.    xdr, a library which allows a user to transfer data between computers which have different data storage conventions.
678.    zero_rc, a library which seeks a solution of a scalar nonlinear equation f(x)=0, using reverse communication (RC), by Richard Brent.
679.    ziggurat, a library which samples the uniform, normal or exponential distributions, using the ziggurat method, by Marsaglia and Tsang.
680.    ziggurat_inline, a library which samples the uniform, normal or exponential distributions, using the ziggurat method, by Marsaglia and Tsang. In this original version, the random number generators are implemented inline, for increased speed.
681.    ziggurat_openmp, a program which demonstrates how the ziggurat library can be used as a random number generator (RNG) in an OpenMP parallel program.

 

 

 

 

 

相关文章