I'm new at Latex and I have a problem, I have an array in Python and I want to paste that array as a matrix in Latex in a simple way. In Python I have:
np.savetxt("matrix.csv", matrizfake, delimiter=' & ', fmt='%10.5f' ,newline=' \\\\\n')
That creates a csv file with the data of the matriz array. How the code should be, if I want to read that file, and print it as a matrix in Latex.
Thanks for your help, excuse my english.
\[ \begin{matrix} \input{matrix.csv} \end{matrix} \]? – Torbjørn T. Oct 23 '17 at 14:18\\is not printed or you have some short row. – Rmano Oct 23 '17 at 17:17