00001 /*---------------------------------------------------------------------------* 00002 * IT++ * 00003 *---------------------------------------------------------------------------* 00004 * Copyright (c) 1995-2002 by Tony Ottosson, Thomas Eriksson, Pål Frenger, * 00005 * Tobias Ringström, and Jonas Samuelsson. * 00006 * * 00007 * Permission to use, copy, modify, and distribute this software and its * 00008 * documentation under the terms of the GNU General Public License is hereby * 00009 * granted. No representations are made about the suitability of this * 00010 * software for any purpose. It is provided "as is" without expressed or * 00011 * implied warranty. See the GNU General Public License for more details. * 00012 *---------------------------------------------------------------------------*/ 00016 // SPUC - Signal processing using C++ - A DSP library 00017 00029 #ifndef __det_h 00030 #define __det_h 00031 00032 #include "matrix.h" 00033 namespace SPUC { 00034 00051 double det(const mat &X); 00052 00053 00054 #ifdef HAVE_LAPACK 00055 00068 double_complex det(const cmat &X); 00069 00070 #endif // HAVE_LAPACK 00071 } 00072 #endif // __det_h