Added script front-end for primer-design code
[htsworkflow.git] / htswanalysis / MACS / lib / gsl / gsl-1.11 / vector / reim_source.c
1 /* vector/reim_source.c
2  * 
3  * Copyright (C) 2001, 2007 Brian Gough
4  * 
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 3 of the License, or (at
8  * your option) any later version.
9  * 
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License for more details.
14  * 
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18  */
19
20 QUALIFIED_REAL_VIEW(_gsl_vector, view)
21 FUNCTION(gsl_vector, real) (QUALIFIED_TYPE(gsl_vector) * v)
22 {
23   REAL_TYPE(gsl_vector) s = NULL_VECTOR;
24
25   s.data = v->data;
26   s.size = v->size;
27   s.stride = MULTIPLICITY * v->stride;
28   s.block = 0;  /* FIXME: should be v->block, but cannot point to
29                    block of different type */
30   s.owner = 0;
31
32   {
33     QUALIFIED_REAL_VIEW(_gsl_vector,view) view = NULL_VECTOR_VIEW;
34     view.vector = s;
35     return view;
36   }
37 }
38
39 QUALIFIED_REAL_VIEW(_gsl_vector, view)
40 FUNCTION(gsl_vector, imag) (QUALIFIED_TYPE(gsl_vector) * v)
41 {
42   REAL_TYPE(gsl_vector) s = NULL_VECTOR;
43
44   s.data = v->data + 1;
45   s.size = v->size;
46   s.stride = MULTIPLICITY * v->stride;
47   s.block = 0;  /* FIXME: cannot point to block of different type */
48   s.owner = 0;
49
50   {
51     QUALIFIED_REAL_VIEW(_gsl_vector,view) view = NULL_VECTOR_VIEW;
52     view.vector = s;
53     return view;
54   }
55 }
56