PDA

Archiv verlassen und diese Seite im Standarddesign anzeigen : Matrix nummerien?



Chris82
03-02-2009, 22:46
Ist es möglich eine Matrix in folgender Form genau wie eine ganz normale Formel zu nummerieren?

\equation hat nämlich was dagegen.

{\tiny
\[ g(x,y) =
\begin{bmatrix}
0,0000006 & 0,0000229 & 0,0001911 & 0,0003877 & 0,0001911 & 0,0000229 & 0,0000006 \\
0,0000229 & 0,0007863 & 0,0065595 & 0,0133034 & 0,0065595 & 0,0007863 & 0,0000229 \\
0,0001911 & 0,0065595 & 0,0547204 & 0,1109794 & 0,0547204 & 0,0065595 & 0,0001911 \\
0,0003877 & 0,0133034 & 0,1109794 & 0,2250790 & 0,1109794 & 0,0133034 & 0,0003877 \\
0,0001911 & 0,0065592 & 0,0547204 & 0,1109794 & 0,0547204 & 0,0065595 & 0,0001911 \\
0,0000229 & 0,0007863 & 0,0065595 & 0,0133034 & 0,0065595 & 0,0007863 & 0,0000229 \\
0,0000006 & 0,0000229 & 0,0001911 & 0,0003877 & 0,0001911 & 0,0000229 & 0,0000006
\end{bmatrix} \]
}

danke

sofa-surfer
03-02-2009, 22:52
Dann hast Du wohl eine launische equation erwischt. Meine hat nix dagegen ;)



\documentclass{scrartcl}
\usepackage{amsmath}
\begin{document}
{\tiny
\begin{equation}
g(x,y) =
\begin{bmatrix}
0,0000006 & 0,0000229 & 0,0001911 & 0,0003877 & 0,0001911 & 0,0000229 & 0,0000006 \\
0,0000229 & 0,0007863 & 0,0065595 & 0,0133034 & 0,0065595 & 0,0007863 & 0,0000229 \\
0,0001911 & 0,0065595 & 0,0547204 & 0,1109794 & 0,0547204 & 0,0065595 & 0,0001911 \\
0,0003877 & 0,0133034 & 0,1109794 & 0,2250790 & 0,1109794 & 0,0133034 & 0,0003877 \\
0,0001911 & 0,0065592 & 0,0547204 & 0,1109794 & 0,0547204 & 0,0065595 & 0,0001911 \\
0,0000229 & 0,0007863 & 0,0065595 & 0,0133034 & 0,0065595 & 0,0007863 & 0,0000229 \\
0,0000006 & 0,0000229 & 0,0001911 & 0,0003877 & 0,0001911 & 0,0000229 & 0,0000006
\end{bmatrix}
\end{equation}}
\end{document}


Matthias

Chris82
03-02-2009, 23:04
Stimmt, das funktioniert jetzt auch.
Aber dein Code ist auch etwas anders. Ich denke ich weiß wo der Fehler liegt. Hatte es erst mit einem array probiert und dann mit bmatrix und wohl einige Codeschnippsel durcheinander geworfen.

danke