The R Project SVN R

Rev

Rev 68949 | Rev 84153 | 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
 *
71657 plummer 5
 *  This header file 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
 *
71657 plummer 10
 *  This file is part of R. R is distributed under the terms of the
11
 *  GNU General Public License, either Version 2, June 1991 or Version 3,
12
 *  June 2007. See doc/COPYRIGHTS for details of the copyright status of R.
13
 *
7727 ripley 14
 *  This program is distributed in the hope that it will be useful,
15
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
16
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12778 pd 17
 *  GNU Lesser General Public License for more details.
7727 ripley 18
 *
12778 pd 19
 *  You should have received a copy of the GNU Lesser General Public License
42308 ripley 20
 *  along with this program; if not, a copy is available at
68949 ripley 21
 *  https://www.R-project.org/Licenses/
7727 ripley 22
 */
23
 
60253 ripley 24
/* Included by R.h: API */
25
 
7727 ripley 26
#ifndef R_COMPLEX_H
27
#define R_COMPLEX_H
28
 
11211 ripley 29
#ifdef  __cplusplus
30
extern "C" {
31
#endif
32
 
7727 ripley 33
typedef struct {
34
	double r;
35
	double i;
36
} Rcomplex;
37
 
11211 ripley 38
#ifdef  __cplusplus
39
}
7727 ripley 40
#endif
11211 ripley 41
 
42
#endif /* R_COMPLEX_H */