GNU Octave 7.1.0
A high-level interpreted language, primarily intended for numerical computations, mostly compatible with Matlab
fCNDArray.h
Go to the documentation of this file.
1////////////////////////////////////////////////////////////////////////
2//
3// Copyright (C) 2003-2022 The Octave Project Developers
4//
5// See the file COPYRIGHT.md in the top-level directory of this
6// distribution or <https://octave.org/copyright/>.
7//
8// This file is part of Octave.
9//
10// Octave is free software: you can redistribute it and/or modify it
11// under the terms of the GNU General Public License as published by
12// the Free Software Foundation, either version 3 of the License, or
13// (at your option) any later version.
14//
15// Octave is distributed in the hope that it will be useful, but
16// WITHOUT ANY WARRANTY; without even the implied warranty of
17// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18// GNU General Public License for more details.
19//
20// You should have received a copy of the GNU General Public License
21// along with Octave; see the file COPYING. If not, see
22// <https://www.gnu.org/licenses/>.
23//
24////////////////////////////////////////////////////////////////////////
25
26#if ! defined (octave_fCNDArray_h)
27#define octave_fCNDArray_h 1
28
29#include "octave-config.h"
30
31#include "MArray.h"
32#include "bsxfun-decl.h"
33#include "mx-defs.h"
34#include "mx-op-decl.h"
35
36class
39{
40public:
41
43
45
47 : MArray<FloatComplex> (dv, val) { }
48
50 : MArray<FloatComplex> (a) { }
51
52 template <typename U>
54
55 template <typename U>
57
59
61 {
63 return *this;
64 }
65
66 // unary operations
67
69
70 // FIXME: this is not quite the right thing.
71
72 OCTAVE_API bool any_element_is_nan (void) const;
73 OCTAVE_API bool any_element_is_inf_or_nan (void) const;
74 OCTAVE_API bool all_elements_are_real (void) const;
75 OCTAVE_API bool all_integers (float& max_val, float& min_val) const;
76 OCTAVE_API bool too_large_for_float (void) const;
77
78 OCTAVE_API boolNDArray all (int dim = -1) const;
79 OCTAVE_API boolNDArray any (int dim = -1) const;
80
81 OCTAVE_API FloatComplexNDArray cumprod (int dim = -1) const;
82 OCTAVE_API FloatComplexNDArray cumsum (int dim = -1) const;
83 OCTAVE_API FloatComplexNDArray prod (int dim = -1) const;
84 OCTAVE_API ComplexNDArray dprod (int dim = -1) const;
85 OCTAVE_API FloatComplexNDArray sum (int dim = -1) const;
86 OCTAVE_API ComplexNDArray dsum (int dim = -1) const;
87 OCTAVE_API FloatComplexNDArray sumsq (int dim = -1) const;
92
93 OCTAVE_API FloatComplexNDArray max (int dim = -1) const;
95 max (Array<octave_idx_type>& index, int dim = -1) const;
96 OCTAVE_API FloatComplexNDArray min (int dim = -1) const;
98 min (Array<octave_idx_type>& index, int dim = -1) const;
99
100 OCTAVE_API FloatComplexNDArray cummax (int dim = -1) const;
102 cummax (Array<octave_idx_type>& index, int dim = -1) const;
103 OCTAVE_API FloatComplexNDArray cummin (int dim = -1) const;
105 cummin (Array<octave_idx_type>& index, int dim = -1) const;
106
108 diff (octave_idx_type order = 1, int dim = -1) const;
109
111 insert (const NDArray& a, octave_idx_type r, octave_idx_type c);
115 insert (const FloatComplexNDArray& a, const Array<octave_idx_type>& ra_idx);
116
117 OCTAVE_API FloatNDArray abs (void) const;
118 OCTAVE_API boolNDArray isnan (void) const;
119 OCTAVE_API boolNDArray isinf (void) const;
120 OCTAVE_API boolNDArray isfinite (void) const;
121
123
124 OCTAVE_API FloatComplexNDArray fourier (int dim = 1) const;
125 OCTAVE_API FloatComplexNDArray ifourier (int dim = 1) const;
126
127 OCTAVE_API FloatComplexNDArray fourier2d (void) const;
128 OCTAVE_API FloatComplexNDArray ifourier2d (void) const;
129
130 OCTAVE_API FloatComplexNDArray fourierNd (void) const;
131 OCTAVE_API FloatComplexNDArray ifourierNd (void) const;
132
134 { return MArray<FloatComplex>::squeeze (); }
135
136 static OCTAVE_API void
138 const dim_vector& dimensions, int start_dimension = 0);
139
142
143 // i/o
144
145 friend OCTAVE_API std::ostream& operator << (std::ostream& os,
146 const FloatComplexNDArray& a);
147 friend OCTAVE_API std::istream& operator >> (std::istream& is,
149
150 // bool all_elements_are_real (void) const;
151 // bool all_integers (float& max_val, float& min_val) const;
152
154
156 diag (octave_idx_type m, octave_idx_type n) const;
157
159 {
161 return *this;
162 }
163
164};
165
167
169
172
175
178
180
182 float s);
184 float s);
185
188
190
191#endif
template OCTAVE_API std::ostream & operator<<(std::ostream &, const Array< bool > &)
octave_idx_type compute_index(octave_idx_type n, const dim_vector &dims)
Definition: Array-util.cc:177
void increment_index(Array< octave_idx_type > &ra_idx, const dim_vector &dimensions, int start_dimension)
Definition: Array-util.cc:60
ComplexNDArray concat(NDArray &ra, ComplexNDArray &rb, const Array< octave_idx_type > &ra_idx)
Definition: CNDArray.cc:418
#define MARRAY_FORWARD_DEFS(B, R, T)
Definition: MArray.h:130
std::istream & operator>>(std::istream &is, SparseBoolMatrix &a)
Definition: boolSparse.cc:279
#define BSXFUN_STDREL_DECLS(ARRAY, API)
Definition: bsxfun-decl.h:53
#define BSXFUN_STDOP_DECLS(ARRAY, API)
Definition: bsxfun-decl.h:38
#define BSXFUN_OP_DECL(OP, ARRAY, API)
Definition: bsxfun-decl.h:29
N Dimensional Array with copy-on-write semantics.
Definition: Array.h:129
FloatComplexNDArray(const dim_vector &dv, const FloatComplex &val)
Definition: fCNDArray.h:46
FloatComplexNDArray squeeze(void) const
Definition: fCNDArray.h:133
FloatComplexNDArray & changesign(void)
Definition: fCNDArray.h:158
FloatComplexNDArray(const Array< U > &a)
Definition: fCNDArray.h:56
FloatComplexNDArray(const MArray< U > &a)
Definition: fCNDArray.h:53
FloatComplexNDArray(const dim_vector &dv)
Definition: fCNDArray.h:44
FloatComplexNDArray(void)
Definition: fCNDArray.h:42
FloatComplexNDArray(const FloatComplexNDArray &a)
Definition: fCNDArray.h:49
MArray< T > & operator=(const MArray< T > &a)
Definition: MArray.h:81
OCTARRAY_API void changesign(void)
Definition: MArray.cc:216
MArray squeeze(void) const
Definition: MArray.h:97
Vector representing the dimensions (size) of an Array.
Definition: dim-vector.h:94
OCTAVE_API FloatComplexNDArray conj(const FloatComplexNDArray &a)
Definition: fCNDArray.cc:514
OCTAVE_API FloatComplexNDArray min(FloatComplex d, const FloatComplexNDArray &m)
Definition: fCNDArray.cc:647
OCTAVE_API FloatComplexNDArray max(FloatComplex d, const FloatComplexNDArray &m)
Definition: fCNDArray.cc:647
#define OCTAVE_API
Definition: main.in.cc:55
class OCTAVE_API FloatComplexNDArray
Definition: mx-fwd.h:41
#define NDND_BOOL_OP_DECLS(ND1, ND2, API)
Definition: mx-op-decl.h:226
#define NDND_CMP_OP_DECLS(ND1, ND2, API)
Definition: mx-op-decl.h:218
#define NDS_BOOL_OP_DECLS(ND, S, API)
Definition: mx-op-decl.h:172
#define SND_CMP_OP_DECLS(S, ND, API)
Definition: mx-op-decl.h:191
#define MINMAX_DECLS(T, S, API)
Definition: mx-op-decl.h:288
#define NDS_CMP_OP_DECLS(ND, S, API)
Definition: mx-op-decl.h:164
#define SND_BOOL_OP_DECLS(S, ND, API)
Definition: mx-op-decl.h:199
bool isfinite(double x)
Definition: lo-mappers.h:192
bool isnan(bool)
Definition: lo-mappers.h:178
bool isinf(double x)
Definition: lo-mappers.h:203
bool too_large_for_float(double x)
Definition: lo-utils.cc:55
std::complex< float > FloatComplex
Definition: oct-cmplx.h:34
octave_int< T > pow(const octave_int< T > &a, const octave_int< T > &b)
const octave_base_value const Array< octave_idx_type > & ra_idx
octave_value operator!(const octave_value &a)
Definition: ov.h:1835
static T abs(T x)
Definition: pr-output.cc:1678