// Template array classes with like-type math ops /* Copyright (C) 1996, 1997 John W. Eaton 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 2, 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, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ #if defined (__GNUG__) && defined (USE_PRAGMA_INTERFACE_IMPLEMENTATION) #pragma interface #endif #if !defined (octave_MArrayN_h) #define octave_MArrayN_h 1 #include "ArrayN.h" #include "MArray2.h" #include "dim-vector.h" // N-dimensional array with math ops. // But first, some preprocessor abuse... #include "MArray-defs.h" MARRAY_OPS_FORWARD_DECLS (MArrayN) template class MArrayN : public ArrayN { protected: MArrayN (T *d, const dim_vector& dv) : ArrayN (d, dv) { } public: MArrayN (void) : ArrayN () {} MArrayN (const dim_vector& dv) : ArrayN (dv) { } MArrayN (const dim_vector& dv, const T& val) : ArrayN (dv, val) { } template explicit MArrayN (const Array2& a) : ArrayN (a) { } template MArrayN (const ArrayN& a) : ArrayN (a) { } template MArrayN (const MArrayN& a) : ArrayN (a) { } ~MArrayN (void) { } MArrayN& operator = (const MArrayN& a) { ArrayN::operator = (a); return *this; } MArrayN reshape (const dim_vector& new_dims) const { return ArrayN::reshape (new_dims); } MArrayN permute (const Array& vec, bool inv = false) const { return ArrayN::permute (vec, inv); } MArrayN ipermute (const Array& vec) const { return ArrayN::ipermute (vec); } MArrayN squeeze (void) const { return ArrayN::squeeze (); } }; #endif /* ;;; Local Variables: *** ;;; mode: C++ *** ;;; End: *** */