You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
182 B
9 lines
182 B
2 years ago
|
import matplotlib.pyplot as plt
|
||
|
|
||
|
def draw(x, y):
|
||
|
plt.figure()
|
||
|
|
||
|
plt.plot(x.cast('i', shape=(len(x)//4, )),
|
||
|
y.cast('i', shape=(len(y)//4, )))
|
||
|
plt.show()
|
||
|
|