I want to plot a line going on with a calculation. For instance: I have got a function like a,b = Update()
, and just below the calculation I would like to plot the newly calculated points(a,b)
, what kind of lib should I use in Python?
a,b = Update()# a, b are just a float value, or maybe an array so a,b can combine to form a group of points
points(a,b)
I am a newly Python starter, so...