ODIN
linalg.h
1 /***************************************************************************
2  linalg.h - description
3  -------------------
4  begin : Sun May 22 2005
5  copyright : (C) 2000-2021 by Thies Jochimsen
6  email : thies@jochimsen.de
7  ***************************************************************************/
8 
9 /***************************************************************************
10  * *
11  * This program is free software; you can redistribute it and/or modify *
12  * it under the terms of the GNU General Public License as published by *
13  * the Free Software Foundation; either version 2 of the License, or *
14  * (at your option) any later version. *
15  * *
16  ***************************************************************************/
17 
18 #ifndef LINALG_H
19 #define LINALG_H
20 
21 #include<odindata/complexdata.h>
22 
23 
36 Data<float,1> solve_linear(const Data<float,2>& A, const Data<float,1>& b, float sv_truncation=0.0);
37 
38 
46 ComplexData<1> solve_linear(const ComplexData<2>& A, const ComplexData<1>& b, float sv_truncation=0.0);
47 
48 
54 
58 #endif
59 
Data< float, 1 > solve_linear(const Data< float, 2 > &A, const Data< float, 1 > &b, float sv_truncation=0.0)
Data< float, 1 > eigenvalues(const Data< float, 2 > &A)