would like someone to look over this and assure me I'm not making a silly mistake....
Given a $3\times9$ matrix $V$:
$$ \small\begin{bmatrix} 1.0814 & -0.1251 & -0.1726 & -1.4443 & -0.2240 & -0.1665 & 0.5450 & 0.7832 & -1.2032 \\ -0.1885 & 1.1356 & -0.1545 & -0.0974 & -1.4325 & -0.1313 & 0.9151 & -0.9659 & 0.5941 \\ -0.0367 & -0.0531 & 1.2606 & -0.0458 & 1.2000 & -1.2934 & -0.0510 & -0.0277 & -0.0615 \\ \end{bmatrix} $$
I want to form a $9\times9$ matrix whereby its row $n$ is of the following form: $$ \begin{bmatrix} V^2_{1,n} & V^2_{2,n} & V^2_{3,n} & V_{1,n}V_{2,n} & V_{1,n}V_{3,n} & V_{2,n}V_{3,n} & V_{1,n} & V_{2,n} & V_{3,n} \end{bmatrix}. $$
So, for the first two rows I have: $$\small\begin{bmatrix} 1.0814^2 & -0.1885^2 & -0.0367^2 & -0.204 & -0.04 & 0.006918 & 1.0814 & -0.1885 & -0.0367 \\ -0.1251^2 & 1.1356^2 & -0.0531^2 & -0.142 & 0.006643 & -0.06 & -0.1251 & 1.1356 & -0.0531 \\ \vdots\end{bmatrix} $$
Continuing in this manner gives me the $9\times9$ matrix. Then, taking the $2$-norm condition number of the $9\times9$ matrix gives me $ 6365.85 $, however, the paper I am trying to replicate says that the condition number should be $266446.5$.
Am I constructing the $9\times9$ matrix correctly?
Thank you.