[Tex/LaTex] Extend double vertical bar

delimitersmath-mode

I'm trying to write an expression in math mode similar to this formula:

enter image description here

My LaTeX expression looks like this:

\min \| \begin{array}{c} ... \end{array} \|

but it happens that the double lines are short:

enter image description here

How can I extend the double vertical bar?

Best Answer

Use the \left ... \right construction. See page 60 and table 3.8 of the Not so short intro. to LaTeX for further details.

\documentclass{article}
\usepackage{amsmath}
\begin{document}
\[
\min \left\| \begin{bmatrix} A\\ \vdots \\ C\end{bmatrix} \right\|
\]
\end{document}

enter image description here

Related Question