757
|
1 /* |
|
2 |
2847
|
3 Copyright (C) 1996, 1997 John W. Eaton |
757
|
4 |
|
5 This file is part of Octave. |
|
6 |
|
7 Octave is free software; you can redistribute it and/or modify it |
|
8 under the terms of the GNU General Public License as published by the |
|
9 Free Software Foundation; either version 2, or (at your option) any |
|
10 later version. |
|
11 |
|
12 Octave is distributed in the hope that it will be useful, but WITHOUT |
|
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
15 for more details. |
|
16 |
|
17 You should have received a copy of the GNU General Public License |
|
18 along with Octave; see the file COPYING. If not, write to the Free |
1315
|
19 Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
757
|
20 |
|
21 */ |
|
22 |
2006
|
23 #ifdef HAVE_CONFIG_H |
|
24 #include <config.h> |
|
25 #endif |
|
26 |
757
|
27 // Instantiate Arrays of Complex values. |
|
28 |
1989
|
29 #include "oct-cmplx.h" |
|
30 |
757
|
31 #include "Array.h" |
|
32 #include "Array.cc" |
|
33 |
|
34 template class Array<Complex>; |
|
35 |
3164
|
36 template int assign (Array<Complex>&, const Array<Complex>&); |
|
37 template int assign (Array<Complex>&, const Array<double>&); |
|
38 template int assign (Array<Complex>&, const Array<int>&); |
|
39 template int assign (Array<Complex>&, const Array<short>&); |
|
40 template int assign (Array<Complex>&, const Array<char>&); |
1560
|
41 |
3836
|
42 template int assign (Array<Complex>&, const Array<Complex>&, const Complex&); |
|
43 template int assign (Array<Complex>&, const Array<double>&, const Complex&); |
|
44 template int assign (Array<Complex>&, const Array<int>&, const Complex&); |
|
45 template int assign (Array<Complex>&, const Array<short>&, const Complex&); |
|
46 template int assign (Array<Complex>&, const Array<char>&, const Complex&); |
|
47 |
1989
|
48 #include "Array2.h" |
|
49 #include "Array2.cc" |
|
50 |
|
51 template class Array2<Complex>; |
|
52 |
4513
|
53 #if 0 |
|
54 |
3164
|
55 template int assign (Array2<Complex>&, const Array2<Complex>&); |
|
56 template int assign (Array2<Complex>&, const Array2<double>&); |
|
57 template int assign (Array2<Complex>&, const Array2<int>&); |
|
58 template int assign (Array2<Complex>&, const Array2<short>&); |
|
59 template int assign (Array2<Complex>&, const Array2<char>&); |
1560
|
60 |
3836
|
61 template int assign (Array2<Complex>&, const Array2<Complex>&, const Complex&); |
|
62 template int assign (Array2<Complex>&, const Array2<double>&, const Complex&); |
|
63 template int assign (Array2<Complex>&, const Array2<int>&, const Complex&); |
|
64 template int assign (Array2<Complex>&, const Array2<short>&, const Complex&); |
|
65 template int assign (Array2<Complex>&, const Array2<char>&, const Complex&); |
|
66 |
4513
|
67 #endif |
|
68 |
|
69 #include "ArrayN.h" |
|
70 #include "ArrayN.cc" |
|
71 |
|
72 template class ArrayN<Complex>; |
|
73 |
|
74 template std::ostream& operator << (std::ostream&, const ArrayN<Complex>&); |
|
75 |
1989
|
76 #include "DiagArray2.h" |
|
77 #include "DiagArray2.cc" |
|
78 |
|
79 template class DiagArray2<Complex>; |
|
80 |
757
|
81 /* |
|
82 ;;; Local Variables: *** |
|
83 ;;; mode: C++ *** |
|
84 ;;; End: *** |
|
85 */ |