diff src/ov-ch-mat.h @ 2555:97abf5d72929

[project @ 1996-11-21 18:31:31 by jwe]
author jwe
date Thu, 21 Nov 1996 18:31:31 +0000
parents 3d905d3820a4
children 8b262e771614
line wrap: on
line diff
--- a/src/ov-ch-mat.h
+++ b/src/ov-ch-mat.h
@@ -116,6 +116,12 @@
   octave_value convert_to_str (void) const
     { return octave_value (matrix); }
 
+  octave_value transpose (void) const
+    { return octave_value (matrix.transpose ()); }
+
+  octave_value hermitian (void) const
+    { return octave_value (matrix.transpose ()); }
+
   void print (ostream& os, bool pr_as_read_syntax = false);
 
   int type_id (void) const { return t_id; }