This worked for me:
- print out your matrix into a CSV file with
writecsv
- run
xelatex
with the following on your generated CSV file (a.csv
in this example):
\documentclass{standalone}
\usepackage{fontspec}
\usepackage{csvsimple}
\setmainfont{Symbola}
\begin{document}
\csvautotabular{a.csv}
\end{document}