~ubuntu-branches/debian/sid/genius/sid

« back to all changes in this revision

Viewing changes to help/C/gel-matrix-transpose.xml

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Holbach
  • Date: 2006-08-21 12:57:45 UTC
  • Revision ID: james.westby@ubuntu.com-20060821125745-sl9ks8v7fq324bdf
Tags: upstream-0.7.6.1
ImportĀ upstreamĀ versionĀ 0.7.6.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
    <sect1 id="genius-gel-matrix-transpose">
 
3
      <title>Conjugate transpose and transpose operator</title>
 
4
      <para>
 
5
You can conjugate transpose a matrix by using the <command>'</command> operator. For example:
 
6
<programlisting>[1,2,3]*[4,5,6]'
 
7
</programlisting>
 
8
We transpose the second vector to make matrix multiplication possible.
 
9
      </para>
 
10
 
 
11
      <para>
 
12
If you just want to transpose a matrix without conjugating it, you would
 
13
use the <command>.'</command> operator.  For example:
 
14
<programlisting>[1,2,3]*[4,5,6i].'
 
15
</programlisting>
 
16
      </para>
 
17
    </sect1>