Advertisement
Guest User

Untitled

a guest
Mar 21st, 2019
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. import numpy as np
  2. import matplotlib.pyplot as plt
  3.  
  4. plt.rc('text', usetex=True)
  5. plt.rc('font', family='serif')
  6.  
  7. xticks = np.linspace(0, -14, 8)
  8. labels = [ r'$pi!-!10^{ x }$' for x in xticks ]
  9.  
  10. print(xticks, labels)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement