[Tex/LaTex] Split a \bmatrix in two line

matrices

Code

\documentclass[a4paper,twoside,12pt]{book}
\usepackage[utf8]{inputenc}
\usepackage{amsmath}

$\bm{\mu^*}$ = 
\begin{bmatrix}
\begin{split}
17.0716 & 21.3746 & 31.2462 & 34.2847 & 37.0049 & 43.2856 & 50.8193 & 59.7093\\[0.3em]
\end{split}
\end{bmatrix}

Output

Output

Question

How can i split the orizontal vector in two lines?

Best Answer

What about using a smallmatrix?

enter image description here

Code:

\documentclass[a4paper,twoside,12pt]{book}
\usepackage[utf8]{inputenc}
\usepackage{amsmath,bm}
\begin{document}
\[
\bm{\mu^*} =
[\begin{smallmatrix}
 17.0716 & 21.3746 & 31.2462 & 34.2847 & 37.0049 & 43.2856 & 50.8193 & 59.7093
\end{smallmatrix}]
\]
\end{document}