Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

matplotlib draw a line between two points

import matplotlib.pyplot as plt
# Just plot a normal line plot consisting of the two desired points
p1 = [0,3]
p2 = [1,-2]
x, y = [p1[0], p2[0]], [p1[1], p2[1]]

plt.plot(x,y)
plt.show()
 
PREVIOUS NEXT
Tagged: #matplotlib #draw #line #points
ADD COMMENT
Topic
Name
3+6 =