Mercurial > hg > octave-nkf
annotate liboctave/intNDArray.h @ 9621:3ee9029931b3
fix scalar complex-real comparisons
author | Jaroslav Hajek <highegg@gmail.com> |
---|---|
date | Sun, 06 Sep 2009 07:41:34 +0200 |
parents | 1be3c73ed7b5 |
children | 192d94cff6c1 |
rev | line source |
---|---|
4902 | 1 /* |
2 | |
8920 | 3 Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009 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 |
8918
f5408862892f
Consistently use element_type in the array classes.
Jason Riedy <jason@acm.org>
parents:
8780
diff
changeset
|
35 using MArrayN<T>::element_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 | |
8626
1dce30ab0e72
don't convert NaN to logical in bool expressions
John W. Eaton <jwe@octave.org>
parents:
7620
diff
changeset
|
66 bool any_element_is_nan (void) const { return false; } |
5943 | 67 bool any_element_not_one_or_zero (void) const; |
68 | |
7620
36594d5bbe13
Move diag function into the octave_value class
David Bateman <dbateman@free.fr>
parents:
7503
diff
changeset
|
69 intNDArray diag (octave_idx_type k = 0) const; |
6979 | 70 |
9607
1be3c73ed7b5
reuse temporary arrays in nested expressions
Jaroslav Hajek <highegg@gmail.com>
parents:
9513
diff
changeset
|
71 intNDArray& changesign (void) |
1be3c73ed7b5
reuse temporary arrays in nested expressions
Jaroslav Hajek <highegg@gmail.com>
parents:
9513
diff
changeset
|
72 { |
1be3c73ed7b5
reuse temporary arrays in nested expressions
Jaroslav Hajek <highegg@gmail.com>
parents:
9513
diff
changeset
|
73 MArrayN<T>::changesign (); |
1be3c73ed7b5
reuse temporary arrays in nested expressions
Jaroslav Hajek <highegg@gmail.com>
parents:
9513
diff
changeset
|
74 return *this; |
1be3c73ed7b5
reuse temporary arrays in nested expressions
Jaroslav Hajek <highegg@gmail.com>
parents:
9513
diff
changeset
|
75 } |
1be3c73ed7b5
reuse temporary arrays in nested expressions
Jaroslav Hajek <highegg@gmail.com>
parents:
9513
diff
changeset
|
76 |
5775 | 77 // FIXME -- this is not quite the right thing. |
4902 | 78 |
79 boolNDArray all (int dim = -1) const; | |
80 boolNDArray any (int dim = -1) const; | |
81 | |
7189 | 82 intNDArray max (int dim = 0) const; |
83 intNDArray max (ArrayN<octave_idx_type>& index, int dim = 0) const; | |
84 intNDArray min (int dim = 0) const; | |
85 intNDArray min (ArrayN<octave_idx_type>& index, int dim = 0) const; | |
86 | |
8777
724c0f46d9d4
implement cummin/cummax functions
Jaroslav Hajek <highegg@gmail.com>
parents:
8626
diff
changeset
|
87 intNDArray cummax (int dim = 0) const; |
724c0f46d9d4
implement cummin/cummax functions
Jaroslav Hajek <highegg@gmail.com>
parents:
8626
diff
changeset
|
88 intNDArray cummax (ArrayN<octave_idx_type>& index, int dim = 0) const; |
724c0f46d9d4
implement cummin/cummax functions
Jaroslav Hajek <highegg@gmail.com>
parents:
8626
diff
changeset
|
89 intNDArray cummin (int dim = 0) const; |
724c0f46d9d4
implement cummin/cummax functions
Jaroslav Hajek <highegg@gmail.com>
parents:
8626
diff
changeset
|
90 intNDArray cummin (ArrayN<octave_idx_type>& index, int dim = 0) const; |
724c0f46d9d4
implement cummin/cummax functions
Jaroslav Hajek <highegg@gmail.com>
parents:
8626
diff
changeset
|
91 |
7113 | 92 intNDArray sum (int dim) const; |
8780
ea76466605ba
support native cumsum, gripe on overflow in sum/cumsum
Jaroslav Hajek <highegg@gmail.com>
parents:
8777
diff
changeset
|
93 intNDArray cumsum (int dim) const; |
7113 | 94 |
9513
9f870f73ab7d
implement built-in diff
Jaroslav Hajek <highegg@gmail.com>
parents:
8920
diff
changeset
|
95 intNDArray diff (octave_idx_type order = 1, int dim = 0) const; |
9f870f73ab7d
implement built-in diff
Jaroslav Hajek <highegg@gmail.com>
parents:
8920
diff
changeset
|
96 |
7503
8c32f95c2639
convert mapper functions to new format
David Bateman <dbateman@free.fr>
parents:
7189
diff
changeset
|
97 intNDArray abs (void) const; |
8c32f95c2639
convert mapper functions to new format
David Bateman <dbateman@free.fr>
parents:
7189
diff
changeset
|
98 intNDArray signum (void) const; |
8c32f95c2639
convert mapper functions to new format
David Bateman <dbateman@free.fr>
parents:
7189
diff
changeset
|
99 |
4902 | 100 intNDArray squeeze (void) const |
101 { return intNDArray<T> (MArrayN<T>::squeeze ()); } | |
102 | |
103 intNDArray transpose (void) const | |
104 { return intNDArray<T> (MArrayN<T>::transpose ()); } | |
105 | |
5275 | 106 intNDArray concat (const intNDArray<T>& rb, const Array<octave_idx_type>& ra_idx); |
5073 | 107 |
5275 | 108 intNDArray& insert (const intNDArray<T>& a, octave_idx_type r, octave_idx_type c); |
109 intNDArray& insert (const intNDArray<T>& a, const Array<octave_idx_type>& ra_idx); | |
4915 | 110 |
5275 | 111 static void increment_index (Array<octave_idx_type>& ra_idx, |
4902 | 112 const dim_vector& dimensions, |
113 int start_dimension = 0); | |
114 | |
5275 | 115 static octave_idx_type compute_index (Array<octave_idx_type>& ra_idx, |
4902 | 116 const dim_vector& dimensions); |
117 | |
118 static T resize_fill_value (void) { return 0; } | |
119 | |
120 protected: | |
121 | |
122 intNDArray (T *d, dim_vector& dv) : MArrayN<T> (d, dv) { } | |
123 }; | |
124 | |
125 // i/o | |
126 | |
127 template <class T> | |
128 std::ostream& operator << (std::ostream& os, const intNDArray<T>& a); | |
129 | |
130 template <class T> | |
131 std::istream& operator >> (std::istream& is, intNDArray<T>& a); | |
132 | |
133 #endif | |
134 | |
135 /* | |
136 ;;; Local Variables: *** | |
137 ;;; mode: C++ *** | |
138 ;;; End: *** | |
139 */ |