08aaa38590
* NEW: Support for declaring Float constants in class declarations. [GB.GSL] * NEW: Make not localized object-to-string conversions return a string that is readable by Eval(). * NEW: Remove methods that are already implemented by arithmetic operators. * NEW: Use Float constants in the GSL class. git-svn-id: svn://localhost/gambas/trunk@4957 867c0c6c-44f3-4631-809d-bfa615b0a4ec
69 lines
1.6 KiB
C
69 lines
1.6 KiB
C
/***************************************************************************
|
|
|
|
c_complex.h
|
|
|
|
gb.gsl component
|
|
|
|
(c) 2012 Randall Morgan <rmorgan62@gmail.com>
|
|
|
|
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.
|
|
|
|
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.
|
|
|
|
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.
|
|
|
|
***************************************************************************/
|
|
|
|
#ifndef __C_COMPLEX_H
|
|
#define __C_COMPLEX_H
|
|
|
|
#include "main.h"
|
|
|
|
#ifndef _C_COMPLEX_C
|
|
extern GB_DESC ComplexDesc[];
|
|
extern gsl_complex COMPLEX_zero;
|
|
extern gsl_complex COMPLEX_one;
|
|
//extern GB_DESC ComplexArrayDesc[];
|
|
#endif
|
|
|
|
typedef
|
|
struct
|
|
{
|
|
GB_BASE ob;
|
|
gsl_complex number;
|
|
}
|
|
CCOMPLEX;
|
|
|
|
typedef
|
|
union
|
|
{
|
|
gsl_complex z;
|
|
double x;
|
|
}
|
|
COMPLEX_VALUE;
|
|
|
|
enum
|
|
{
|
|
CGV_ERR,
|
|
CGV_FLOAT,
|
|
CGV_COMPLEX
|
|
};
|
|
|
|
CCOMPLEX *COMPLEX_create(gsl_complex number);
|
|
CCOMPLEX *COMPLEX_push_complex(double value);
|
|
char *COMPLEX_to_string(gsl_complex number, bool local);
|
|
|
|
#define COMPLEX_get(_c) ((_c) ? (_c)->number : COMPLEX_zero)
|
|
|
|
int COMPLEX_get_value(GB_VALUE *value, COMPLEX_VALUE *v);
|
|
|
|
#endif /* __C_COMPLEX_H */
|