The R Project SVN R

Rev

Rev 58977 | Rev 71657 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
7727 ripley 1
/*
2
 *  R : A Computer Language for Statistical Data Analysis
58977 ripley 3
 *  Copyright (C) 1998-2001   The R Core Team
7727 ripley 4
 *
5
 *  This program is free software; you can redistribute it and/or modify
12778 pd 6
 *  it under the terms of the GNU Lesser General Public License as published by
7
 *  the Free Software Foundation; either version 2.1 of the License, or
7727 ripley 8
 *  (at your option) any later version.
9
 *
10
 *  This program is distributed in the hope that it will be useful,
11
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
12
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12778 pd 13
 *  GNU Lesser General Public License for more details.
7727 ripley 14
 *
12778 pd 15
 *  You should have received a copy of the GNU Lesser General Public License
42308 ripley 16
 *  along with this program; if not, a copy is available at
17
 *  http://www.r-project.org/Licenses/
7727 ripley 18
 */
19
 
60253 ripley 20
/* Included by R.h: API */
21
 
7727 ripley 22
#ifndef R_COMPLEX_H
23
#define R_COMPLEX_H
24
 
11211 ripley 25
#ifdef  __cplusplus
26
extern "C" {
27
#endif
28
 
7727 ripley 29
typedef struct {
30
	double r;
31
	double i;
32
} Rcomplex;
33
 
11211 ripley 34
#ifdef  __cplusplus
35
}
7727 ripley 36
#endif
11211 ripley 37
 
38
#endif /* R_COMPLEX_H */