# HG changeset patch # User jwe # Date 1038962014 0 # Node ID af97dc493a2cfa331ac532e832efb4869d428ace # Parent e96f52432059025e49bee6e54df6dc9da1b908e2 [project @ 2002-12-04 00:33:34 by jwe] diff -r e96f52432059 -r af97dc493a2c liboctave/ChangeLog --- a/liboctave/ChangeLog Tue Dec 03 19:48:57 2002 +0000 +++ b/liboctave/ChangeLog Wed Dec 04 00:33:34 2002 +0000 @@ -1,3 +1,7 @@ +2002-12-03 John W. Eaton + + * mx-ops.h: New file. + 2002-11-20 John W. Eaton * DASRT.cc, DASRT.h, Array.cc, ArrayN.h, Array.h, Array2.cc, diff -r e96f52432059 -r af97dc493a2c liboctave/mx-ops.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/liboctave/mx-ops.h Wed Dec 04 00:33:34 2002 +0000 @@ -0,0 +1,76 @@ +/* + +Copyright (C) 2002 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 (octave_mx_base_h) +#define octave_mx_base_h 1 + +// Declarations for operators that work on matrix objects. + +// ComplexDiagMatrix by X ops. + +mx-cdm-cm.h +mx-cdm-cs.h +mx-cdm-dm.h +mx-cdm-m.h +mx-cdm-s.h + +// ComplexMatrix by X ops. + +mx-cm-cdm.h +mx-cm-dm.h +mx-cm-m.h +mx-cm-s.h + +// Complex scalar by X ops. + +mx-cs-cdm.h +mx-cs-dm.h +mx-cs-m.h + +// DiagMatrix by X ops. + +mx-dm-cdm.h +mx-dm-cm.h +mx-dm-cs.h +mx-dm-m.h +mx-dm-s.h + +// Matrix by X ops. + +mx-m-cdm.h +mx-m-cm.h +mx-m-cs.h +mx-m-dm.h + +// Real scalar by X ops. + +mx-s-cdm.h +mx-s-cm.h +mx-s-dm.h + +#endif + +/* +;;; Local Variables: *** +;;; mode: C++ *** +;;; End: *** +*/