Mercurial > hg > octave-lyh
diff src/ov-str-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 | 8ed4362aa0d6 |
children | 8b262e771614 |
line wrap: on
line diff
--- a/src/ov-str-mat.h +++ b/src/ov-str-mat.h @@ -102,6 +102,12 @@ string string_value (void) const; + octave_value transpose (void) const + { return octave_value (matrix.transpose (), true); } + + octave_value hermitian (void) const + { return octave_value (matrix.transpose (), true); } + void print (ostream& os, bool pr_as_read_syntax = false); int type_id (void) const { return t_id; }