I want to label a matrix (lower bottom of matrix) with the help of upward arrows. Below is the code.
Code: Select all
\documentclass[12pt,a4paper,fullpage]{report}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{amsthm}
\begin{document}
$$
\bordermatrix{%
&A_1&A_2&\ldots &A_n \cr
R_1&d_{11} & d_{12} &...& d_{1n} \cr
R_2& d_{21} & d_{22} & ...& d_{2n} \cr
\vdots& \vdots & \vdots &...& \vdots \cr
R_n& d_{n1} & d_{n2} &...& d_{nn} \cr
}
$$
\end{document}