An astronomer trying to learn Python, blogging my progress to motivate myself and keep notes.
x = arange( 0.0, 5.65, 5.65/50)
Is a nice way to make 50 increasing numbers, from 0 to 5.65.
x = linspace(0,5.65,50) is nice too
x = linspace(0,5.65,50) is nice too
ReplyDelete