I have scoured the internet and can’t find a python command to find the x and y intercepts of a curve on matplotlib. Is there a command that exists? or is there a much easier way that is going over my head? Any help would be appreciated. Thanks,
Nimrodian.
Advertisement
Answer
JavaScript
x
4
1
for x, y in zip(x_values, y_values):
2
if x == 0 or y == 0:
3
print(x, y)
4