1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158
|
/*! \page ccmathlib CCMATH mathematics library source code
by Daniel A. Atkinson
Copyright (C) 2000 Daniel A. Atkinson All rights reserved.
This code may be redistributed under the terms of the GNU library
public license (LGPL). ( See the lgpl.license file for details.)
Modified by Soeren Gebbert 2009/01/08:
Removed all unused functions in GRASS. Only the linear algebra
functions are used and included.
\section ccmathintro Introduction to ccmath library
A mathematics library coded in the C-language containing functions for linear algebra, numerical integration, geometry and trigonometry, curve fitting, roots and optimization, Fourier analysis, simulation generation, statistics, special functions, sorts and searches, time series models, complex arithmetic, and high precision math.
Note: reduces version included in GRASS GIS:
\section ccmathfunctions List of functions
Real Linear Systems:
- minv()
- psinv()
- ruinv()
- solv()
- solvps()
- solvru()
- solvtd()
- eigen()
- eigval()
- evmax()
- svdval()
- sv2val()
- svduv()
- sv2uv()
- svdu1v()
- sv2u1v()
- mmul()
- rmmult()
- vmul()
- vnrm()
- matprt()
- fmatprt()
- trnm()
- mattr()
- otrma()
- otrsm()
- mcopy()
- ortho()
- smgen()
Utility routines for real symmertic eigensystems:
- house()
- housev()
- qreval()
- qrevec()
Utility routines for singular value decomposition:
- qrbdi()
- qrbdv()
- qrbdu1()
- ldumat()
- ldvmat()
- atou1()
- atovm()
Complex Matrix Algebra:
- cminv()
- csolv()
- heigvec()
- heigval()
- hevmax()
- cmmul()
- cmmult()
- cvmul()
- cvnrm()
- cmprt()
- trncm()
- hconj()
- cmattr()
- utrncm()
- utrnhm()
- cmcpy()
- unitary()
- hmgen()
Utility routines for hermitian eigen problems:
- chouse()
- chousv()
- qrecvc()
*/
|