如何从图表中获取所有X范围的坐标?

huangapple go评论67阅读模式
英文:

How receive coordinates from the graph for all X range?

问题

我在 x 轴上绘制了四个点,从 0 到 400,因为我只知道 y 轴上的 4 个坐标。但我需要获取整个 x 轴的 Y 坐标,也就是所有 400 个点的 Y 坐标。有谁知道在 Python 中如何轻松完成这个任务?
如何从图表中获取所有X范围的坐标?

英文:

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?
如何从图表中获取所有X范围的坐标?

答案1

得分: 1

线性插值工作原理如下:

如何从图表中获取所有X范围的坐标?

请注意,在两点之间的所有点上,(y2-y1)/(x2-x1) 都是恒定的。

英文:

Linear interpolation works like this:

如何从图表中获取所有X范围的坐标?

Notice that (y2-y1)/(x2-x1) is constant for all points in between.

huangapple
  • 本文由 发表于 2023年4月13日 23:07:46
  • 转载请务必保留本文链接:https://go.coder-hub.com/76007032.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定