如何写矩阵范数?

如何写矩阵范数?

我想写一个矩阵,但不是使用括号,而是使用范数。我该怎么做?因此,我想要 || ||,而不是使用普通矩阵中的 []。

答案1

您可以在 LaTeX 中选择多种不同的矩阵环境。以下是您的选项:

\documentclass{article}
\usepackage{amsmath}
\usepackage{multicol}
\begin{document}
\centering
\begin{multicols}{3}
  matrix  $\begin{matrix}  a & b \\ c & d \\ \end{matrix}$

  pmatrix $\begin{pmatrix} a & b \\ c & d \\ \end{pmatrix}$

  bmatrix $\begin{bmatrix} a & b \\ c & d \\ \end{bmatrix}$

  Bmatrix $\begin{Bmatrix} a & b \\ c & d \\ \end{Bmatrix}$

  vmatrix $\begin{vmatrix} a & b \\ c & d \\ \end{vmatrix}$

  Vmatrix $\begin{Vmatrix} a & b \\ c & d \\ \end{Vmatrix}$
\end{multicols}
\end{document}

在此处输入图片描述

相关内容