annotate liboctave/Array-d.cc @ 4337:d56e0d75e7c9 ss-2-1-45

[project @ 2003-02-19 21:20:19 by jwe]
author jwe
date Wed, 19 Feb 2003 21:20:19 +0000
parents b8c1cb5b9fd9
children e944fbe3fff2
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
757
b75705dec035 [project @ 1994-10-02 15:19:39 by jwe]
jwe
parents:
diff changeset
1 /*
b75705dec035 [project @ 1994-10-02 15:19:39 by jwe]
jwe
parents:
diff changeset
2
2847
8b262e771614 [project @ 1997-03-27 16:18:26 by jwe]
jwe
parents: 2006
diff changeset
3 Copyright (C) 1996, 1997 John W. Eaton
757
b75705dec035 [project @ 1994-10-02 15:19:39 by jwe]
jwe
parents:
diff changeset
4
b75705dec035 [project @ 1994-10-02 15:19:39 by jwe]
jwe
parents:
diff changeset
5 This file is part of Octave.
b75705dec035 [project @ 1994-10-02 15:19:39 by jwe]
jwe
parents:
diff changeset
6
b75705dec035 [project @ 1994-10-02 15:19:39 by jwe]
jwe
parents:
diff changeset
7 Octave is free software; you can redistribute it and/or modify it
b75705dec035 [project @ 1994-10-02 15:19:39 by jwe]
jwe
parents:
diff changeset
8 under the terms of the GNU General Public License as published by the
b75705dec035 [project @ 1994-10-02 15:19:39 by jwe]
jwe
parents:
diff changeset
9 Free Software Foundation; either version 2, or (at your option) any
b75705dec035 [project @ 1994-10-02 15:19:39 by jwe]
jwe
parents:
diff changeset
10 later version.
b75705dec035 [project @ 1994-10-02 15:19:39 by jwe]
jwe
parents:
diff changeset
11
b75705dec035 [project @ 1994-10-02 15:19:39 by jwe]
jwe
parents:
diff changeset
12 Octave is distributed in the hope that it will be useful, but WITHOUT
b75705dec035 [project @ 1994-10-02 15:19:39 by jwe]
jwe
parents:
diff changeset
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
b75705dec035 [project @ 1994-10-02 15:19:39 by jwe]
jwe
parents:
diff changeset
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
b75705dec035 [project @ 1994-10-02 15:19:39 by jwe]
jwe
parents:
diff changeset
15 for more details.
b75705dec035 [project @ 1994-10-02 15:19:39 by jwe]
jwe
parents:
diff changeset
16
b75705dec035 [project @ 1994-10-02 15:19:39 by jwe]
jwe
parents:
diff changeset
17 You should have received a copy of the GNU General Public License
b75705dec035 [project @ 1994-10-02 15:19:39 by jwe]
jwe
parents:
diff changeset
18 along with Octave; see the file COPYING. If not, write to the Free
1315
611d403c7f3d [project @ 1995-06-25 19:56:32 by jwe]
jwe
parents: 1011
diff changeset
19 Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
757
b75705dec035 [project @ 1994-10-02 15:19:39 by jwe]
jwe
parents:
diff changeset
20
b75705dec035 [project @ 1994-10-02 15:19:39 by jwe]
jwe
parents:
diff changeset
21 */
b75705dec035 [project @ 1994-10-02 15:19:39 by jwe]
jwe
parents:
diff changeset
22
2006
95e952f72d66 [project @ 1996-03-04 00:33:32 by jwe]
jwe
parents: 1993
diff changeset
23 #ifdef HAVE_CONFIG_H
95e952f72d66 [project @ 1996-03-04 00:33:32 by jwe]
jwe
parents: 1993
diff changeset
24 #include <config.h>
95e952f72d66 [project @ 1996-03-04 00:33:32 by jwe]
jwe
parents: 1993
diff changeset
25 #endif
95e952f72d66 [project @ 1996-03-04 00:33:32 by jwe]
jwe
parents: 1993
diff changeset
26
757
b75705dec035 [project @ 1994-10-02 15:19:39 by jwe]
jwe
parents:
diff changeset
27 // Instantiate Arrays of double values.
b75705dec035 [project @ 1994-10-02 15:19:39 by jwe]
jwe
parents:
diff changeset
28
b75705dec035 [project @ 1994-10-02 15:19:39 by jwe]
jwe
parents:
diff changeset
29 #include "Array.h"
b75705dec035 [project @ 1994-10-02 15:19:39 by jwe]
jwe
parents:
diff changeset
30 #include "Array.cc"
b75705dec035 [project @ 1994-10-02 15:19:39 by jwe]
jwe
parents:
diff changeset
31
b75705dec035 [project @ 1994-10-02 15:19:39 by jwe]
jwe
parents:
diff changeset
32 template class Array<double>;
b75705dec035 [project @ 1994-10-02 15:19:39 by jwe]
jwe
parents:
diff changeset
33
3164
45490c020e47 [project @ 1998-04-14 20:56:48 by jwe]
jwe
parents: 2847
diff changeset
34 template int assign (Array<double>&, const Array<double>&);
45490c020e47 [project @ 1998-04-14 20:56:48 by jwe]
jwe
parents: 2847
diff changeset
35 template int assign (Array<double>&, const Array<int>&);
45490c020e47 [project @ 1998-04-14 20:56:48 by jwe]
jwe
parents: 2847
diff changeset
36 template int assign (Array<double>&, const Array<short>&);
45490c020e47 [project @ 1998-04-14 20:56:48 by jwe]
jwe
parents: 2847
diff changeset
37 template int assign (Array<double>&, const Array<char>&);
1560
27a03373de41 [project @ 1995-10-12 07:22:26 by jwe]
jwe
parents: 1315
diff changeset
38
3836
b8c1cb5b9fd9 [project @ 2001-05-31 19:30:49 by jwe]
jwe
parents: 3665
diff changeset
39 template int assign (Array<double>&, const Array<double>&, const double&);
b8c1cb5b9fd9 [project @ 2001-05-31 19:30:49 by jwe]
jwe
parents: 3665
diff changeset
40 template int assign (Array<double>&, const Array<int>&, const double&);
b8c1cb5b9fd9 [project @ 2001-05-31 19:30:49 by jwe]
jwe
parents: 3665
diff changeset
41 template int assign (Array<double>&, const Array<short>&, const double&);
b8c1cb5b9fd9 [project @ 2001-05-31 19:30:49 by jwe]
jwe
parents: 3665
diff changeset
42 template int assign (Array<double>&, const Array<char>&, const double&);
b8c1cb5b9fd9 [project @ 2001-05-31 19:30:49 by jwe]
jwe
parents: 3665
diff changeset
43
1989
a4b0826e240c [project @ 1996-03-02 00:33:22 by jwe]
jwe
parents: 1882
diff changeset
44 #include "Array2.h"
a4b0826e240c [project @ 1996-03-02 00:33:22 by jwe]
jwe
parents: 1882
diff changeset
45 #include "Array2.cc"
a4b0826e240c [project @ 1996-03-02 00:33:22 by jwe]
jwe
parents: 1882
diff changeset
46
a4b0826e240c [project @ 1996-03-02 00:33:22 by jwe]
jwe
parents: 1882
diff changeset
47 template class Array2<double>;
a4b0826e240c [project @ 1996-03-02 00:33:22 by jwe]
jwe
parents: 1882
diff changeset
48
3164
45490c020e47 [project @ 1998-04-14 20:56:48 by jwe]
jwe
parents: 2847
diff changeset
49 template int assign (Array2<double>&, const Array2<double>&);
45490c020e47 [project @ 1998-04-14 20:56:48 by jwe]
jwe
parents: 2847
diff changeset
50 template int assign (Array2<double>&, const Array2<int>&);
45490c020e47 [project @ 1998-04-14 20:56:48 by jwe]
jwe
parents: 2847
diff changeset
51 template int assign (Array2<double>&, const Array2<short>&);
45490c020e47 [project @ 1998-04-14 20:56:48 by jwe]
jwe
parents: 2847
diff changeset
52 template int assign (Array2<double>&, const Array2<char>&);
1560
27a03373de41 [project @ 1995-10-12 07:22:26 by jwe]
jwe
parents: 1315
diff changeset
53
3836
b8c1cb5b9fd9 [project @ 2001-05-31 19:30:49 by jwe]
jwe
parents: 3665
diff changeset
54 template int assign (Array2<double>&, const Array2<double>&, const double&);
b8c1cb5b9fd9 [project @ 2001-05-31 19:30:49 by jwe]
jwe
parents: 3665
diff changeset
55 template int assign (Array2<double>&, const Array2<int>&, const double&);
b8c1cb5b9fd9 [project @ 2001-05-31 19:30:49 by jwe]
jwe
parents: 3665
diff changeset
56 template int assign (Array2<double>&, const Array2<short>&, const double&);
b8c1cb5b9fd9 [project @ 2001-05-31 19:30:49 by jwe]
jwe
parents: 3665
diff changeset
57 template int assign (Array2<double>&, const Array2<char>&, const double&);
b8c1cb5b9fd9 [project @ 2001-05-31 19:30:49 by jwe]
jwe
parents: 3665
diff changeset
58
3665
0689afb1d001 [project @ 2000-05-11 19:07:56 by jwe]
jwe
parents: 3164
diff changeset
59 #include "ArrayN.h"
0689afb1d001 [project @ 2000-05-11 19:07:56 by jwe]
jwe
parents: 3164
diff changeset
60 #include "ArrayN.cc"
0689afb1d001 [project @ 2000-05-11 19:07:56 by jwe]
jwe
parents: 3164
diff changeset
61
0689afb1d001 [project @ 2000-05-11 19:07:56 by jwe]
jwe
parents: 3164
diff changeset
62 template class ArrayN<double>;
0689afb1d001 [project @ 2000-05-11 19:07:56 by jwe]
jwe
parents: 3164
diff changeset
63 template std::ostream& operator << (std::ostream&, const ArrayN<double>&);
0689afb1d001 [project @ 2000-05-11 19:07:56 by jwe]
jwe
parents: 3164
diff changeset
64
1989
a4b0826e240c [project @ 1996-03-02 00:33:22 by jwe]
jwe
parents: 1882
diff changeset
65 #include "DiagArray2.h"
a4b0826e240c [project @ 1996-03-02 00:33:22 by jwe]
jwe
parents: 1882
diff changeset
66 #include "DiagArray2.cc"
a4b0826e240c [project @ 1996-03-02 00:33:22 by jwe]
jwe
parents: 1882
diff changeset
67
a4b0826e240c [project @ 1996-03-02 00:33:22 by jwe]
jwe
parents: 1882
diff changeset
68 template class DiagArray2<double>;
a4b0826e240c [project @ 1996-03-02 00:33:22 by jwe]
jwe
parents: 1882
diff changeset
69
757
b75705dec035 [project @ 1994-10-02 15:19:39 by jwe]
jwe
parents:
diff changeset
70 /*
b75705dec035 [project @ 1994-10-02 15:19:39 by jwe]
jwe
parents:
diff changeset
71 ;;; Local Variables: ***
b75705dec035 [project @ 1994-10-02 15:19:39 by jwe]
jwe
parents:
diff changeset
72 ;;; mode: C++ ***
b75705dec035 [project @ 1994-10-02 15:19:39 by jwe]
jwe
parents:
diff changeset
73 ;;; End: ***
b75705dec035 [project @ 1994-10-02 15:19:39 by jwe]
jwe
parents:
diff changeset
74 */