ARTS  2.0.49
lin_alg.h
Go to the documentation of this file.
1 /* Copyright (C) 2002-2008 Claudia Emde <claudia.emde@dlr.de>
2 
3  This program is free software; you can redistribute it and/or modify it
4  under the terms of the GNU General Public License as published by the
5  Free Software Foundation; either version 2, or (at your option) any
6  later version.
7 
8  This program is distributed in the hope that it will be useful,
9  but WITHOUT ANY WARRANTY; without even the implied warranty of
10  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11  GNU General Public License for more details.
12 
13  You should have received a copy of the GNU General Public License
14  along with this program; if not, write to the Free Software
15  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
16  USA.
17 */
18 
29 #ifndef linalg_h
30 #define linalg_h
31 
32 
33 #include "matpackI.h"
34 
35 // LU decomposition
36 void
37 ludcmp(MatrixView LU,
38  ArrayOfIndex& indx,
39  ConstMatrixView A);
40 
41 
42 // LU backsubstitution
43 void
45  ConstMatrixView LU,
47  const ArrayOfIndex& indx);
48 
49 
50 // Exponential of a Matrix
51 void
53  ConstMatrixView A,
54  const Index& q);
55 
56 
57 // Maximum absolute row sum norm
58 Numeric
60 
61 
62 // Identity Matrix
63 void
65 
66 #endif // linalg_h
MatrixView
The MatrixView class.
Definition: matpackI.h:668
id_mat
void id_mat(MatrixView I)
Identity Matrix.
Definition: lin_alg.cc:298
lubacksub
void lubacksub(VectorView x, ConstMatrixView LU, ConstVectorView b, const ArrayOfIndex &indx)
LU backsubstitution.
Definition: lin_alg.cc:144
q
#define q
Definition: continua.cc:14103
matpackI.h
Array< Index >
matrix_exp
void matrix_exp(MatrixView F, ConstMatrixView A, const Index &q)
Exponential of a Matrix.
Definition: lin_alg.cc:193
VectorView
The VectorView class.
Definition: matpackI.h:373
Numeric
NUMERIC Numeric
The type to use for all floating point numbers.
Definition: matpack.h:33
ConstMatrixView
A constant view of a Matrix.
Definition: matpackI.h:591
ludcmp
void ludcmp(MatrixView LU, ArrayOfIndex &indx, ConstMatrixView A)
LU decomposition.
Definition: lin_alg.cc:53
norm_inf
Numeric norm_inf(ConstMatrixView A)
Maximum absolute row sum norm.
Definition: lin_alg.cc:275
Index
INDEX Index
The type to use for all integer numbers and indices.
Definition: matpack.h:39
ConstVectorView
A constant view of a Vector.
Definition: matpackI.h:300