]> www.ginac.de Git - ginac.git/blob - doc/examples/ginac-examples.texi
[BUGFIX] Fix crash in parser.
[ginac.git] / doc / examples / ginac-examples.texi
1 \input texinfo  @c -*-texinfo-*-
2 @c %**start of header
3 @setfilename ginac-examples.info
4 @settitle GiNaC Examples
5 @afourpaper
6 @c For `info' only.
7 @paragraphindent 0
8 @c For TeX only.
9 @iftex
10 @c I hate putting "@noindent" in front of every paragraph.
11 @parindent=0pt
12 @end iftex
13 @c %**end of header
14
15 @dircategory Mathematics
16 @direntry
17 * ginac-examples: (ginac-examples).                   C++ library for symbolic computation.
18 @end direntry
19
20 @ifnottex
21 @node Top
22 @end ifnottex
23
24 @finalout
25 @c finalout prevents ugly black rectangles on overfull hbox lines
26
27 @majorheading GiNaC Examples
28
29 This is a collection of code examples using GiNaC.
30
31 @contents
32
33 @chapter Input / Output
34
35 @section Archiving expressions @uref{archive1.cpp, (source)}
36
37 Two expression are stored in an archive on the disk and are restored again.
38
39 @section Input and output of expressions
40
41 @subsection Expression input @uref{derivative.cpp, (source)}
42
43 Interactively input expression and compute its derivative with respect
44 to the ``x'' variable.
45
46 @chapter Monte Carlo Integration
47
48 @section Example showing compile_ex @uref{compile1.cpp, (source)}
49
50 Simple example showing compile_ex with one free variable. Timing between CLN and C double numerics is done.
51
52 @section Using VEGAS from CUBA @uref{compile2.cpp, (source)}
53
54 An expression in two variables is integrated by using VEGAS from the
55 @uref{http://www.feynarts.de/cuba/, CUBA library}.
56
57 @section Example showing link_ex @uref{compile3.cpp, (source)}
58
59 Demonstrates the use of link_ex. Program has to be called more than once to see the effect.
60
61 @chapter Lanczos Approximation
62
63 The program lanczos.cpp calculates coefficients for use in the Lanczos
64 approximation of the gamma function. The Lanczos approximation is used by
65 the function inside GiNaC that approximates the gamma function numerically.
66 See the comments in the source file for more information.
67
68 @bye