Menu

[Solved]Python Printing Alpha Beta Theta Symbols Want Able Put Alpha Beta Theta Symbol Graph Using Q37066251

#python, printing alpha beta and theta symbols

# i want to be able to put an alpha beta and theta symbol inthis graph using python
import numpy as np
import matplotlib.pyplot as plt

a = np.linspace(0,50,50)
b=[]
for i in a:
b.append(np.sin(i))

plt.plot(a,b)
####################################
####    problem is just below    #####
####################################
plt.xlabel(‘$Theta$ (lol)’)
plt.ylabel(‘$Alpha$ (lol)’)
plt.title(‘$Beta$ (lol)’)

plt.show()

Expert Answer


Answer to #python, printing alpha beta and theta symbols # i want to be able to put an alpha beta and theta symbol in this graph u… . . .

OR


Leave a Reply

Your email address will not be published. Required fields are marked *