I am looking for a way, to change the height of a row in a tabular environment (or evenly add space at the top and bottom) but without changing the size of an included matrix.
If I use \renewcommand{arraystretch}{1.5} (which works perfectly in any other case) unfortunately also changes the size of my matrix. See MWE:
\documentclass[a4paper,12pt]{report}
\usepackage{amsmath}
\begin{document}
\begin{tabular}{|c|c|}\hline
$\begin{pmatrix}
1\\2\\3
\end{pmatrix}$&2 \\ \hline
\end{tabular}
\renewcommand{\arraystretch}{1.5}
\begin{tabular}{|c|c|}\hline
$\begin{pmatrix}
1\\2\\3
\end{pmatrix}$&2 \\ \hline
\end{tabular}
\end{document}
Which gives me the following output:
But I actually want something like this:
Is there any way to do this?



