Advertisement
matbiz01

Untitled

Mar 17th, 2021
807
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.45 KB | None | 0 0
  1. plt.xlabel('indeksy wyrazów ciągu')
  2. plt.ylabel('wartości')
  3.  
  4. #plt.plot(iterations, h1l, label="numpy.half, metoda 1")
  5. #plt.plot(iterations, h2l, label = "numpy.half, metoda 2")
  6. plt.plot(iterations, f1l, label = "numpy.float32, metoda 1")
  7. plt.plot(iterations, f2l, label = "numpy.float32, metoda 2")
  8. #plt.plot(iterations, d1l, label = "numpy.double, metoda 1")
  9. #plt.plot(iterations, d2l, label = "numpy.double, metoda 2")
  10. plt.legend(loc=1)
  11. plt.show()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement