changeset 4209:af97dc493a2c

[project @ 2002-12-04 00:33:34 by jwe]
author jwe
date Wed, 04 Dec 2002 00:33:34 +0000
parents e96f52432059
children b6e652bf4e5f
files liboctave/ChangeLog liboctave/mx-ops.h
diffstat 2 files changed, 80 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- 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  <jwe@bevo.che.wisc.edu>
+
+	* mx-ops.h: New file.
+
 2002-11-20  John W. Eaton  <jwe@bevo.che.wisc.edu>
 
 	* DASRT.cc, DASRT.h, Array.cc, ArrayN.h, Array.h, Array2.cc,
--- /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: ***
+*/