This question is building from the question asked here and answered by Mr. Gonzalo Medina
I am now trying to get this effect:
\documentclass{book}
\usepackage{amsmath,amsfonts,amssymb,amsthm}
\usepackage{mathptmx}
\usepackage{calc}
\usepackage{tikz}
\usetikzlibrary{tikzmark,calc,decorations.pathreplacing}
\begin{document}
\begin{equation}
\mathbf{P}_{T}=\begin{bmatrix}
x \\
{\tikzmark{starta}y\tikzmark{enda}}
\end{bmatrix} = \begin{bmatrix}
(L_{1} + r_{3})\cos\theta_{1} + r_{2}\sin\theta_{1} \\
(L_{1} + r_{3})\sin\theta_{1} - r_{2}\cos\theta_{1}
\end{bmatrix}
\end{equation}
\begin{tikzpicture}[remember picture,overlay]
\foreach \Value/\Length/\Text in {a/15pt/{\leftarrow~ tip measurement}}
{
\draw[decorate,decoration={brace,mirror,raise=5pt}]
({pic cs:start\Value}) -- coordinate (aux-\Value) ({pic cs:end\Value}|-{pic cs:start\Value});
}
\end{tikzpicture}
\end{document}
Can you assist me in modifying the code to get the above effect as shown in the image? Thanks!

