00001 /*************************************************************************** 00002 linalg.h - description 00003 ------------------- 00004 begin : Sun May 22 2005 00005 copyright : (C) 2001 by Thies Jochimsen 00006 email : jochimse@cns.mpg.de 00007 ***************************************************************************/ 00008 00009 /*************************************************************************** 00010 * * 00011 * This program is free software; you can redistribute it and/or modify * 00012 * it under the terms of the GNU General Public License as published by * 00013 * the Free Software Foundation; either version 2 of the License, or * 00014 * (at your option) any later version. * 00015 * * 00016 ***************************************************************************/ 00017 00018 #ifndef LINALG_H 00019 #define LINALG_H 00020 00021 #include<odindata/complexdata.h> 00022 00023 00036 Data<float,1> solve_linear(const Data<float,2>& A, const Data<float,1>& b, float sv_truncation=0.0); 00037 00038 00046 ComplexData<1> solve_linear(const ComplexData<2>& A, const ComplexData<1>& b, float sv_truncation=0.0); 00047 00048 00053 Data<float,1> eigenvalues(const Data<float,2>& A); 00054 00058 #endif 00059
1.5.6