4902
|
1 // N-D Array manipulations. |
|
2 /* |
|
3 |
|
4 Copyright (C) 2004 John W. Eaton |
|
5 |
|
6 This file is part of Octave. |
|
7 |
|
8 Octave is free software; you can redistribute it and/or modify it |
|
9 under the terms of the GNU General Public License as published by the |
|
10 Free Software Foundation; either version 2, or (at your option) any |
|
11 later version. |
|
12 |
|
13 Octave is distributed in the hope that it will be useful, but WITHOUT |
|
14 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
15 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
16 for more details. |
|
17 |
|
18 You should have received a copy of the GNU General Public License |
|
19 along with Octave; see the file COPYING. If not, write to the Free |
5307
|
20 Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA |
|
21 02110-1301, USA. |
4902
|
22 |
|
23 */ |
|
24 |
|
25 #ifdef HAVE_CONFIG_H |
|
26 #include <config.h> |
|
27 #endif |
|
28 |
|
29 #include "uint16NDArray.h" |
|
30 |
|
31 #include "intNDArray.cc" |
|
32 |
6108
|
33 template class OCTAVE_API intNDArray<octave_uint16>; |
4902
|
34 |
6108
|
35 template OCTAVE_API |
4902
|
36 std::ostream& |
|
37 operator << (std::ostream& os, const intNDArray<octave_uint16>& a); |
|
38 |
6108
|
39 template OCTAVE_API |
4902
|
40 std::istream& |
|
41 operator >> (std::istream& is, intNDArray<octave_uint16>& a); |
|
42 |
|
43 NDS_CMP_OPS (uint16NDArray, , octave_uint16, ) |
|
44 NDS_BOOL_OPS (uint16NDArray, octave_uint16, octave_uint16 (0)) |
|
45 |
|
46 SND_CMP_OPS (octave_uint16, , uint16NDArray, ) |
|
47 SND_BOOL_OPS (octave_uint16, uint16NDArray, octave_uint16 (0)) |
|
48 |
|
49 NDND_CMP_OPS (uint16NDArray, , uint16NDArray, ) |
|
50 NDND_BOOL_OPS (uint16NDArray, uint16NDArray, octave_uint16 (0)) |
|
51 |
|
52 /* |
|
53 ;;; Local Variables: *** |
|
54 ;;; mode: C++ *** |
|
55 ;;; End: *** |
|
56 */ |