英文:
How receive coordinates from the graph for all X range?
问题
我在 x 轴上绘制了四个点,从 0 到 400,因为我只知道 y 轴上的 4 个坐标。但我需要获取整个 x 轴的 Y 坐标,也就是所有 400 个点的 Y 坐标。有谁知道在 Python 中如何轻松完成这个任务?
英文:
I have plotted four points on the x-axis from 0 to 400 because i only knew 4 coordinates on the y-axis.
But I need to get the Y-coordinates for the entire X-axis, that is, for all 400 points. Does anyone know how easy it is to do this in Python?
答案1
得分: 1
线性插值工作原理如下:
请注意,在两点之间的所有点上,(y2-y1)/(x2-x1) 都是恒定的。
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论