/usr/include/octave-4.0.0/octave/intNDArray.cc is in liboctave-dev 4.0.0-3ubuntu9.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 | // N-D Array manipulations.
/*
Copyright (C) 2004-2015 John W. Eaton
Copyright (C) 2009 VZLU Prague, a.s.
This file is part of Octave.
Octave is free software; you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by the
Free Software Foundation; either version 3 of the License, or (at your
option) any later version.
Octave is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
for more details.
You should have received a copy of the GNU General Public License
along with Octave; see the file COPYING. If not, see
<http://www.gnu.org/licenses/>.
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include "Array-util.h"
#include "mx-base.h"
#include "lo-ieee.h"
#include "mx-inlines.cc"
// unary operations
template <class T>
boolNDArray
intNDArray<T>::operator ! (void) const
{
boolNDArray b (this->dims ());
for (octave_idx_type i = 0; i < this->length (); i++)
b.elem (i) = ! this->elem (i);
return b;
}
template <class T>
bool
intNDArray<T>::any_element_not_one_or_zero (void) const
{
octave_idx_type nel = this->nelem ();
for (octave_idx_type i = 0; i < nel; i++)
{
T val = this->elem (i);
if (val != 0.0 && val != 1.0)
return true;
}
return false;
}
template <class T>
intNDArray<T>
intNDArray<T>::diag (octave_idx_type k) const
{
return MArray<T>::diag (k);
}
template <class T>
intNDArray<T>
intNDArray<T>::diag (octave_idx_type m, octave_idx_type n) const
{
return MArray<T>::diag (m, n);
}
// FIXME: this is not quite the right thing.
template <class T>
boolNDArray
intNDArray<T>::all (int dim) const
{
return do_mx_red_op<bool, T > (*this, dim, mx_inline_all);
}
template <class T>
boolNDArray
intNDArray<T>::any (int dim) const
{
return do_mx_red_op<bool, T > (*this, dim, mx_inline_any);
}
template <class T>
void
intNDArray<T>::increment_index (Array<octave_idx_type>& ra_idx,
const dim_vector& dimensions,
int start_dimension)
{
::increment_index (ra_idx, dimensions, start_dimension);
}
template <class T>
octave_idx_type
intNDArray<T>::compute_index (Array<octave_idx_type>& ra_idx,
const dim_vector& dimensions)
{
return ::compute_index (ra_idx, dimensions);
}
template <class T>
intNDArray<T>
intNDArray<T>::concat (const intNDArray<T>& rb,
const Array<octave_idx_type>& ra_idx)
{
if (rb.numel () > 0)
insert (rb, ra_idx);
return *this;
}
template <class T>
intNDArray<T>&
intNDArray<T>::insert (const intNDArray<T>& a, octave_idx_type r,
octave_idx_type c)
{
Array<T>::insert (a, r, c);
return *this;
}
template <class T>
intNDArray<T>&
intNDArray<T>::insert (const intNDArray<T>& a,
const Array<octave_idx_type>& ra_idx)
{
Array<T>::insert (a, ra_idx);
return *this;
}
// This contains no information on the array structure !!!
template <class T>
std::ostream&
operator << (std::ostream& os, const intNDArray<T>& a)
{
octave_idx_type nel = a.nelem ();
for (octave_idx_type i = 0; i < nel; i++)
os << " " << a.elem (i) << "\n";
return os;
}
template <class T>
std::istream&
operator >> (std::istream& is, intNDArray<T>& a)
{
octave_idx_type nel = a.nelem ();
if (nel > 0)
{
T tmp;
for (octave_idx_type i = 0; i < nel; i++)
{
is >> tmp;
if (is)
a.elem (i) = tmp;
else
goto done;
}
}
done:
return is;
}
// FIXME: should abs and signum just be mapper functions?
template <class T>
intNDArray<T>
intNDArray<T>::abs (void) const
{
octave_idx_type nel = this->nelem ();
intNDArray<T> ret (this->dims ());
for (octave_idx_type i = 0; i < nel; i++)
{
T val = this->elem (i);
ret.xelem (i) = val.abs ();
}
return ret;
}
template <class T>
intNDArray<T>
intNDArray<T>::signum (void) const
{
octave_idx_type nel = this->nelem ();
intNDArray<T> ret (this->dims ());
for (octave_idx_type i = 0; i < nel; i++)
{
T val = this->elem (i);
ret.xelem (i) = val.signum ();
}
return ret;
}
template <class T>
intNDArray<T>
intNDArray<T>::prod (int dim) const
{
return do_mx_red_op<T, T> (*this, dim, mx_inline_prod);
}
template <class T>
intNDArray<T>
intNDArray<T>::sum (int dim) const
{
return do_mx_red_op<T, T> (*this, dim, mx_inline_sum);
}
template <class T>
NDArray
intNDArray<T>::dsum (int dim) const
{
return do_mx_red_op<double, T> (*this, dim, mx_inline_dsum);
}
template <class T>
intNDArray<T>
intNDArray<T>::cumsum (int dim) const
{
return do_mx_cum_op<T, T> (*this, dim, mx_inline_cumsum);
}
template <class T>
intNDArray<T>
intNDArray<T>::max (int dim) const
{
return do_mx_minmax_op<T> (*this, dim, mx_inline_max);
}
template <class T>
intNDArray<T>
intNDArray<T>::max (Array<octave_idx_type>& idx_arg, int dim) const
{
return do_mx_minmax_op<T> (*this, idx_arg, dim, mx_inline_max);
}
template <class T>
intNDArray<T>
intNDArray<T>::min (int dim) const
{
return do_mx_minmax_op<T> (*this, dim, mx_inline_min);
}
template <class T>
intNDArray<T>
intNDArray<T>::min (Array<octave_idx_type>& idx_arg, int dim) const
{
return do_mx_minmax_op<T> (*this, idx_arg, dim, mx_inline_min);
}
template <class T>
intNDArray<T>
intNDArray<T>::cummax (int dim) const
{
return do_mx_cumminmax_op<T> (*this, dim, mx_inline_cummax);
}
template <class T>
intNDArray<T>
intNDArray<T>::cummax (Array<octave_idx_type>& idx_arg, int dim) const
{
return do_mx_cumminmax_op<T> (*this, idx_arg, dim, mx_inline_cummax);
}
template <class T>
intNDArray<T>
intNDArray<T>::cummin (int dim) const
{
return do_mx_cumminmax_op<T> (*this, dim, mx_inline_cummin);
}
template <class T>
intNDArray<T>
intNDArray<T>::cummin (Array<octave_idx_type>& idx_arg, int dim) const
{
return do_mx_cumminmax_op<T> (*this, idx_arg, dim, mx_inline_cummin);
}
template <class T>
intNDArray<T>
intNDArray<T>::diff (octave_idx_type order, int dim) const
{
return do_mx_diff_op<T> (*this, dim, order, mx_inline_diff);
}
|