Mercurial > hg > octave-nkf
annotate liboctave/intNDArray.h @ 7503:8c32f95c2639
convert mapper functions to new format
author | David Bateman <dbateman@free.fr> |
---|---|
date | Wed, 20 Feb 2008 04:22:50 -0500 |
parents | e8d953d03f6a |
children | 36594d5bbe13 |
rev | line source |
---|---|
4902 | 1 /* |
2 | |
7017 | 3 Copyright (C) 2004, 2005, 2006, 2007 John W. Eaton |
4902 | 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 | |
7016 | 9 Free Software Foundation; either version 3 of the License, or (at your |
10 option) any later version. | |
4902 | 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 | |
7016 | 18 along with Octave; see the file COPYING. If not, see |
19 <http://www.gnu.org/licenses/>. | |
4902 | 20 |
21 */ | |
22 | |
23 #if !defined (octave_intNDArray_h) | |
24 #define octave_intNDArray_h 1 | |
25 | |
26 #include "MArrayN.h" | |
27 #include "boolNDArray.h" | |
28 | |
29 template <class T> | |
30 class | |
31 intNDArray : public MArrayN<T> | |
32 { | |
33 public: | |
5992 | 34 |
35 typedef T elt_type; | |
4902 | 36 |
37 intNDArray (void) : MArrayN<T> () { } | |
38 | |
39 intNDArray (T val) : MArrayN<T> (dim_vector (1, 1), val) { } | |
40 | |
41 intNDArray (const dim_vector& dv) : MArrayN<T> (dv) { } | |
42 | |
43 intNDArray (const dim_vector& dv, T val) | |
44 : MArrayN<T> (dv, val) { } | |
45 | |
46 template <class U> | |
47 explicit intNDArray (const Array<U>& a) : MArrayN<T> (a) { } | |
48 | |
49 template <class U> | |
50 explicit intNDArray (const ArrayN<U>& a) : MArrayN<T> (a) { } | |
51 | |
52 template <class U> | |
53 intNDArray (const MArrayN<U>& a) : MArrayN<T> (a) { } | |
54 | |
55 template <class U> | |
56 intNDArray (const intNDArray<U>& a) : MArrayN<T> (a) { } | |
57 | |
58 intNDArray& operator = (const intNDArray<T>& a) | |
59 { | |
60 MArrayN<T>::operator = (a); | |
61 return *this; | |
62 } | |
63 | |
64 boolNDArray operator ! (void) const; | |
65 | |
5943 | 66 bool any_element_not_one_or_zero (void) const; |
67 | |
6979 | 68 intNDArray diag (void) const; |
69 intNDArray diag (octave_idx_type k) const; | |
70 | |
5775 | 71 // FIXME -- this is not quite the right thing. |
4902 | 72 |
73 boolNDArray all (int dim = -1) const; | |
74 boolNDArray any (int dim = -1) const; | |
75 | |
7189 | 76 intNDArray max (int dim = 0) const; |
77 intNDArray max (ArrayN<octave_idx_type>& index, int dim = 0) const; | |
78 intNDArray min (int dim = 0) const; | |
79 intNDArray min (ArrayN<octave_idx_type>& index, int dim = 0) const; | |
80 | |
7113 | 81 intNDArray sum (int dim) const; |
82 | |
7503
8c32f95c2639
convert mapper functions to new format
David Bateman <dbateman@free.fr>
parents:
7189
diff
changeset
|
83 intNDArray abs (void) const; |
8c32f95c2639
convert mapper functions to new format
David Bateman <dbateman@free.fr>
parents:
7189
diff
changeset
|
84 intNDArray signum (void) const; |
8c32f95c2639
convert mapper functions to new format
David Bateman <dbateman@free.fr>
parents:
7189
diff
changeset
|
85 |
4902 | 86 intNDArray squeeze (void) const |
87 { return intNDArray<T> (MArrayN<T>::squeeze ()); } | |
88 | |
89 intNDArray transpose (void) const | |
90 { return intNDArray<T> (MArrayN<T>::transpose ()); } | |
91 | |
5275 | 92 intNDArray concat (const intNDArray<T>& rb, const Array<octave_idx_type>& ra_idx); |
5073 | 93 |
5275 | 94 intNDArray& insert (const intNDArray<T>& a, octave_idx_type r, octave_idx_type c); |
95 intNDArray& insert (const intNDArray<T>& a, const Array<octave_idx_type>& ra_idx); | |
4915 | 96 |
5275 | 97 static void increment_index (Array<octave_idx_type>& ra_idx, |
4902 | 98 const dim_vector& dimensions, |
99 int start_dimension = 0); | |
100 | |
5275 | 101 static octave_idx_type compute_index (Array<octave_idx_type>& ra_idx, |
4902 | 102 const dim_vector& dimensions); |
103 | |
104 static T resize_fill_value (void) { return 0; } | |
105 | |
106 protected: | |
107 | |
108 intNDArray (T *d, dim_vector& dv) : MArrayN<T> (d, dv) { } | |
109 }; | |
110 | |
111 // i/o | |
112 | |
113 template <class T> | |
114 std::ostream& operator << (std::ostream& os, const intNDArray<T>& a); | |
115 | |
116 template <class T> | |
117 std::istream& operator >> (std::istream& is, intNDArray<T>& a); | |
118 | |
119 #endif | |
120 | |
121 /* | |
122 ;;; Local Variables: *** | |
123 ;;; mode: C++ *** | |
124 ;;; End: *** | |
125 */ |