Last active
October 15, 2016 15:24
-
-
Save malloc47/4665827 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def to_latex(a,label='A \\oplus B'): | |
sys.stdout.write('\[ ' | |
+ label | |
+ ' = \\left| \\begin{array}{' | |
+ ('c'*a.shape[1]) | |
+ '}\n' ) | |
for r in a: | |
sys.stdout.write(str(r[0])) | |
for c in r[1:]: | |
sys.stdout.write(' & '+str(c)) | |
sys.stdout.write('\\\\\n') | |
sys.stdout.write('\\end{array} \\right| \]\n') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
def to_matrix(a,frmt = '{:1.2f}', arraytype = 'bmatrix'):
🅰️ numpy array
"""Returns a LaTeX array
:returns:
:prints: LaTeX array
to_matrix(Krm, frmt = '{:1.2f}', arraytype = 'array')