I would like to produce a graphical representation of a matrix as stack of row vectors. Because I will be publishing the math on a website, I have access to the amsmath package but no others. I find that I can produce a representation of a matrix as a stack of column vectors using the following code
\left(
\begin{array}{ccc}
\vline & \vline & \vline \\
\vline & \vline & \vline \\
\vline & \vline & \vline \\
\end{array}
\right)
What I would like is a transpose of this.
This question is similar to How do I typeset vertical and horizontal lines inside a matrix? and Long dashes for denoting omitted columns of a matrix, but when I apply the approaches found in those posts, I do not obtain a continuous horizontal line.


\left(\begin{array}{ccc} & & \\ \hline & & \\ \hline & & \\ \hline & & \end{array} \right)– Vivi Jun 12 '12 at 19:02\rule[2.2pt]{4em}{0.4pt}in each row. Here 4em is the width, adjust to suit. – egreg Jun 12 '12 at 19:03:-)it's not that easy to see what those arguments of\ruleare used for. – Hendrik Vogt Jun 14 '12 at 12:37