Thanks in advance for any attention you give to this question! I'm trying to read an array from an external file, print some elements of it, and then typeset the array in my document. I'm able to read the array, and to display elements of it, but I can't seem to typeset the array after. Please see the code below (which comes directly from the package.) The error I'm getting is "undefined control sequence \typesetarray". The file "SN-summary.csv" has the following data in a .csv file.
1,2,3
4,5,6
7,8,9
\documentclass[11pt,letterpaper]{article}
\usepackage{readarray}
\readarraysepchar{,}
\begin{document}
\pagestyle{empty}
\readdef{SN-summary.csv}\SNdata
\readarray\SNdata\SNarray[3,\ncols]
\SNarray[3,2] \par
\typesetarray\SNarray
\end{document}