GellMann

From QETLAB
Revision as of 19:49, 18 December 2013 by Nathaniel (talk | contribs) (Created page with "{{Function |name=GellMann |desc=Produces a Gell-Mann operator |req=opt_args |rel=GenGellMann<br />GenPauli<br />Pauli |upd=December 18, 2013 |v=1.00}} <tt>'''G...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
GellMann
Produces a Gell-Mann operator

Other toolboxes required opt_args
Related functions GenGellMann
GenPauli
Pauli

GellMann is a function that produces the 3-by-3 Gell-Mann matrices, as defined here:

\(g_0 = \begin{bmatrix} 1 & 0 & 0 \\ 0 & 1 & 0 \\ 0 & 0 & 1 \end{bmatrix}\) \(g_1 = \begin{bmatrix} 0 & 1 & 0 \\ 1 & 0 & 0 \\ 0 & 0 & 0 \end{bmatrix}\) \(g_2 = \begin{bmatrix} 0 & -i & 0 \\ i & 0 & 0 \\ 0 & 0 & 0 \end{bmatrix}\) \(g_3 = \begin{bmatrix} 1 & 0 & 0 \\ 0 & -1 & 0 \\ 0 & 0 & 0 \end{bmatrix}\) \(g_4 = \begin{bmatrix} 0 & 0 & 1 \\ 0 & 0 & 0 \\ 1 & 0 & 0 \end{bmatrix}\)
\(g_5 = \begin{bmatrix} 0 & 0 & -i \\ 0 & 0 & 0 \\ i & 0 & 0 \end{bmatrix}\) \(g_6 = \begin{bmatrix} 0 & 0 & 0 \\ 0 & 0 & 1 \\ 0 & 1 & 0 \end{bmatrix}\) \(g_7 = \begin{bmatrix} 0 & 0 & 0 \\ 0 & 0 & -i \\ 0 & i & 0 \end{bmatrix}\) \(g_8 = \frac{1}{\sqrt{3}} \begin{bmatrix} 1 & 0 & 0 \\ 0 & 1 & 0 \\ 0 & 0 & -2 \end{bmatrix}\)

Syntax

  • G = GellMann(IND)
  • G = GellMann(IND,SP)

Argument descriptions

  • IND: An index indicating which Gell-Mann operator you would like to be generated. Should be an integer between 0 and 8, inclusive.
  • SP (optional, default 0): A flag (either 1 or 0) indicating that the Gell-Mann operator produced should or should not be sparse.

Examples

>> GellMann(1)

ans =

     0     1     0
     1     0     0
     0     0     0

>> GellMann(3,1) % the matrix produced here will be sparse

ans =

   (1,1)        1
   (2,2)       -1

External links