I'd like to extend vertically the \langle and \rangle -paranthesis in this code:
\documentclass{article}
\usepackage[customcolors,shade]{hf-tikz}
\usepackage{nicematrix}
\usepackage{diagbox}
\usepackage{tikz-cd}
[\begin{NiceMatrix}[columns-width=8.5mm]
\diagbox{\small A_i} {\small A^j}
\Block[hvlines]{1-4}{}
\Block[hvlines]{4-1}{}
& A^1 & A^2 & A^3 \
A_1 & 1 & 2 & 3 \
A_2 & 4 & 5 & 6 \
A_3 & 7 & 8 & 9
\CodeAfter
\SubMatrix\langle{2-2}{4-4}\rangle[xshift=-0.85mm]
\begin{tikzpicture} [dashed,shorten > = 2mm, shorten < = 2mm]
\draw (3-|2) -- (3-|5) ;
\draw (4-|2) -- (4-|5) ;
\draw (2-|3) -- (5-|3) ;
\draw (2-|4) -- (5-|4) ;
%[line,shorten > = 2mm, shorten < = 2mm]
\end{tikzpicture}
\begin{tikzpicture}
\draw (2-|5) -- (5-|5) ;
\draw (5-|2) -- (5-|5) ;
\end{tikzpicture}
\end{NiceMatrix}]
\end{document}
Thank you so much

