Skip to content

Latest commit

 

History

History
51 lines (38 loc) · 609 Bytes

math_matrices.md

File metadata and controls

51 lines (38 loc) · 609 Bytes

LaTeX 筆記首頁數學


矩陣

先寫下來,之後再補內文

matrix

\[
  \begin{matrix}
    1 & 0 \\
    0 & 1
  \end{matrix}
\]

pmatrixbmatrixvmatrix

array

\[
  \begin{array}{c | c}
    1 & 0 \\
    \hline
    0 & 1
  \end{array}
\]

增廣矩陣

\[
  \left[\!
  \begin{array}{c c c | c c c}
    1 & 3 & 0 & 1 & 0 & 0 \\
    3 & 1 & 9 & 0 & 1 & 0 \\
    0 & 9 & 3 & 0 & 0 & 1
  \end{array}
  \!\right]
\]

LaTeX 筆記首頁數學