Artifact efaee10511354390ffeb84691b99f0687636fefd35645a3fe851597949ba47b6:
- Executable file
r37/lisp/csl/html/r37_0592.html
— part of check-in
[f2fda60abd]
at
2011-09-02 18:13:33
on branch master
— Some historical releases purely for archival purposes
git-svn-id: https://svn.code.sf.net/p/reduce-algebra/code/trunk/historical@1375 2bfe0521-f11c-4a00-b80e-6202646ff360 (user: arthurcnorman@users.sourceforge.net, size: 1042) [annotate] [blame] [check-ins using] [more...]
<A NAME=hermitian_tp> <TITLE>hermitian_tp</TITLE></A> <b><a href=r37_idx.html>INDEX</a></b><p><p> <B>HERMITIAN_TP</B> _ _ _ _ _ _ _ _ _ _ _ _ <B>operator</B><P> <P> <P> <P> <P> <H3> syntax: </H3> <em> hermitian_tp</em>(<matrix>) <P> <P> <P> <matrix> :- a <A HREF=r37_0345.html>matrix</A>. <P> <P> <em>hermitian_tp</em>computes the hermitian transpose of <matrix>. <P> <P> This is a <A HREF=r37_0345.html>matrix</A> in which the (i,j)'th entry is the conjugate of the (j,i)'th entry of <matrix>. <P> <P> <P> <H3> examples: </H3> <P><PRE><TT> J := mat((i+1,i+2,i+3),(4,5,2),(1,i,0)); [i + 1 i + 2 i + 3] [ ] j := [ 4 5 2 ] [ ] [ 1 i 0 ] hermitian_tp(j); [ - i + 1 4 1 ] [ ] [ - i + 2 5 - i] [ ] [ - i + 3 2 0 ] </TT></PRE><P>Related functions: <A HREF=r37_0348.html>tp</A>. <P> <P>