C++ Source Codes


  1. anagram, a program which determines anagrams of a string, by James Cherry;
  2. 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.
  3. ann, a library which computes Approximate Nearest Neighbors, by David Mount and Sunil Arya;
  4. ann_test, a program which uses the ann library to approximate the nearest neighbors of a set of points stored in a file;
  5. ann_to_fig, a program which plots the search tree used by the ann library, while seeking the approximate nearest neighbors of a set of points;
  6. args, a program which reports the command line arguments with which it was invoked;
  7. asa005, a library which evaluates the lower tail of the noncentral Student's T distribution, by BE Cooper. This is a C++ version of Applied Statistics Algorithm 5;
  8. asa006, a library which computes the Cholesky factor of a positive definite symmetric matrix, by Michael Healy. This is a C++ version of Applied Statistics Algorithm 6;
  9. asa007, a library which computes the inverse of a positive definite symmetric matrix, by Michael Healy. This is a C++ version of Applied Statistics Algorithm 7.
  10. asa032, a library which evaluates the incomplete Gamma function, by G Bhattacharjee. This is a C++ version of Applied Statistics Algorithm 32;
  11. asa047, a library which minimizes a scalar function of several variables using the Nelder-Mead algorithm, by R ONeill. This is a C++ version of Applied Statistics Algorithm 47;
  12. asa058, a library which carries out K-means clustering of data, by David Sparks. This is a C++ version of Applied Statistics Algorithm 58;
  13. asa063, a library which evaluates the incomplete Beta function, by KL Majumder and G Bhattacharjee. This is a C++ version of Applied Statistics Algorithm 63;
  14. asa066, a library which computes the cumulative density function (CDF) of the standard normal distribution, by David Hill. This is a C++ version of Applied Statistics Algorithm 66;
  15. asa076, a library which evaluates Owen's T function, by Young and Minder. This is a C++ version of Applied Statistics Algorithm 76;
  16. asa091, a library which computes the percentage points of the Chi-square distribution, by Best and Roberts. This is a C++ version of Applied Statistics Algorithm 91;
  17. asa103, a library which evaluates the digamma or psi function, by Jose Bernardo. This is a C++ version of Applied Statistics Algorithm 103;
  18. asa109, a library which inverts the incomplete Beta function, by Cran, Martin and Thomas. This is a C++ version of Applied Statistics Algorithm 109;
  19. asa111, a library which evaluates the percentage points of the normal distribution, by Beasley and Springer. This is a C++ version of Applied Statistics Algorithm 111;
  20. asa113, a library which clusters data using a transfer and swap algorithm, by Banfield and Bassill. This is a C++ version of Applied Statistics Algorithm 113;
  21. asa121, a library which evaluates the trigamma function, by BE Schneider. This is a C++ version of Applied Statistics Algorithm 121;
  22. asa136, a library which implements a clustering algorithm, by Hartigan and Wong. This is a C++ version of Applied Statistics Algorithm 136;
  23. asa144, a library which randomly generates tables with given row and column sums, by James Boyett. This is a C++ version of Applied Statistics Algorithm 144;
  24. asa147, a library which evaluates the incomplete Gamma function, by Chi Leung Lau. This is a C++ version of Applied Statistics Algorithm 147;
  25. 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 C++ version of Applied Statistics Algorithm 152;
  26. asa159, a library which computes a random table with given row and column sums, by Michael Patefield. This is a C++ version of Applied Statistics Algorithm 159;
  27. asa172, a library which generates all M-dimensional indices in a given range, simulating the behavior of an arbitrary number of nested loops, by OFlaherty and MacKenzie. This is a C++ version of Applied Statistics Algorithm 172;
  28. asa183, a library which implements a random number generator (RNG), by Wichman and Hill. This is a C++ version of Applied Statistics Algorithm 183;
  29. asa226, a library which evaluates the noncentral incomplete Beta function, by Russell Lenth. this is a C++ version of Applied Statistics Algorithm 226;
  30. asa239, a library which evaluates the incomplete Gamma function, by Shea. this is a C++ version of Applied Statistics Algorithm 239;
  31. asa241, a library which computes the inverse of the normal cumulative density function (CDF), by Michael Wichura; this is a C++ version of Applied Statistics Algorithm 241;
  32. asa243, a library which evaluates the lower tail of the noncentral Student's T distribution, by Russell Lenth; this is a C++ version of Applied Statistics Algorithm 243;
  33. asa245, a library which evaluates the logarithm of the Gamma function, by Allan Mcleod; this is a C++ version of Applied Statistics Algorithm 245;
  34. asa299, a library which computes the lattice points (integer coordinates) in an M-dimensional simplex, by Chasalow and Brand; this is a C++ version of Applied Statistics Algorithm 299;
  35. asa310, a library which evaluates the noncentral incomplete Beta function, by Chattamvelli and Shanmugam; this is a C++ version of Applied Statistics Algorithm 310;
  36. ball_grid, a library which computes grid points inside a 3D ball.
  37. ball_volume_monte_carlo, a program which applies a Monte Carlo procedure to estimate the volume of the M-dimensional unit ball;
  38. 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.
  39. bernstein_polynomial, a library which evaluates the Bernstein polynomials;
  40. beta_nc, a library which evaluates the cumulative density function (CDF) of the noncentral Beta distribution;
  41. bins, a library which handles geometric data partially sorted into bins;
  42. 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].
  43. 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.
  44. bits_to_ui, a program which reads a text file of bits and writes a binary file in which groups of 32 bits have been interpreted as an unsigned integer;
  45. black_scholes, a library which implements some simple approaches to the Black-Scholes option valuation theory, by Desmond Higham.
  46. 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, by Charles Lawson, Richard Hanson, David Kincaid, Fred Krogh.
  47. blas1_c, a library which constitutes the Level 1 Basic Linear Algebra Subprograms (BLAS), using single precision complex arithmetic, by Charles Lawson, Richard Hanson, David Kincaid, Fred Krogh.
  48. blas1_d, a library which constitutes the Level 1 Basic Linear Algebra Subprograms (BLAS), using double precision real arithmetic, by Charles Lawson, Richard Hanson, David Kincaid, Fred Krogh.
  49. blas1_s, a library which constitutes the Level 1 Basic Linear Algebra Subprograms (BLAS), using single precision real arithmetic, by Charles Lawson, Richard Hanson, David Kincaid, Fred Krogh.
  50. blas1_z, a library which constitutes the Level 1 Basic Linear Algebra Subprograms (BLAS), using double precision complex arithmetic, by Charles Lawson, Richard Hanson, David Kincaid, Fred Krogh.
  51. blend, a library which uses transfinite interpolation to fill in data within a square or a cube based on boundary values;
  52. bmp_io, a library which reads and writes graphics information stored in a Microsoft BMP file;
  53. bmp_to_ppma, a program which converts a Microsoft BMP file to an ASCII Portable Pixel Map (PPM) file;
  54. bmp_to_ppmb, a program which converts a Microsoft BMP file to a binary Portable Pixel Map (PPM) file;
  55. boost, programs which illustrate the use of some of the Boost libraries;
  56. 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;
  57. 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. The C++ version includes some customizations by John Denker.
  58. brent_old, 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.
  59. brownian_motion_simulation, a library which simulates Brownian motion in an M-dimensional region, creating graphics files for processing by gnuplot.
  60. burgers_solution, a library which evaluates an exact solution of the time-dependent 1D viscous Burgers equation.
  61. c++_calls_f77, programs which illustrate a C++ program calling a FORTRAN77 subroutine.
  62. c++_calls_f90, programs which illustrate a C++ program calling a FORTRAN90 subroutine.
  63. c4lib, a library which implements a basic level of single precision complex (C4) arithmetic.
  64. c8_complex_lib, a C++ class for double precision complex (C8) numbers;
  65. c8lib, a library which implements certain elementary functions for double precision complex (C8) variables;
  66. calendar_rd, a program which computes the representation of a given date in a number of calendrical systems, by Edward Reingold and Nachum Dershowitz.
  67. calpak, a library which makes various calendar calculations;
  68. catalog, a program which extracts routine definition lines from a marked-up C, C++, FORTRAN77 or FORTRAN90 file;
  69. caustic_opengl, a program which computes a caustic curve and displays it using OpenGL.
  70. ccn_rule, a program which defines a nested Clenshaw Curtis quadrature rule.
  71. ccvt_box, a program which carries out a Centroidal Voronoi Tessellation (CVT) calculation constrained to a box region, with points projected to the boundary;
  72. 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.
  73. 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.
  74. cellular_automaton, a program which demonstrates the 1D Cellular Automaton known as rule #30.
  75. cg_rc, a library which implements the conjugate gradient method for solving a positive definite sparse linear system A*x=b, using reverse communication.
  76. chebyshev, a library which computes the Chebyshev interpolant/approximant to a given function over an interval.
  77. 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).
  78. chebyshev_polynomial, a library which evaluates the Chebyshev polynomial and associated functions.
  79. chebyshev1_rule, a program which computes and writes out a Gauss-Chebyshev type 1 quadrature rule of given order.
  80. chebyshev2_rule, a program which computes and writes out a Gauss-Chebyshev type 2 quadrature rule of given order.
  81. chrpak, a library which can manipulate characters and strings;
  82. circle_arc_grid, a program which computes grid points along a circular arc.
  83. circle_grid, a library which computes grid points inside a circle.
  84. cities, a library which works with city-to-city distance matrices;
  85. clenshaw_curtis_rule, a program which implements a Clenshaw Curtis quadrature rule;
  86. cnf_io, a library which reads or writes Conjunctive Normal Form (CNF) data files, used to store boolean formulas.
  87. collatz_recursive, a library which demonstrates recursive programming by considering the simple Collatz 3n+1 problem.
  88. colored_noise, a library which generates samples of noise obeying a 1/f^alpha power law.
  89. combination_lock, a program which simulates the process of determining the secret combination of a lock.
  90. 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.
  91. communicator_mpi, a program which creates new communicators involving a subset of initial set of MPI processes in the default communicator MPI_COMM_WORLD.
  92. 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.
  93. complex_numbers, a program which demonstrates some simple features involved in the use of complex numbers in C programming.
  94. condition, a library which implements methods of computing or estimating the condition number of a matrix.
  95. cordic, a library which computes a few special functions using the CORDIC algorithm.
  96. correlation, a library which contains examples of statistical correlation functions.
  97. cpp, programs which illustrate some features of the C++ language;
  98. cpp_arrays, programs which illustrate the use of vectors, matrices and tensors.
  99. cpp_files, programs which illustrate the use of files.
  100. cpp_intrinsics, a program which illustrates the use of intrinsic functions supplied by C++.
  101. cpp_random, programs which illustrate the use of the C++ random number generator (RNG) functions.
  102. cr2crlf, a program which converts carriage returns to carriage returns + linefeeds in a file;
  103. cr2lf, a program which converts carriage returns to linefeeds in a file;
  104. crc, a library which computes the cyclic redundancy checksum (CRC) as used by the PNG data format.
  105. crrm, a program which removes carriage returns from a file;
  106. cvt, a library which computes an N point CVT Centroidal Voronoi Tessellation (CVT) in M dimensions;
  107. cvt_dataset, a program which creates a Centroidal Voronoi Tessellation (CVT) dataset;
  108. cycle_brent, a library which carries out an iterated function evaluation to determine the nearest element of a cycle, and the cycle's length, using Brent's method.
  109. 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.
  110. cyclic_reduction, a library which solves a tridiagonal linear system using cyclic reduction;
  111. deblank, a program which removes all blank lines from a file;
  112. decomment, a program which removes from a file every line that begins with "#" (a common convention for indicating comments);
  113. delaunay_tree_2d, a program which computes the Delaunay triangulation of a 2D dataset, by Olivier Devillers.
  114. detroff, a program which removes from a file every occurrence of the troff overprint pair character+backspace, which can make a MAN page printable;
  115. diaphony, a program which reads a file of N points in M dimensions and computes its diaphony, a measure of point dispersion.
  116. dijkstra, a program which runs a simple example of Dijkstra's minimum distance algorithm for graphs.
  117. dijkstra_openmp, a program which uses OpenMP to parallelize a simple example of Dijkstra's minimum distance algorithm for graphs.
  118. discrete_pdf_sample_2d, 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.
  119. dislin, programs which illusrate the use of DISLIN, a scientific plotting package;
  120. divdif, a library which uses divided differences to compute the polynomial interpolant to a given set of data.
  121. 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.
  122. dream, a library which implements the DREAM algorithm for accelerating Markov Chain Monte Carlo (MCMC) convergence using differential evolution, by Guannan Zhang.
  123. duel_simulation, a program which simulates N repetitions of a duel between two players, each of whom has a known firing accuracy.
  124. dunavant, a library which defines Dunavant quadrature rules in a triangle;
  125. 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;
  126. ellipse_grid, a library which computes grid points inside an ellipse.
  127. ellipsoid_grid, a library which computes grid points inside a 3D ellipsoid.
  128. emps, a program which expands a compressed MPS linear programming file, by David Gay.
  129. faure, a library which computes elements of the Faure M-dimensional quasirandom sequence;
  130. faure_dataset, a program which creates a Faure quasirandom dataset;
  131. fd_predator_prey, a program which solves a pair of predator prey ordinary differential equations (ODE's) using the finite difference method (FDM).
  132. 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 FTCS method, forward time difference, centered space difference, writing graphics files for processing by gnuplot.
  133. 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.
  134. 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.
  135. 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.
  136. 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.
  137. fd1d_bvp, a program which applies the finite difference method (FDM) to a two point boundary value problem in one spatial dimension.
  138. fd1d_heat_explicit, a library which uses the finite difference method (FDM), with explicit time stepping, to solve the time dependent 1D heat equation;
  139. fd1d_heat_implicit, a program which implements a finite difference method (FDM), implicit in time, of the time dependent 1D heat equation;
  140. fd1d_heat_steady, a program which implements a finite difference method (FDM) for the steady (time independent) 1D heat equation;
  141. fd1d_wave, a program which applies the finite difference method (FDM) to solve the time-dependent wave equation utt = c * uxx in one spatial dimension.
  142. fair_dice_simulation, a program which simulates N tosses of 2 dice, making a histogram of the results.
  143. fekete, a library which sets up one of seven Fekete rules for interpolation or quadrature in a triangle;
  144. felippa, a library which defines quadrature rules for lines, triangles, quadrilaterals, pyramids, wedges, tetrahedrons and hexahedrons.
  145. 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.)
  146. fem_io, a library which reads or writes FEM files (three text files describing a finite element model);
  147. fem_to_mesh, a program which reads a pair of FEM files defining node coordinates and elements, and creates a corresponding MESH file.
  148. fem1d, a program which applies the finite element method (FEM), using piecewise linear basis functions, to a linear two point boundary value problem in 1D;
  149. 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 in 1D;
  150. fem1d_bvp_linear, a program which applies the finite element method (FEM), with piecewise linear elements, to a two point boundary value problem in one spatial dimension, and compares the computed and exact solutions with the L2 and seminorm errors.
  151. fem1d_heat_steady, a program which implements the finite element method (FEM) for the steady (time independent) 1D heat equation;
  152. fem1d_nonlinear, a program which applies the finite element method (FEM), with piecewise linear basis functions, to a nonlinear two point boundary value problem in 1D;
  153. fem1d_pack, a library which contains utilities for 1D finite element method (FEM) calculations.
  154. fem1d_pmethod, a program which applies the p-method version of the finite element method (FEM) to a linear two point boundary value problem in 1D;
  155. 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 solution from one mesh to another.
  156. 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.
  157. fem2d_heat, a program which applies the finite element method (FEM) to solve the time-dependent heat equation in an arbitrary triangulated region in 2D;
  158. fem2d_heat_rectangle, a program which applies the finite element method (FEM) to solve the time dependent heat equation on a square in 2D;
  159. fem2d_heat_square, a library which defines the geometry of a square region, as well as boundary and initial conditions for a given heat problem, and is called by fem2d_heat as part of a solution procedure.
  160. fem2d_navier_stokes, a program which applies the finite element method (FEM) to solve the steady incompressible Navier Stokes equations in an arbitrary triangulated region in 2D;
  161. fem2d_navier_stokes_cavity, a library which contains the user-supplied routines necessary to run fem2d_navier_stokes on the cavity problem.
  162. fem2d_navier_stokes_channel, a library which contains the user-supplied routines necessary to run fem2d_navier_stokes on the channel problem.
  163. fem2d_navier_stokes_inout, a library which contains the user-supplied routines necessary to run fem2d_navier_stokes on the inout problem.
  164. fem2d_pack, a library which implements various 2D finite element method (FEM) calculations;
  165. fem2d_poisson, a program which applies the finite element method (FEM) to solve Poisson's equation in an arbitrary triangulated region in 2D;
  166. fem2d_poisson_cg, a program which solves Poisson's equation on a triangulated region, using the finite element method (FEM), sparse storage, and a conjugate gradient solver.
  167. fem2d_poisson_cg_baffle, a library which defines the geometry of a channel with 13 hexagonal baffles, as well as boundary conditions for a given Poisson problem, and is called by fem2d_poisson_cg as part of a solution procedure.
  168. fem2d_poisson_cg_ell, a library which defines the geometry of an L-shaped region, as well as boundary conditions for a given Poisson problem, and is called by fem2d_poisson_cg as part of a solution procedure.
  169. fem2d_poisson_cg_lake, a library which defines the geometry of a lake-shaped region, as well as boundary conditions for a given Poisson problem, and is called by fem2d_poisson_cg as part of a solution procedure.
  170. fem2d_poisson_ell, a library which defines the geometry of an L-shaped region, as well as boundary conditions for a given Poisson problem, and is called by fem2d_poisson as part of a solution procedure.
  171. fem2d_poisson_lake, a library which defines the geometry of a lake-shaped region, as well as boundary conditions for a given Poisson problem, and is called by fem2d_poisson as part of a solution procedure.
  172. 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.
  173. 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.
  174. fem2d_poisson_sparse, a program which uses the finite element method to solve Poisson's equation on an arbitrary triangulated region in 2D; (This is a version of fem2d_poisson which replaces the banded storage and direct solver by a sparse storage format and an iterative solver.)
  175. fem2d_poisson_sparse_baffle, a library which defines the geometry of a rectangular channel with 13 baffles, as well as boundary conditions for a given Poisson problem, and is called by fem2d_poisson_sparse as part of a solution procedure.
  176. fem2d_poisson_sparse_ell, a library which defines the geometry of an L-shaped region, as well as boundary conditions for a given Poisson problem, and is called by fem2d_poisson_sparse as part of a solution procedure.
  177. fem2d_poisson_sparse_lake, a library which defines the geometry of a lake-shaped region, as well as boundary conditions for a given Poisson problem, and is called by fem2d_poisson_sparse as part of a solution procedure.
  178. fem2d_project, a program which projects a function f(x,y), given as data, into a given finite element space of piecewise linear triangular elements.
  179. fem2d_project_function, a program which projects a function f(x,y), given as a formula, into a given finite element space of piecewise linear triangular elements.
  180. fem2d_sample, a program which samples a finite element function, defined by FEM files, (three text files describing the nodes, triangles, and coefficients); at arbitrary points.
  181. fem2d_stokes, a program which applies the finite element method (FEM) to solve the steady incompressible Stokes's equations in an arbitrary triangulated region in 2D;
  182. fem2d_stokes_cavity, a library which contains the user-supplied routines necessary to run fem2d_stokes on the cavity problem.
  183. fem2d_stokes_channel, a library which contains the user-supplied routines necessary to run fem2d_stokes on the channel problem.
  184. fem2d_stokes_inout, a library which contains the user-supplied routines necessary to run fem2d_stokes on the inout problem.
  185. fem3d_pack, a library which contains utilities for 3D finite element method (FEM) calculations.
  186. fem3d_project, a program which projects a function f(x,y,z), given as a data, into a given space of piecewise linear tetrahedrons associated with the finite element method (FEM).
  187. fem3d_sample, a program library which evaluates a finite element function defined on a 3D tetrahedral mesh.
  188. fern_opengl, a program which uses OpenGL to display the Barnsley fractal fern.
  189. 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.
  190. 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.
  191. 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.
  192. fft_openmp, a program which demonstrates the computation of a Fast Fourier Transform (FFT) in parallel, using OpenMP.
  193. fft_serial, a program which computes a Fast Fourier Transform (FFT), and is intended as a starting point for implementing an OpenMP parallel version.
  194. 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.
  195. 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.
  196. filum, a library which performs various operations with files;
  197. floyd, a library which implements Floyd's algorithm for finding the shortest distance between pairs of nodes on a directed graph.
  198. 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.
  199. fsu_dakota, a library which implements a variety of methods for the generation of quasirandom numbers, submitted for inclusion in the Sandia Labs DAKOTA package;
  200. g++_intrinsics, a program which tests or demonstrates some of the intrinsic functions provided by the Gnu G++ compiler for C++.
  201. g++_quadmath, a program which illustrates the use of quadruple precision real arithmetic, as provided on some systems by the Gnu g++ compiler for C++.
  202. gegenbauer_rule, a program which computes and writes out a Gauss-Gegenbauer quadrature rule of given order.
  203. gen_hermite_rule, a program which computes and writes out a generalized Gauss-Hermite quadrature rule of given order and parameter value.
  204. gen_laguerre_rule, a program which computes and writes out a generalized Gauss-Laguerre quadrature rule of given order and parameter value.
  205. 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.
  206. geompack, a library which computes the Delaunay triangulation of 2D data, by Barry Joe;
  207. gm_rule, a library which defines Grundmann-Moeller quadratures rules for an M-dimensional simplex.
  208. gnuplot, programs which illustrate how a program can write data and command files so that gnuplot can create plots of the program results.
  209. gnuplot_i_examples, programs which demonstrate the use of the gnuplot_i library for interactive runtime gnuplot graphics.
  210. gprof, programs which illustrate the use of the gprof program performance monitor;
  211. graphics_examples, programs which illustrate how various kinds of data can be displayed and analyzed graphically.
  212. grf_display_opengl, a program which reads a GRF file defining a mathematical graph and displays it in the OpenGL graphics window.
  213. grf_io, a library which reads or writes a GRF file;
  214. grid, a library which generates N random points on an M-dimensional uniform grid;
  215. grid_dataset, a program which creates a file of grid values;
  216. grid_to_bmp, a program which reads a text file of data on a rectangular grid and creates a BMP file containing a color image of the data.
  217. gsl, programs which illustrate the use of the Gnu Scientific Library (GSL);
  218. haar, a library which computes the Haar transform of data.
  219. halton, a library which computes elements of the Halton M-dimensional quasirandom sequence;
  220. halton_dataset, a program which creates a Halton quasirandom sequence;
  221. hammersley, a library which computes elements of the Hammersley M-dimensional quasirandom sequence;
  222. hammersley_dataset, a program which creates a Hammersley quasirandom sequence;
  223. hb_io, a library which reads and writes matrices in the Harwell Boeing (HB) sparse matrix format;
  224. heat_mpi, a program which demonstrates the use of MPI, by solving the 1D time dependent heat equation.
  225. 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.
  226. heated_plate_openmp, a program which solves the steady (time independent) heat equation in a 2D rectangular region, using OpenMP to run in parallel.
  227. hello, a program which prints out "Hello, world!".
  228. hello_mpi, a program which prints out "Hello, world!" using MPI for parallel programming.
  229. hello_openmp, a program which prints out "Hello, world!" within the OpenMP parallel programming environment.
  230. hermite, a library which computes the Hermite interpolant, a polynomial that matches function values and derivatives.
  231. hermite_cubic, a library which can compute the value, derivatives or integral of a Hermite cubic polynomial, or manipulate an interpolating function made up of piecewise Hermite cubic polynomials.
  232. hermite_polynomial, a library which evaluates the physicist's Hermite polynomial, the probabilist's Hermite polynomial, the Hermite function, and related functions.
  233. hermite_rule, a program which computes and writes out a Gauss-Hermite quadrature rule of given order.
  234. hex_grid, a library which creates a hexagonal grid of points in the unit square or an arbitrary rectangle;
  235. hex_grid_dataset, a program which creates a hexagonal grid of points, using the hex_grid library;
  236. hexdump, a program which produces a hexadecimal dump of a file;
  237. htmlindex, a program which creates a skeleton HTML page for a marked-up C, C++ or FORTRAN file;
  238. i2_binary_to_ascii, a program which converts a file of short int (I2) data from binary to ASCII format.
  239. i4lib, a library which contains many utility routines, using single precision integer (I4) arithmetic.
  240. i8lib, a library which contains many utility routines, using double precision integer (I8) arithmetic.
  241. ice_io, a library which reads or writes ICE grid files stored in netcdf format.
  242. ice_to_mesh, a program which reads a netcdf file containing an ICE dataset and rewrites the information as a MESH file.
  243. ihs, a library which computes elements of the Improved Hypercube Sampling (IHS) M-dimensional quasirandom sequence;
  244. ihs_dataset, a program which creates an Improved Hypercube Sampling (IHS) dataset;
  245. image_components, a library which seeks the connected nonzero or nonblack components of an image or integer array.
  246. image_denoise, a library which applies simple filtering operations to a noisy image.
  247. image_edge, a library which demonstrates a simple procedure for edge detection in images.
  248. index, a library which converts a M-dimensional 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.
  249. int_exactness, a program which tests the polynomial exactness of a 1D quadrature rule for a finite interval;
  250. int_exactness_chebyshev1, a program which tests the polynomial exactness of Gauss-Chebyshev type 1 quadrature rules.
  251. int_exactness_chebyshev2, a program which tests the polynomial exactness of Gauss-Chebyshev type 2 quadrature rules.
  252. int_exactness_gegenbauer, a program which tests the polynomial exactness of Gauss-Gegenbauer quadrature rules.
  253. int_exactness_gen_hermite, a program which tests the polynomial exactness of generalized Gauss-Hermite quadrature rules.
  254. int_exactness_gen_laguerre, a program which tests the polynomial exactness of generalized Gauss-Laguerre quadrature rules.
  255. int_exactness_hermite, a program which tests the polynomial exactness of Gauss-Hermite quadrature rules.
  256. int_exactness_jacobi, a program which tests the polynomial exactness of Gauss-Jacobi quadrature rules.
  257. int_exactness_laguerre, a program which tests the polynomial exactness of Gauss-Laguerre quadrature rules.
  258. int_exactness_legendre, a program which tests the polynomial exactness of Gauss-Legendre quadrature rules.
  259. ising_2d_simulation, a program which simulates the evolution of a 2D array of positive and negative charges, each of which is likely to flip to be in agreement with neighbors.
  260. ivcon, a program which converts between various 3D graphic file formats;
  261. jacobi, a program which implements the Jacobi iteration for linear systems.
  262. jacobi_polynomial, a library which evaluates the Jacobi polynomial and associated functions.
  263. jacobi_rule, a program which computes and writes out a Gauss-Jacobi quadrature rule of given order.
  264. keast, a library which defines Keast quadrature rules in a tetrahedron;
  265. kmeans, a library which handles the K-Means problem, which organizes a set of N points in M dimensions into K clusters;
  266. kronrod, a library which can compute a Gauss and Gauss-Kronrod pair of quadrature rules of arbitrary order, by Robert Piessens, Maria Branders.
  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 M-dimensional argument that was evaluated on a product grid, so that p(x(i)) = z(i).
  271. laguerre_polynomial, a library which evaluates the Laguerre polynomial, the generalized Laguerre polynomials, and the Laguerre function.
  272. laguerre_rule, a program which computes and writes out a Gauss-Laguerre quadrature rule of given order.
  273. latin_center, a library which computes Latin Center Squares of N points in M dimensions;
  274. latin_center_dataset, a program which creates a Latin Center Hypercube dataset;
  275. latin_cover, a library which produces N Latin squares which cover an NxN square, or NxN Latin cubes which cover an NxNxN cube.
  276. latin_edge, a library which computes Latin Edge Squares of N points in M dimensions;
  277. latin_edge_dataset, a program which creates a Latin Edge Hypercube dataset;
  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. lattice_rule, a library which returns lattice rules for M-dimensional integration;
  282. lcvt, a library which creates a Latinized Centroidal Voronoi Tessellation (CVT);
  283. lcvt_dataset, a program which creates a Latinized Centroidal Voronoi Tessellation (CVT);
  284. legendre_polynomial, a library which evaluates the Legendre polynomial and associated functions.
  285. legendre_rule, a program which writes out a Gauss-Legendre quadrature rule of given order.
  286. legendre_rule_fast, a program which uses a fast (order N) algorithm to compute a Gauss-Legendre quadrature rule of given order.
  287. lf2cr, a program which converts linefeeds to carriage returns in a file;
  288. lf2crlf, a program which converts linefeeds to carriage return + linefeeds in a file;
  289. lfrm, a program which removes all linefeed characters from a file;
  290. life_opengl, a program which uses OpenGL to display the evolution of John Conway's Game of Life.
  291. lights_out_opengl, a program which sets up a Lights Out game and allows the user to solve it, using the OpenGL graphics window.
  292. linpack, a library which solves linear systems for a variety of matrix storage schemes, real or complex arithmetic, and single or double precision, by Jack Dongarra, Cleve Moler, Jim Bunch, Pete Stewart.
  293. linpack_bench, a program which is a version of the LINPACK benchmark program;
  294. linpack_c, a library which factors matrices in a variety of formats, and solving the associated linear systems, using single precision complex arithmetic; it includes a function to compute the singular value decomposition (SVD) of a rectangular matrix. This library is by Jack Dongarra, Cleve Moler, Jim Bunch, Pete Stewart.
  295. 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. This library is by Jack Dongarra, Cleve Moler, Jim Bunch, Pete Stewart.
  296. 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. This library is by Jack Dongarra, Cleve Moler, Jim Bunch, Pete Stewart.
  297. linpack_z, a library which factors matrices in a variety of formats, and solving the associated linear systems, using double precision complex arithmetic; it includes a function to compute the singular value decomposition (SVD) of a rectangular matrix. This library is by Jack Dongarra, Cleve Moler, Jim Bunch, Pete Stewart.
  298. linplus, a library which carries out operations such as matrix-vector products, matrix factorization, direct and iterative linear solves for matrices in a variety of formats, including banded, border-banded, circulant, lower triangular, pentadiagonal, sparse, symmetric, toeplitz, tridiagonal, upper triangular and vandermonde formats.
  299. lissajous_opengl, a program which computes a Lissajous curve and displays it using OpenGL.
  300. llsq, a library which solves the simple linear least squares 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.
  301. lyness_rule, a library which returns Lyness-Jespersen quadrature rules for the triangle.
  302. machar, a library which dynamically computes the values of various machine constants, by William Cody;
  303. machine, a library which returns tabulated values of the constants associated with computer arithmetic
  304. makefiles, programs which illustrate the use of makefiles for maintaining a software project;
  305. mandelbrot, a program which generates an ASCII Portable Pixel Map (PPM) image of the Mandelbrot set;
  306. mandelbrot_openmp, a program which generates an ASCII Portable Pixel Map (PPM) image of the Mandelbrot fractal set, using OpenMP for parallel execution;
  307. mandelbrot_ppm, a program which generates a binary Portable Pixel Map (PPM) image of the Mandelbrot set, by Eric Weeks.
  308. matrix_exponential, a library which demonstrates some simple approaches to the problem of computing the exponential of a matrix.
  309. md, a program which carries out a molecular dynamics simulation, and is intended as a starting point for implementing an OpenMP parallel version.
  310. md_openmp, a program which carries out a molecular dynamics simulation in parallel using OpenMP.
  311. memory_test, a program which tests the memory available on the computer by declaring and using big vectors.
  312. 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.
  313. mesh_display_opengl, a program which reads data defining a polygonal mesh and displays it using OpenGL.
  314. mesh_io, a library which can read or write MESH files, which can be used to define the geometry of a finite element mesh in 2D or 3D, using triangles, quadrilaterals, tetrahedrons or hexahedrons.
  315. mesh_to_ice, a program which reads the ICE dataset information from a MESH files and rewrites it to a netcdf file.
  316. mgmres, a library which applies the restarted GMRES algorithm to a sparse linear system, by Lili Ju;
  317. 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.
  318. minesweeper, a program which is a text-based implementation of the Minesweeper game, by Detelina Stoyanova.
  319. minpack, a library which solves linear and nonlinear least squares problems.
  320. mixed, programs which illustrate mixed language programming in which the main program is written in C++;
  321. 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.
  322. mpas_draw, a program which reads an MPAS netcdf file and allows the interactive user to select grid and solution information to be displayed using OpenGL, by Doug Jacobsen, John Burkardt, Geoff Womeldorff.
  323. mpas_grid_display_opengl, programs which can read an MPAS netcdf grid file and display the primary polygonal mesh or the dual triangular mesh, using OpenGL.
  324. mpi, programs which illustrate the use of the MPI Message Passing Interface library, for parallel programming;
  325. mpi_stubs, a library which may be used if a parallel program is to be compiled, loaded and run in a serial machine;
  326. multigrid_poisson_1d, a library which applies the multigrid method to a discretized version of the 1D Poisson equation.
  327. multitask_mpi, a program which demonstrates how to multitask, that is, to execute several unrelated and distinct tasks simultaneously, using MPI for parallel execution.
  328. multitask_openmp, a program which demonstrates how to multitask, that is, to execute several unrelated and distinct tasks simultaneously, using OpenMP for parallel execution.
  329. 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.
  330. mxm_openmp, a program which computes a dense matrix product C=A*B, using OpenMP for parallel execution.
  331. mxm_serial, a program which sets up a matrix multiplication problem A=B*C, intended as a starting point for implementing a parallel version.
  332. mxv, a program which compares the performance of (for i, for j) loops and (for j, for i) loops for computing the product of an MxN matrix A and an N vector X.
  333. mxv_openmp, a program which compares the performance of the matrix multiplication problem y=A*x, with and without parallelization by OpenMP.
  334. my_calendar, a program which checks a calendar file and prints any line containing the current date;
  335. nas, a program which runs the NASA kernel benchmark.
  336. nast2d, a program which applies the 2D finite volume method to solve transient Navier Stokes flow, by Griebel, Dornseifer and Neunhoffer;
  337. ncc_tetrahedron, a library which defines Newton-Cotes closed quadrature rules in a tetrahedron;
  338. ncc_triangle, a library which defines Newton-Cotes closed quadrature rules in a triangle;
  339. nco_tetrahedron, a library which defines Newton-Cotes open quadrature rules in a tetrahedron;
  340. nco_triangle, a library which defines Newton-Cotes open quadrature rules in a triangle;
  341. nearest_interp_1d, a library which interpolates a set of data using a piecewise constant interpolant defined by the nearest neighbor criterion.
  342. neighbors_to_metis_graph, a program which reads a file describing the neighbor structure of a triangulation or tet mesh, and writes a metis graph file suitable for input to one of the family of programs based on metis;
  343. netcdf, programs which read and write netcdf files.
  344. netcdf_mpas, a library which reads MPAS grid data stored as a netcdf file.
  345. niederreiter, a library which computes elements of the Niederreiter quasirandom M-dimensional sequence [arbitrary base];
  346. niederreiter2, a library which computes elements of the Niederreiter M-dimensional quasirandom sequence using base 2;
  347. niederreiter2_dataset, a program which creates a Niederreiter quasirandom dataset with base 2;
  348. nint_exactness, a program which tests the polynomial exactness of an M-dimensional quadrature rule defined over a finite rectangular product region.
  349. nint_exactness_mixed, a program which measures the polynomial exactness of an M-dimensional quadrature rule based on a mixture of 1D quadrature rule factors.
  350. nintlib, a library which implements approximate integration (quadrature) in M dimensions;
  351. normal, a library which implements a random number generator (RNG) for normally distributed values.
  352. normal_dataset, a program which creates a multivariate normal random dataset;
  353. obj_io, a library which reads and writes the data in an OBJ 3D graphics file;
  354. ode, a library which solves a system of ordinary differential equations, by Shampine and Gordon;
  355. off2plc, a program which reads an OFF file describing a surface in 3D, and creates an equivalent PLC file, by Alex Rand.
  356. opengl, programs which illustrate the use of the OpenGL graphics library;
  357. openmp, programs which illustrate the use of the OpenMP interface for parallel programming shared memory system;
  358. 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.
  359. optimize, a program which looks at the use of automatic optimization by the compiler to make the executable code run faster.
  360. 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.
  361. owens, a library which evaluates Owen's T function;
  362. pages, a program which counts the number of pages (sets of 60 lines) in a file;
  363. partition_problem, a library which seeks solutions of the partition problem, splitting a set of integers into two subsets with equal sum.
  364. patterson_rule, a program which looks up and writes out a Gauss-Patterson quadrature rule of given order.
  365. pbma_io, a library which reads or writes an ASCII Portable Bit Map (PBM) graphics file;
  366. pbma_to_pbmb, a program which converts an ASCII Portable Bit Map (PBM) file to a binary PBM file;
  367. pbmb_io, a library which reads or writes a binary Portable Bit Map (PBM) graphics file;
  368. pbmb_to_pbma, a program which converts a binary Portable Bit Map (PBM) file to an ASCII PBM file;
  369. pce_burgers, a program which defines and solves the time-dependent viscous Burgers equation, with uncertain viscosity, using a polynomial chaos expansion in terms of Hermite polynomials, by Gianluca Iaccarino.
  370. 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.
  371. pcl_read, a program which reads a PCL file and extracts the numeric data;
  372. pgma_io, a library which reads or writes an ASCII Portable Gray Map (PGM) 2D graphics file;
  373. pgma_to_pgmb, a program which converts an ASCII Portable Gray Map (PGM) file to a binary PGM file;
  374. pgmb_io, a library which reads or writes a binary Portable Gray Map (PGM) 2D graphics file;
  375. pgmb_to_pgma, a program which converts a binary Portable Gray Map (PGM) file to an ASCII PGM file;
  376. 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).
  377. pink_noise, a library which computes a pink noise signal obeying a 1/f power law.
  378. png_crc, a program which computes the Cyclic Redundancy Checksum (CRC) for a PNG graphics file (or any other file, for that matter);
  379. point_merge, a library which considers N points in M dimensional space, and counts or indexes the unique or tolerably unique items.
  380. poisson_openmp, a program which computes an approximate 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.
  381. poisson_serial, a program which computes an approximate solution to the Poisson equation in a rectangle, and is intended as the starting point for the creation of a parallel version.
  382. poisson_simulation, a library which simulates a Poisson process in which events randomly occur with an average waiting time of Lambda.
  383. polpak, a library which evaluates a variety of mathematical functions, including Chebyshev, Gegenbauer, Hermite, Jacobi, Laguerre, Legendre polynomials, and the Collatz sequence.
  384. polygon_moments, a library which computes arbitrary moments of a polygon.
  385. polygonal_surface_display_opengl, a program which displays a surface in 3D described as a set of polygons using OpenGL;
  386. power_method, a library which carries out the power method for finding a dominant eigenvalue and its eigenvector.
  387. power_rule, a program which constructs a power rule, that is, a product quadrature rule from identical 1D factor rules.
  388. ppma_io, a library which reads or writes an ASCII Portable Pixel Map (PPM) graphics file;
  389. ppma_to_bmp, a program which converts an ASCII Portable Pixel Map (PPM) graphics file to a Microsoft BMP file;
  390. ppma_to_ppmb, a program which converts an ASCII Portable Pixel Map (PPM) graphics file to binary PPM format;
  391. ppmb_io, a library which reads or writes a binary Portable Pixel Map (PPM) 2D pixel map graphics file;
  392. ppmb_to_bmp, a program which converts a binary Portable Pixel Map (PPM) file to a Microsoft BMP file;
  393. ppmb_to_ppma, a program which converts a binary Portable Pixel Map (PPM) file to ASCII PPM format;
  394. prime_mpi, a program which counts the number of primes between 1 and N, using MPI for parallel execution.
  395. prime_openmp, a program which counts the number of primes between 1 and N, using OpenMP for parallel execution.
  396. 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.
  397. prob, a library which evaluates the probability density function (PDF), cumulative density function (CDF), mean, variance and samples of various probability distributions;
  398. product_rule, a program which creates an M-dimensional quadrature rule from a product of distinct 1d quadrature rules;
  399. pthreads, programs which illustrate the use of the POSIX thread library to carry out parallel program execution.
  400. pwl_approx_1d, a library which approximates a set of data using a piecewise linear function.
  401. pwl_interp_1d, a library which interpolates a set of data using a piecewise linear function.
  402. pwl_interp_2d, a library which evaluates a piecewise linear interpolant to data defined on a regular 2D grid.
  403. pwl_interp_2d_scattered, a library which evaluates a piecewise linear interpolant to data which is available at an irregularly arranged set of points.
  404. pyramid_exactness, a program which investigates the polynomial exactness of a quadrature rule for the pyramid.
  405. pyramid_rule, a program which computes a quadrature rule for a pyramid.
  406. qr_solve, a library which computes the least squares solution of a linear system A*x=b.
  407. quad_mesh, a library which handles meshes of quadrilaterals over a 2D region;
  408. quad_mesh_rcm, a program which computes the Reverse Cuthill-McKee (RCM) reordering for nodes in a mesh of 4-node quadrilaterals.
  409. quad_mpi, a program which applies a quadrature rule to estimate an integral, working in parallel by using MPI;
  410. quad_openmp, a program which applies a quadrature rule to estimate an integral over a 1D interval, using OpenMP for parallel execution;
  411. quad_serial, a program which applies a quadrature rule to estimate an integral, intended as a starting point for parallelization exercises.
  412. quad2d_openmp, a program which applies a product quadrature rule to estimate an integral over a 2D rectangle, using OpenMP for parallel execution;
  413. 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.
  414. quadrature_test, a program which reads the definition of an M-dimensional quadrature rule from three files, applies the rule to a number of test integrals, and prints the results.
  415. quadrature_test_2d, a program which reads the definition of a 2D quadrature rule from three files, applies the rule to a number of test integrals, and prints the results.
  416. quadrule, a library which defines quadrature rules for approximating integrals;
  417. quality, a library which computes quality of distribution measures for pointsets in M dimensions;
  418. r4lib, a library which contains many utility routines, using single precision real (R4) arithmetic.
  419. r8lib, a library which contains many utility routines, using double precision real (R8) arithmetic.
  420. rand48, a program which demonstrates the use of the RAND48 family of random number generators (RNG's) available in the C/C++ standard library.
  421. randlc, a library which implements a random number generator (RNG) used by the NAS Benchmark programs.
  422. random_data, a library which generates sample points for various probability distributions, spatial dimensions, and geometries;
  423. 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.
  424. random_openmp, a program which illustrates how a parallel program using OpenMP can generate multiple distinct streams of random numbers.
  425. 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.
  426. rbf_interp_1d, a library which defines and evaluates radial basis function (RBF) interpolants to 1D data.
  427. rbf_interp_2d, a library which defines and evaluates radial basis function (RBF) interpolants to 2D data.
  428. rbf_interp_nd, a library which defines and evaluates radial basis function (RBF) interpolants to M-dimensional data.
  429. rcm, a library which applies the Reverse Cuthill McKee (RCM) algorithm for reordering the nodes of a graph, and reducing the bandwidth of a corresponding sparse matrix;
  430. 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."
  431. recomment, a program which converts C style comments to C++ style;
  432. reword, a program which makes a copy of a file in which every line has the same number of words;
  433. 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.
  434. 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.
  435. rkf45, a library which applies the Runge-Kutta-Fehlberg (RKF) algorithm to solve a system of ordinary differential equations (ODEs);
  436. 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.
  437. rot13, a program which makes a copy of a file which has been encoded using the ROT13 coding and a ROT5 coding for digits.
  438. rotating_cube_display_opengl, a program which displays a rotating color cube in 3D, using OpenGL;
  439. rsites, a program which generates random pointsets with integer coordinates for testing computational geometry algorithms;
  440. sandia_cubature, a library which implements quadrature rules for certain M-dimensional regions and weight functions.
  441. 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.
  442. sandia_rules2, a library which contains a very small selection of functions which serve as an interface between sandia_sgmg or sandia_sgmga and sandia_rules.
  443. sandia_sgmg, a library which creates sparse grids based a mixture of 1D factor rules, and which experiments with the idea of using linear growth rate for the 1D quadrature rules. This is a version of sparse_grid_mixed_growth that uses a different procedure for supplying the parameters needed to evaluate certain quadrature rules.
  444. sandia_sgmga, a library which creates sparse grids based on a mixture of 1D quadrature rules, allowing anisotropic weights for each dimension. This is a version of sgmga that uses a different procedure for supplying the parameters needed to evaluate certain quadrature rules.
  445. sandia_sgmgg, a library which explores a generalized construction method for sparse grids.
  446. sandia_sparse, a library which can produce an M-dimensional sparse grid, based on a variety of 1D quadrature rules; only isotropic grids are generated, that is, the same rule is used in each dimension, and the same maximum order is used in each dimension.
  447. satisfy, a program which demonstrates, for a particular circuit, an exhaustive search for solutions of the circuit satisfy problem.
  448. 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.
  449. 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.
  450. schedule_openmp, a program which demonstrates the default, static, and dynamic methods of scheduling loop iterations in OpenMP to avoid work imbalance.
  451. scvt_mpi, a program which determines a Centroidal Voronoi Tessellation (CVT) on a spherical surface, using triangle for triangulation, and the boost mpi and serialization libraries, by Doug Jacobsen;
  452. sde, a library which illustrates properties of stochastic ordinary differential equations (SODE's), and common algorithms for their analysis, by Desmond Higham;
  453. 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.
  454. 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.
  455. set_theory, a library which demonstrates various set theoretic operations using several models of a set.
  456. sftpack, a library which implements the slow Fourier transform, intended as a teaching tool and comparison with the Fast Fourier Transform (FFT).
  457. sgefa_openmp, a program which compares a standard linear algebra solver against a revised version which can be run in parallel with OpenMP.
  458. sgmg, a library which creates sparse grids based a mixture of 1D factor rules, and which experiments with the idea of using linear growth rate for the 1D quadrature rules.
  459. sgmga, a library which creates sparse grids based on a mixture of 1D quadrature rule families, allowing user specified growth rates for each family, allowing anisotropic weights for each dimension.
  460. shallow_water_1d, a program which simulates the evolution of a 1D fluid governed by the time-dependent shallow water equations.
  461. shepard_interp_1d, a library which defines and evaluates Shepard interpolants to 1D data, based on inverse distance weighting.
  462. shepard_interp_2d, a library which defines and evaluates Shepard interpolants to 2D data, based on inverse distance weighting.
  463. shepard_interp_nd, a library which defines and evaluates Shepard interpolants to M-dimensional data, based on inverse distance weighting.
  464. simple_ga, a program which is a simple example of a genetic algorithm, by Dennis Cormier and Sita Raghavan.
  465. simplex_coordinates, a library which computes the Cartesian coordinates of the vertices of a regular simplex in M dimensions.
  466. sine_transform, a library which demonstrates some simple properties of the discrete sine transform.
  467. sobol, a library which computes elements of the Sobol M-dimensional quasirandom sequence, extended to a maximal spatial dimension of 1111, by Bennett Fox.
  468. sobol_dataset, a program which creates a Sobol quasirandom dataset;
  469. sor, a library which implements a simple version of the Successive Over-Relaxation (SOR) method for the iterative solution of a linear system of equations.
  470. sparse_grid_cc, a library which creates sparse grids based on Clenshaw-Curtis rules.
  471. sparse_grid_cc_dataset, a program which creates a sparse grid dataset based on Clenshaw-Curtis rules.
  472. sparse_grid_gl, a library which creates sparse grids based on Gauss-Legendre rules.
  473. sparse_grid_gl_dataset, a program which creates a sparse grid dataset based on Gauss-Legendre rules.
  474. sparse_grid_hermite, a library which creates sparse grids based on Gauss-Hermite rules.
  475. sparse_grid_hermite_dataset, a program which creates a sparse grid dataset based on Gauss-Hermite rules.
  476. 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.
  477. sparse_grid_laguerre, a library which creates sparse grids based on Gauss-Laguerre rules.
  478. sparse_grid_laguerre_dataset, a program which creates a sparse grid dataset based on Gauss-Laguerrre rules.
  479. sparse_grid_mixed, a library which creates sparse grids based on a mixture of 1D factor rules.
  480. sparse_grid_mixed_dataset, a program which creates a sparse grid dataset based on a mixture of 1D rules.
  481. sparse_grid_open, a library which creates sparse grids based on open rules (Fejer 2, Gauss-Patterson, Newton-Cotes-Open).
  482. sparse_grid_open_dataset, a program which creates a sparse grid dataset based on open rules (Fejer 2, Gauss-Patterson, Newton-Cotes-Open).
  483. sparse_grid_pure, a library which for the analysis and creation of sparse grids in which a single family of 1D quadrature rules is used for all spatial dimensions.
  484. sparse_interp_nd, a library which can be used to define a sparse interpolant to a function f(x) of a M-dimensional argument.
  485. sphere_exactness, a program which tests the polynomial exactness of a quadrature rule for the unit sphere;
  486. 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 unit sphere.
  487. sphere_lebedev_rule, a library which computes Lebedev quadrature rules for the unit sphere;
  488. 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;
  489. sphere_quad, a library which approximates an integral over the surface of the unit sphere by applying a triangulation to the surface;
  490. sphere_stereograph, a library which computes the stereographic mapping between points on the unit sphere and points on the plane Z = 1; a generalized mapping is also available.
  491. sphere_triangle_quad, a library which estimates the integral of a function over a spherical triangle.
  492. sphere_voronoi_display_opengl, a program which displays a sphere and randomly selected generator points, and then gradually colors in points in the sphere that are closest to each generator.
  493. sphere_xyz_display_opengl, a program which reads XYZ information defining points in 3D that lie (presumably) on the unit sphere, and displays an image of the unit sphere and the points, using OpenGL;
  494. spline, a library which interpolates or approximates data by piecewise polynomial functions;
  495. spring_ode, a program which shows how line printer graphics can be used to make a crude illustration of a solution of the ordinary differential equation (ODE) that describes the motion of a weight attached to a spring.
  496. 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.
  497. star_discrepancy, a program which computes bounds on the star discrepancy of a set of N points in M dimensions, stored as a table file, by Eric Thiemard.
  498. stla_io, a library which reads and writes ASCII stereolithography (STL) 3d graphics files;
  499. stochastic_rk, a library which applies a Runge-Kutta (RK) scheme to a stochastic ordinary differential equation (SODE).
  500. string_simulation, a program which simulates the behavior of a vibrating string, creating files that can be displayed by gnuplot.
  501. 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.
  502. subpak, a library which contains many utility routines;
  503. subset, a library which ranks, unranks and generates random subset, combinations, permutations and other combinatorial objects;
  504. subset_sum, a program which seeks solutions of the subset sum problem.
  505. sum_million, a program which sums the integers from 1 to 1,000,000, as a demonstration of how to rate a computer's speed;
  506. svd_basis, a program which applies the singular value decomposition (SVD) to a set of vectors, to extract the dominant modes;
  507. svd_demo, a program which demonstrates the calculation of the singular value decomposition (SVD) and some of its properties;
  508. svd_snowfall, a program which reads a file containing historical snowfall data and analyzes the data with the Singular Value Decomposition (SVD), displaying the results using gnuplot.
  509. 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.
  510. table_border, a program which reads a table file of 2D data, and adds data representing a boundary layer of zero values;
  511. table_delaunay, a program which computes the Delaunay triangulation of a set of points stored as a table file;
  512. table_io, a library which reads and writes a simple dataset stored as a table file;
  513. table_latinize, a program which reads a dataset of N points in M dimensions from a table file, adjusts data to form a Latin Hypercube;
  514. table_quality, a program which reads a dataset of N points in the M-dimensional unit hypercube from a table file, and analyzes the quality of dispersion;
  515. table_unborder, a program which reads a table file of 2D data and deletes the data representing the boundary layer;
  516. table_voronoi, a program which reads a set of 2D points from a table file, and prints information about the Voronoi diagram;
  517. tanh_quad, a library which sets up the tanh quadrature rule;
  518. tanh_sinh_rule, a program which computes and writes out a tanh-sinh quadrature rule of given order.
  519. 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.
  520. test_approx, a library which implements test problems for approximation, provided as a set of (x,y) data.
  521. test_eigen, a library which implements test matrices for eigenvalue analysis.
  522. test_int, a library which implements test problems for approximate integration (quadrature) in one dimension.
  523. test_int_2d, a library which implements test problems for approximate integration (quadrature) in two dimensions.
  524. test_int_hermite, a library which defines test integrands for Hermite integrals with interval (-oo,+oo) and weight exp(-x^2).
  525. test_int_laguerre, a library which implements test problems for approximate integration over a semi-infinite interval, often carried out using Gauss-Laguerre quadrature.
  526. test_interp, a library which defines test problems for interpolation, provided as a set of (x,y) data.
  527. test_interp_1d, a library which defines test problems for interpolation of data y(x), which depends on a 1D argument.
  528. test_interp_2d, a library which defines test problems for interpolation of data z(x,y), depending on a 2D argument.
  529. test_interp_nd, a library which defines test problems for interpolation of data z(x), depending on an M-dimensional argument.
  530. test_ls, a library which implements linear least squares test problems of the form A*x=b.
  531. test_mat, a library which implements test matrices.
  532. test_matrix_exponential, a library which defines a set of test cases for computing the matrix exponential.
  533. test_min, a library which implements test problems for minimization of a scalar function of a scalar variable.
  534. test_nearest, a library which tests the time complexity of various procedures for solving the nearest neighbor problem.
  535. test_nint, a library which implements test problems for approximate integration (quadrature) in M dimensions.
  536. 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.
  537. test_optimization, a library which implements test problems for optimization of a scalar function of several variables, as described by Molga and Smutnicki.
  538. test_tri_int, a library which implements test functions for integration over a triangle in 2 dimensions.
  539. 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;
  540. test_zero, a library which implements test problems for the solution of a single nonlinear equation in one variable.
  541. testpack, a program which demonstrates the use of a set of test integrand functions chosen by Alan Genz.
  542. tet_mesh, a library which works with tetrahedral meshes in 3D;
  543. tet_mesh_boundary, a program which reads information defining a tetrahedral mesh of points in 3D, and determines the triangular faces that form the boundary of the mesh; it writes files containing the nodes and elements defining this tri_surface data.
  544. tet_mesh_display_opengl, a program which reads two files describing a tetrahedral mesh in 3D and displays it using OpenGL.
  545. tet_mesh_l2q, a program which reads information about a 4-node (linear) tet mesh and creates data defining a corresponding 10-node (quadratic) tet mesh;
  546. tet_mesh_q2l, a program which reads information about a 10-node (quadratic) tet mesh and creates data defining a corresponding 4-node (linear) tet mesh;
  547. tet_mesh_quad, a program which estimates the integral of a function over a region defined by a tetrahedral mesh.
  548. tet_mesh_quality, a program which reads a node coordinate file and a tetrahedron file and returns quality measures for the tetrahedronal mesh;
  549. tet_mesh_rcm, a program which computes the Reverse Cuthill McKee (RCM) reordering for the nodes of a tet_mesh that uses 4-node or 10-node tetrahedrons;
  550. tet_mesh_refine, a program which refines a tet mesh;
  551. tet_mesh_tet_neighbors, a program which reads information about a tet mesh and writes out a list of the tetrahedrons that are adjacent to a given tetrahedron;
  552. tet_mesh_volumes, a program which computes the volume of each tetrahedron in a tet mesh;
  553. tetrahedron_exactness, a program which tests the polynomial exactness of a quadrature rule for the tetrahedron;
  554. tetrahedron_grid, a library which computes a grid of points inside a 3D tetrahedron.
  555. tetrahedron_monte_carlo, a program which uses the Monte Carlo method to estimate an integral over a tetrahedron.
  556. tetrahedron_properties, a program which prints out the properties of a tetrahedron whose vertex coordinates are read from a file;
  557. tga_io, a library which reads a TARGA (TGA) graphics file;
  558. 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.
  559. tiler_3d, a library which blends a pattern repeatedly into a region in 3D;
  560. timer, programs which measure the CPU time used by a portion of a user's program;
  561. timestamp, a library which prints the current YMDHMS date as a timestamp, and other timekeeping operations;
  562. toeplitz_cholesky, a library which computes the Cholesky factorization of a nonnegative definite symmetric Toeplitz matrix.
  563. toms178, a library which seeks the minimizer of a scalar function of several variables using the Hooke-Jeeves method, by Arthur Kaupe; this is a C++ version of ACM TOMS algorithm 178.
  564. toms179, a library which calculates the incomplete Beta ratio, by Oliver Ludwig; this is a C++ version of ACM TOMS algorithm 179.
  565. toms291, a library which approximates the logarithm of the Gamma function; this is a C++ version of ACM TOMS algorithm 291.
  566. toms446, a library which manipulates Chebyshev series for interpolation and approximation; this is a C++ version of ACM TOMS algorithm 446, by Roger Broucke.
  567. 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 C++ version of ACM TOMS algorithm 462.
  568. toms655, a library which computes the weights for interpolatory quadrature rule; this library is commonly called IQPACK; this is a C++ version of ACM TOMS algorithm 655.
  569. tri_surface_display_opengl, a program which displays a 3D triangulated surface or TRI_SURFACE using OpenGL;
  570. tri_surface_io, a library which reads and writes the 3D graphics information in a tri_surface file;
  571. triangle_exactness, a program which tests the polynomial exactness of a quadrature rule for triangles;
  572. triangle_grid, a library which computes a triangular grid of points.
  573. triangle_histogram, a program which computes histograms of data on the unit triangle.
  574. triangle_io, a library which can read or write some of the files created by Jonathan Shewchuk's triangle program.
  575. triangle_monte_carlo, a program which uses the Monte Carlo method to estimate an integral over a triangle.
  576. triangle_properties, a program which computes properties of a triangle whose vertex coordinates are read from a file.
  577. 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.
  578. triangle_to_mesh, 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.
  579. triangulation, a library which computes the triangulation of a set of points in the plane, to search it, plot it, and manipulate it in other ways;
  580. triangulation_boundary_nodes, a program which reads data defining a triangulation, determines which nodes lie on the boundary, and writes their coordinates to a file;
  581. triangulation_corner, a program which modifies triangulations in which one or more triangles have more than one boundary edge.
  582. triangulation_delaunay_discrepancy, a program which measures the amount by which a triangulation fails the local Delaunay test;
  583. triangulation_display_opengl, a program which reads two files describing a triangulation and displays it using OpenGL.
  584. triangulation_histogram, a program which computes histograms of data over a triangulation.
  585. triangulation_l2q, a program which reads information about a 3-node (linear) triangulation and creates data defining a corresponding 6-node (quadratic) triangulation;
  586. triangulation_mask, a program which reads a triangulation and calls a user-supplied routine to consider each triangle for deletion;
  587. triangulation_orient, a program which ensures that the triangles in an order 3 or order 6 triangulation have positive orientation;
  588. triangulation_plot, a program which plots the nodes and elements of a triangulation as a PostScript (PS) file;
  589. triangulation_q2l, a program which reads information about a 6-node triangulation and creates data defining a corresponding 3-node triangulation;
  590. triangulation_quad, a program which reads information about a triangulation and the value of a function at the nodes and estimates the integral of the function over the triangulated region.
  591. triangulation_quality, a program which reads information about a triangulation and computes various quality measures;
  592. triangulation_rcm, a program which computes the Reverse Cuthill McKee (RCM) reordering for the nodes of a triangulation that uses 3-node or 6-node triangles;
  593. triangulation_refine, a program which refines a triangulation;
  594. triangulation_t3_to_t4, a program which reads information about a 3-node triangulation and creates data defining a corresponding 4-node triangulation (vertices + centroid);
  595. 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;
  596. uncontrol, a program which removes control characters from a file;
  597. unicycle, a library which considers permutations containing a single cycle, sometimes called cyclic permutations.
  598. uniform, a library which implements uniform random number generators (RNG's) for a variety of arithmetic types.
  599. uniform_dataset, a program which creates a file of uniform pseudorandom values;
  600. valgrind, programs which illustrate the use of the VALGRIND suite of programs which includes a memory leak detector.
  601. van_der_corput, a library which evaluates the van der Corput 1-dimensional quasirandom sequence;
  602. van_der_corput_dataset, a program which creates a file of quasirandom van der Corput values;
  603. vandermonde_approx_1d, a library which finds a polynomial approximant to data y(x) of a 1D argument by setting up and solving an overdetermined linear system for the polynomial coefficients involving the Vandermonde matrix.
  604. 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.
  605. 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.
  606. 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.
  607. vector_read, a library which reads, one line at a time, numeric data, storing it in a vector returned to the user;
  608. walsh, a library which implements versions of the Walsh and Haar transforms.
  609. wandzura, a library which returns a Wandzura rule for quadrature in a triangle;
  610. wavelet, a library which does some simple wavelet calculations;
  611. 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.
  612. width, a program which returns the length and location of the longest line in a text file;
  613. wrap, a program which wraps a file so that no line is longer than 80 characters;
  614. wrap2, a program which wraps a text file so that no line is longer than a given maximum; the wrapping may be done slightly earlier than at the maximum, in order to avoid breaking words;
  615. wtime, a library which returns a reading of the wall clock time in seconds.
  616. x_window, programs which illustrate the use of the X Window graphical terminal system;
  617. xy_display_opengl, a program which reads XY information defining points in 2D and displays an image using OpenGL;
  618. xy_io, a library which reads and writes XY, XYL and XYF files defining points, lines, and faces in 2D.
  619. xyf_display_opengl, a program which reads XYF information defining points and faces in 2D and displays an image using OpenGL;
  620. xyl_display_opengl, a program which reads XYL information defining points and lines in 2D and displays an image using OpenGL;
  621. xyz_display_opengl, a program which reads XYZ information defining points in 3D and displays an image using OpenGL;
  622. xyz_io, a library which reads and writes XYZ, XYZL and XYZF files defining points, lines and faces in 3D.
  623. xyzf_display_opengl, a program which reads XYZF information defining points and faces in 3D and displays an image using OpenGL;
  624. xyzl_display_opengl, a program which reads XYZL information defining points and lines in 3D and displays an image using OpenGL;
  625. zero_rc, a library which seeks solutions of a scalar nonlinear equation f(x)=0, or a system of nonlinear equations, using reverse communication.
  626. ziggurat, a library which samples the uniform, normal or exponential distributions, using the ziggurat method, by Marsaglia and Tsang.
  627. ziggurat_openmp, a program which demonstrates how the ziggurat library can be used as a random number generator (RNG) in an OpenMP parallel program.

You can go up one level to the main web page.


Last revised on 27 March 2013.