2012-02-06 14:59:56 +01:00
|
|
|
/***************************************************************************
|
|
|
|
|
2012-07-08 16:35:58 +02:00
|
|
|
c_complex.h
|
2012-02-06 14:59:56 +01:00
|
|
|
|
2012-07-08 16:35:58 +02:00
|
|
|
gb.gsl component
|
2012-02-06 14:59:56 +01:00
|
|
|
|
2012-07-08 16:35:58 +02:00
|
|
|
(c) 2012 Randall Morgan <rmorgan62@gmail.com>
|
2012-02-06 14:59:56 +01:00
|
|
|
|
2012-07-08 16:35:58 +02:00
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 1, or (at your option)
|
|
|
|
any later version.
|
2012-02-06 14:59:56 +01:00
|
|
|
|
2012-07-08 16:35:58 +02:00
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
2012-02-06 14:59:56 +01:00
|
|
|
|
2012-07-08 16:35:58 +02:00
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
|
|
|
|
MA 02110-1301, USA.
|
2012-02-06 14:59:56 +01:00
|
|
|
|
|
|
|
***************************************************************************/
|
|
|
|
|
|
|
|
#ifndef __C_GSL_COMPLEX_H
|
|
|
|
#define __C_GSL_COMPLEX_H
|
|
|
|
|
|
|
|
#include "gambas.h"
|
2012-02-18 23:06:10 +01:00
|
|
|
#include <gsl/gsl_math.h>
|
|
|
|
#include <gsl/gsl_cblas.h>
|
2012-02-06 14:59:56 +01:00
|
|
|
#include <gsl/gsl_complex.h>
|
2012-02-18 23:06:10 +01:00
|
|
|
#include <gsl/gsl_complex_math.h>
|
|
|
|
|
2012-02-06 14:59:56 +01:00
|
|
|
|
|
|
|
GB_INTERFACE GB EXPORT;
|
|
|
|
|
2012-02-16 20:11:15 +01:00
|
|
|
extern GB_DESC CComplexDesc[];
|
2012-02-06 14:59:56 +01:00
|
|
|
|
|
|
|
typedef
|
2012-07-08 16:35:58 +02:00
|
|
|
struct
|
|
|
|
{
|
|
|
|
GB_BASE ob;
|
|
|
|
gsl_complex number;
|
|
|
|
}
|
|
|
|
GSLCOMPLEX;
|
|
|
|
|
2012-07-08 17:39:38 +02:00
|
|
|
GSLCOMPLEX *COMPLEX_create(gsl_complex number);
|
2012-02-16 00:52:30 +01:00
|
|
|
|
2012-02-06 14:59:56 +01:00
|
|
|
#endif /* __C_GSL_COMPLEX_H */
|