// 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, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #if defined (__GNUG__) #pragma interface #endif #if !defined (octave_MArray_h) #define octave_MArray_h 1 #include "Array.h" #if defined (LTGT) #undef LTGT #endif #if !defined (CXX_NEW_FRIEND_TEMPLATE_DECL) #define LTGT #else #define LTGT <> template class MArray; template MArray& operator += (MArray& a, const T& s); template MArray& operator -= (MArray& a, const T& s); template MArray& operator += (MArray& a, const MArray& b); template MArray& operator -= (MArray& a, const MArray& b); template MArray operator + (const MArray& a, const T& s); template MArray operator - (const MArray& a, const T& s); template MArray operator * (const MArray& a, const T& s); template MArray operator / (const MArray& a, const T& s); template MArray operator + (const T& s, const MArray& a); template MArray operator - (const T& s, const MArray& a); template MArray operator * (const T& s, const MArray& a); template MArray operator / (const T& s, const MArray& a); template MArray operator + (const MArray& a, const MArray& b); template MArray operator - (const MArray& a, const MArray& b); template MArray product (const MArray& a, const MArray& b); template MArray quotient (const MArray& a, const MArray& b); template MArray operator - (const MArray& a); #endif // One dimensional array with math ops. template class MArray : public Array { protected: MArray (T *d, int l) : Array (d, l) { } public: MArray (void) : Array () { } MArray (int n) : Array (n) { } MArray (int n, const T& val) : Array (n, val) { } // MArray (const Array& a) : Array (a) { } MArray (const MArray& a) : Array (a) { } ~MArray (void) { } MArray& operator = (const MArray& a) { Array::operator = (a); return *this; } // element by element MArray by scalar ops friend MArray& operator += LTGT (MArray& a, const T& s); friend MArray& operator -= LTGT (MArray& a, const T& s); // element by element MArray by MArray ops friend MArray& operator += LTGT (MArray& a, const MArray& b); friend MArray& operator -= LTGT (MArray& a, const MArray& b); // element by element MArray by scalar ops friend MArray operator + LTGT (const MArray& a, const T& s); friend MArray operator - LTGT (const MArray& a, const T& s); friend MArray operator * LTGT (const MArray& a, const T& s); friend MArray operator / LTGT (const MArray& a, const T& s); // element by element scalar by MArray ops friend MArray operator + LTGT (const T& s, const MArray& a); friend MArray operator - LTGT (const T& s, const MArray& a); friend MArray operator * LTGT (const T& s, const MArray& a); friend MArray operator / LTGT (const T& s, const MArray& a); // element by element MArray by MArray ops friend MArray operator + LTGT (const MArray& a, const MArray& b); friend MArray operator - LTGT (const MArray& a, const MArray& b); friend MArray product LTGT (const MArray& a, const MArray& b); friend MArray quotient LTGT (const MArray& a, const MArray& b); friend MArray operator - LTGT (const MArray& a); }; #undef LTGT extern void gripe_nonconformant (const char *op, int op1_len, int op2_len); #define INSTANTIATE_MARRAY_FRIENDS(T) \ template MArray& operator += (MArray& a, const T& s); \ template MArray& operator -= (MArray& a, const T& s); \ template MArray& operator += (MArray& a, const MArray& b); \ template MArray& operator -= (MArray& a, const MArray& b); \ template MArray operator + (const MArray& a, const T& s); \ template MArray operator - (const MArray& a, const T& s); \ template MArray operator * (const MArray& a, const T& s); \ template MArray operator / (const MArray& a, const T& s); \ template MArray operator + (const T& s, const MArray& a); \ template MArray operator - (const T& s, const MArray& a); \ template MArray operator * (const T& s, const MArray& a); \ template MArray operator / (const T& s, const MArray& a); \ template MArray operator + (const MArray& a, const MArray& b); \ template MArray operator - (const MArray& a, const MArray& b); \ template MArray product (const MArray& a, const MArray& b); \ template MArray quotient (const MArray& a, const MArray& b); \ template MArray operator - (const MArray& a); #endif /* ;;; Local Variables: *** ;;; mode: C++ *** ;;; End: *** */